mirror of https://github.com/ConsenSys/mythril
commit
fb71ae3132
@ -1,98 +0,0 @@ |
||||
import json |
||||
import socket |
||||
import logging |
||||
from mythril.rpc.base_client import BaseClient |
||||
from .utils import (get_default_ipc_path, to_text, to_bytes) |
||||
import threading |
||||
|
||||
try: |
||||
from json import JSONDecodeError |
||||
except ImportError: |
||||
JSONDecodeError = ValueError |
||||
|
||||
IPC_PATH = None |
||||
|
||||
''' |
||||
This code is mostly adapted from: |
||||
- https://github.com/ConsenSys/ethjsonrpc |
||||
- https://github.com/pipermerriam/ethereum-ipc-client |
||||
- https://github.com/ethereum/web3.py |
||||
''' |
||||
|
||||
# use thread local to store socket which will be reused just in owner thread |
||||
THREAD_LOCAL = threading.local() |
||||
|
||||
class EthIpc(BaseClient): |
||||
|
||||
def __init__(self, ipc_path=IPC_PATH, testnet=False): |
||||
if ipc_path is None: |
||||
ipc_path = get_default_ipc_path(testnet) |
||||
self.ipc_path = ipc_path |
||||
|
||||
def connect_if_not_yet(self): |
||||
if not hasattr(THREAD_LOCAL, "socket"): |
||||
THREAD_LOCAL.socket = self.get_socket() |
||||
|
||||
def reconnect(self): |
||||
self.close() |
||||
THREAD_LOCAL.socket = self.get_socket() |
||||
|
||||
@staticmethod |
||||
def close(): |
||||
if THREAD_LOCAL.socket is not None: |
||||
try: |
||||
THREAD_LOCAL.socket.close() |
||||
except socket.error: |
||||
pass |
||||
|
||||
def get_socket(self): |
||||
_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
||||
_socket.connect(self.ipc_path) |
||||
# Tell the socket not to block on reads. |
||||
_socket.settimeout(2) |
||||
return _socket |
||||
|
||||
@staticmethod |
||||
def send_request(request): |
||||
THREAD_LOCAL.socket.sendall(request) |
||||
|
||||
@staticmethod |
||||
def read_response(): |
||||
response_raw = "" |
||||
while True: |
||||
response_raw += to_text(THREAD_LOCAL.socket.recv(4096)) |
||||
trimmed = response_raw.strip() |
||||
if trimmed and trimmed[-1] == '}': |
||||
logging.debug("ipc response: %s" % response_raw) |
||||
try: |
||||
return json.loads(trimmed) |
||||
except JSONDecodeError: |
||||
continue |
||||
|
||||
def _call(self, method, params=None, _id=1): |
||||
params = params or [] |
||||
data = { |
||||
'jsonrpc': '2.0', |
||||
'method': method, |
||||
'params': params, |
||||
'id': _id, |
||||
} |
||||
logging.debug("ipc send: %s" % json.dumps(data)) |
||||
request = to_bytes(json.dumps(data)) |
||||
|
||||
self.connect_if_not_yet() |
||||
|
||||
for _ in range(3): |
||||
try: |
||||
self.send_request(request) |
||||
response = self.read_response() |
||||
break |
||||
except socket.timeout or OSError: |
||||
self.reconnect() |
||||
else: |
||||
raise ValueError("No JSON returned by socket") |
||||
|
||||
if "error" in response: |
||||
raise ValueError(response["error"]["message"]) |
||||
|
||||
return response["result"] |
@ -1,8 +0,0 @@ |
||||
BLOCK_TAG_EARLIEST = 'earliest' |
||||
BLOCK_TAG_LATEST = 'latest' |
||||
BLOCK_TAG_PENDING = 'pending' |
||||
BLOCK_TAGS = ( |
||||
BLOCK_TAG_EARLIEST, |
||||
BLOCK_TAG_LATEST, |
||||
BLOCK_TAG_PENDING, |
||||
) |
@ -1,18 +0,0 @@ |
||||
class EthIpcError(Exception): |
||||
pass |
||||
|
||||
|
||||
class ConnectionError(EthIpcError): |
||||
pass |
||||
|
||||
|
||||
class BadStatusCodeError(EthIpcError): |
||||
pass |
||||
|
||||
|
||||
class BadJsonError(EthIpcError): |
||||
pass |
||||
|
||||
|
||||
class BadResponseError(EthIpcError): |
||||
pass |
@ -1,86 +0,0 @@ |
||||
import os |
||||
import sys |
||||
|
||||
from .constants import BLOCK_TAGS |
||||
|
||||
|
||||
def hex_to_dec(x): |
||||
''' |
||||
Convert hex to decimal |
||||
''' |
||||
return int(x, 16) |
||||
|
||||
def to_bytes(text): |
||||
return text.encode('utf-8') |
||||
|
||||
def to_text(byte_array): |
||||
return byte_array.decode('utf-8') |
||||
|
||||
def clean_hex(d): |
||||
''' |
||||
Convert decimal to hex and remove the "L" suffix that is appended to large |
||||
numbers |
||||
''' |
||||
return hex(d).rstrip('L') |
||||
|
||||
def validate_block(block): |
||||
if isinstance(block, str): |
||||
if block not in BLOCK_TAGS: |
||||
raise ValueError('invalid block tag') |
||||
if isinstance(block, int): |
||||
block = hex(block) |
||||
return block |
||||
|
||||
|
||||
def wei_to_ether(wei): |
||||
''' |
||||
Convert wei to ether |
||||
''' |
||||
return 1.0 * wei / 10**18 |
||||
|
||||
|
||||
def ether_to_wei(ether): |
||||
''' |
||||
Convert ether to wei |
||||
''' |
||||
return ether * 10**18 |
||||
|
||||
|
||||
def get_default_ipc_path(testnet=False): |
||||
if testnet: |
||||
testnet = "testnet" |
||||
else: |
||||
testnet = "" |
||||
|
||||
if sys.platform == 'darwin': |
||||
ipc_path = os.path.expanduser(os.path.join("~", "Library", "Ethereum", testnet, "geth.ipc")) |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
ipc_path = os.path.expanduser(os.path.join("~", "Library", "Application Support", "io.parity.ethereum", "jsonrpc.ipc")) |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
elif sys.platform.startswith('linux'): |
||||
ipc_path = os.path.expanduser(os.path.join("~", ".ethereum", testnet, "geth.ipc")) |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
ipc_path = os.path.expanduser(os.path.join("~", ".local", "share", "io.parity.ethereum", "jsonrpc.ipc")) |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
elif sys.platform == 'win32': |
||||
ipc_path = os.path.join("\\\\", ".", "pipe", "geth.ipc") |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
ipc_path = os.path.join("\\\\", ".", "pipe", "jsonrpc.ipc") |
||||
if os.path.exists(ipc_path): |
||||
return ipc_path |
||||
|
||||
else: |
||||
raise ValueError( |
||||
"Unsupported platform '{0}'. Only darwin/linux2/win32 are " |
||||
"supported. You must specify the ipc_path".format(sys.platform) |
||||
) |
@ -0,0 +1,44 @@ |
||||
from mythril.laser.ethereum.transaction.transaction_models import MessageCallTransaction, ContractCreationTransaction |
||||
from z3 import BitVec |
||||
from mythril.laser.ethereum.state import GlobalState, Environment, CalldataType, Account, WorldState |
||||
from mythril.disassembler.disassembly import Disassembly |
||||
from mythril.laser.ethereum.cfg import Node, Edge, JumpType |
||||
|
||||
|
||||
def execute_message_call(laser_evm, callee_address, caller_address, origin_address, code, data, gas, gas_price, value): |
||||
""" Executes a message call transaction from all open states """ |
||||
open_states = laser_evm.open_states[:] |
||||
del laser_evm.open_states[:] |
||||
|
||||
for open_world_state in open_states: |
||||
transaction = MessageCallTransaction( |
||||
world_state=open_world_state, |
||||
callee_account=open_world_state[callee_address], |
||||
caller=caller_address, |
||||
call_data=data, |
||||
gas_price=gas_price, |
||||
call_value=value, |
||||
origin=origin_address, |
||||
call_data_type=CalldataType.SYMBOLIC, |
||||
code=Disassembly(code) |
||||
) |
||||
|
||||
_setup_global_state_for_execution(laser_evm, transaction) |
||||
|
||||
laser_evm.exec() |
||||
|
||||
|
||||
def _setup_global_state_for_execution(laser_evm, transaction): |
||||
""" Sets up global state and cfg for a transactions execution""" |
||||
global_state = transaction.initial_global_state() |
||||
global_state.transaction_stack.append((transaction, None)) |
||||
|
||||
new_node = Node(global_state.environment.active_account.contract_name) |
||||
|
||||
laser_evm.nodes[new_node.uid] = new_node |
||||
if transaction.world_state.node: |
||||
laser_evm.edges.append(Edge(transaction.world_state.node.uid, new_node.uid, edge_type=JumpType.Transaction, |
||||
condition=None)) |
||||
global_state.node = new_node |
||||
new_node.states.append(global_state) |
||||
laser_evm.work_list.append(global_state) |
@ -1,40 +0,0 @@ |
||||
from unittest import TestCase |
||||
|
||||
from mythril.ipc.client import EthIpc |
||||
|
||||
class IpcTest(TestCase): |
||||
client = None |
||||
|
||||
def setUp(self): |
||||
self.client = EthIpc() |
||||
|
||||
def test_eth_coinbase(self): |
||||
coinbase = self.client.eth_coinbase() |
||||
self.assertTrue(coinbase.startswith("0x"), "coinbase should be a hex string") |
||||
self.assertEqual(len(coinbase), 42, "coinbase is a string with length of 42") |
||||
|
||||
def test_eth_blockNumber(self): |
||||
block_number = self.client.eth_blockNumber() |
||||
self.assertGreater(block_number, 0, "we have made sure the blockNumber is > 0 for testing") |
||||
|
||||
def test_eth_getBalance(self): |
||||
balance = self.client.eth_getBalance(address="0x0000000000000000000000000000000000000000") |
||||
self.assertGreater(balance, 10000000, "specified address should have a lot of balance") |
||||
|
||||
def test_eth_getStorageAt(self): |
||||
storage = self.client.eth_getStorageAt(address="0x0000000000000000000000000000000000000000") |
||||
self.assertEqual(storage, '0x0000000000000000000000000000000000000000000000000000000000000000') |
||||
|
||||
def test_eth_getBlockByNumber(self): |
||||
block = self.client.eth_getBlockByNumber(0) |
||||
self.assertEqual(block["extraData"], "0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa", "the data of the first block should be right") |
||||
|
||||
def test_eth_getCode(self): |
||||
# TODO: can't find a proper address for getting code |
||||
code = self.client.eth_getCode(address="0x0000000000000000000000000000000000000001") |
||||
self.assertEqual(code, "0x") |
||||
|
||||
def test_eth_getTransactionReceipt(self): |
||||
transaction = self.client.eth_getTransactionReceipt(tx_hash="0xe363505adc6b2996111f8bd774f8653a61d244cc6567b5372c2e781c6c63b737") |
||||
self.assertEqual(transaction["from"], "0x22f2dcff5ad78c3eb6850b5cb951127b659522e6") |
||||
self.assertEqual(transaction["to"], "0x0000000000000000000000000000000000000000") |
@ -0,0 +1,7 @@ |
||||
Copyright 2014 Ethereum Foundation |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,4 @@ |
||||
Files found in this directory are taken from https://github.com/ethereum/tests, released under the |
||||
license LICENSE in the same directory as this file. |
||||
|
||||
All credit goes to the awesome people that made this! |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"add0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/add0Filler.json", |
||||
"sourceHash": "8ffcccd596ff216a8304f822e302bd7b2abe3f7f7616928a2a0385d2cfdf01ac" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013874", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"add1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/add1Filler.json", |
||||
"sourceHash": "36b138942544cd189bff05ff1694917ed4cef48760592536b2829f3e90d5850a" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013874", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x03" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"add2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/add2Filler.json", |
||||
"sourceHash": "c17fbe9e92877d5a60743ca4c172bba1060e20b08f9ee00ca0ccb6b72bac897f" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"add3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/add3Filler.json", |
||||
"sourceHash": "d64685dfa395fd7dc69e5883eaedaeece8217daff0ad658a083dc2f2fc870ef1" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6000600001600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000600001600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000600001600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"add4": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/add4Filler.json", |
||||
"sourceHash": "3b04e90121702949a56e656f4f895f5de3aed278fd3530eec4c52c378f41dcfa" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600101600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600101600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600101600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod0Filler.json", |
||||
"sourceHash": "aba7a646dee5e90acf0c2257a986ff99d044f057de21667f2acec868f7d4b8eb" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60026002600108600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01386c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026002600108600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026002600108600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod1Filler.json", |
||||
"sourceHash": "edf8071d0533dd82ff2fb34b4caab47db62aa7d918004d82630cd2b37ddcbc90" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60026002600003600160000308600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013860", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026002600003600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026002600003600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmod1_overflow2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod1_overflow2Filler.json", |
||||
"sourceHash": "9029d29f6ad3ad30d1cae39fe98723bb400f9fab4562bd7898a0168a0f353a3f" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60056000600160000308600055", |
||||
"data": "0x", |
||||
"gas": "0x2710", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x136e", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056000600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056000600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod1_overflow3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod1_overflow3Filler.json", |
||||
"sourceHash": "f51942005cbb182f759380c7c7fa43d9666d8ea095cc9ce0538e04c2ffc2dd03" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60056001600160000308600055", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0ef406", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056001600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056001600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod1_overflow4": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod1_overflow4Filler.json", |
||||
"sourceHash": "59184840928cfdb750aab06b0a42c30d4dc99a713f315239b1b6596ec9ef92c2" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60056002600160000308600055", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0ef406", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056002600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x02" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056002600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod1_overflowDiff": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod1_overflowDiffFiller.json", |
||||
"sourceHash": "4836017c5969c3cc9e6fee8a3da1e2d81454d2880d10fadd146cdb8ca8b57273" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60056002600003600160000308600055", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0ef400", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056002600003600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x04" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056002600003600160000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod2Filler.json", |
||||
"sourceHash": "22a6b0713565860ede4858c04c85d823cc24829962730303aeb7bacf48e6e2af" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60036001600660000308600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013866", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x02" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmod2_0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod2_0Filler.json", |
||||
"sourceHash": "dc557aacebaa46b88f072e79ac09df8a576c1551f7ce3381bc22aa33a5fdfa7b" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60036001600660000308600360056000030714600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0172ea", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600360056000030714600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600360056000030714600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod2_1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod2_1Filler.json", |
||||
"sourceHash": "f5227cd573f551a66a89ca6ef0075d999fa0dfcd1b6cc162deba46db3fc957ae" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60036001600660000308600360056000030614600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013852", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600360056000030614600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036001600660000308600360056000030614600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmod3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod3Filler.json", |
||||
"sourceHash": "98f42c19c4c02edb27ddbe15d425fa031f3b79998b3fcfce32ecbb070dca20f7" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60036000036001600408600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013866", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036000036001600408600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x05" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036000036001600408600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmod3_0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmod3_0Filler.json", |
||||
"sourceHash": "20e873a721f9d6c9a6808a017a7ddb48538f6e24e0ea5bb2e1e0d616aee00b1e" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60026003600003600160040814600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0172f8", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026003600003600160040814600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026003600003600160040814600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmodBigIntCast": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmodBigIntCastFiller.json", |
||||
"sourceHash": "6425ea71989061d67059c0ff21a02ae588b5a1b7d69acab1136d8e5cd3341349" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600560017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff08600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01386c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600560017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff08600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600560017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff08600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmodDivByZero": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmodDivByZeroFiller.json", |
||||
"sourceHash": "ff8897ddc6eff1209bf12094e82e622ac4a2ecd6ce84ffdac4e4b1bf6c0a7bda" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60006001600408600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x017304", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006001600408600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006001600408600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmodDivByZero1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmodDivByZero1Filler.json", |
||||
"sourceHash": "38ae4bc3d451120dcd38c38ede77bde9e767c64e25025a459233261ba101b05f" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60006001600008600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x017304", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006001600008600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006001600008600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"addmodDivByZero2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmodDivByZero2Filler.json", |
||||
"sourceHash": "433f565d64a9730f98cd80b4ae1510d496eba6a3a311c85c2d12394f3edd8cf3" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60006000600108600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x017304", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006000600108600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006000600108600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"addmodDivByZero3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/addmodDivByZero3Filler.json", |
||||
"sourceHash": "f10de49a80343bfa59231702b9a2f7c500d1c000693005c39a82049ed55b62f8" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60016000600060000803600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013866", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016000600060000803600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016000600060000803600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"arith1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/arith1Filler.json", |
||||
"sourceHash": "26a824545a0d305ff19c0483bf52a65822c1df521fac97eac52902de884f2a5f" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6001600190016007026005016002900460049060016021900560150160030260059007600303600960110a60005260086000f3", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0f41bf", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x0000000000000000", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6001600190016007026005016002900460049060016021900560150160030260059007600303600960110a60005260086000f3", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6001600190016007026005016002900460049060016021900560150160030260059007600303600960110a60005260086000f3", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"div1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/div1Filler.json", |
||||
"sourceHash": "159c0277fb5839d12de6e134cafe963c3b66c577959ad6c760d2c76af7f896c5" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60027ffedcba9876543210fedcba9876543210fedcba9876543210fedcba98765432100460005260206000f3", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x018686", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x7f6e5d4c3b2a19087f6e5d4c3b2a19087f6e5d4c3b2a19087f6e5d4c3b2a1908", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60027ffedcba9876543210fedcba9876543210fedcba9876543210fedcba98765432100460005260206000f3", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60027ffedcba9876543210fedcba9876543210fedcba9876543210fedcba98765432100460005260206000f3", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"divBoostBug": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divBoostBugFiller.json", |
||||
"sourceHash": "b572d1a3d37f2ac6255b64338654b664ae1e27b5da5a8ce7e337812f0ae357f5" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013872", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x89" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"divByNonZero0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByNonZero0Filler.json", |
||||
"sourceHash": "de10028af4d71ec4eab4f19099b395e5a8ee65b3797507c5100574344f432a41" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6002600504600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013872", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6002600504600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x02" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6002600504600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"divByNonZero1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByNonZero1Filler.json", |
||||
"sourceHash": "a10288727a8cd42937137db0964c54dfeb67031156d9e89c762c1ccf5400f46d" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6018601704600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730a", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6018601704600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6018601704600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"divByNonZero2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByNonZero2Filler.json", |
||||
"sourceHash": "09b0a23cd19a08af2b97b1348b9c15ad0668dbb7f1303fc8c188edbfc532163c" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6018600004600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730a", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6018600004600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6018600004600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"divByNonZero3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByNonZero3Filler.json", |
||||
"sourceHash": "2421e4d08c24171e953eeb5b7e1e6f1db9a16a8d3160d4ab082401a379bcda37" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6001600104600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013872", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6001600104600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6001600104600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"divByZero": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByZeroFiller.json", |
||||
"sourceHash": "d08e0f0e1b8a688776ad0772dcb91f93ce5320d0e8e34723139d20b3358234e1" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6000600204600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01730a", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000600204600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000600204600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"divByZero_2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/divByZero_2Filler.json", |
||||
"sourceHash": "63a28c09a22266dc3c56fe10cf0542d7945ff53214deba17b511372c4d24fd29" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60076000600d0401600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01386c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60076000600d0401600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x07" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60076000600d0401600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp0Filler.json", |
||||
"sourceHash": "d7bca8fc54c818174631d156150165cf8b3cb5b3275ee3f00aa651a9614a8b6b" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600260020a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013863", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600260020a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x04" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600260020a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp1Filler.json", |
||||
"sourceHash": "790225dd362e72d2c03d6fb70e8f3d1b07c27ba502d3e4968d0584342925cf78" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01372d", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp2Filler.json", |
||||
"sourceHash": "048b0885d4cbf3735ed6d6ea4e70f6d2fcabf1ec0c797028859f0138485129c7" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x637fffffff637fffffff0a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013845", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x637fffffff637fffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0xbc8cccccccc888888880000000aaaaaab00000000fffffffffffffff7fffffff" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x637fffffff637fffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"exp3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp3Filler.json", |
||||
"sourceHash": "0fb6a29eff8766b8b8e5d4bebd1bd26191382cf9a53fb082f318d835d3ef54ca" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x637fffffff60000a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0172dd", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x637fffffff60000a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x637fffffff60000a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp4": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp4Filler.json", |
||||
"sourceHash": "b0493347ef7099abaa8b086c34db3f90d32c3b1ba099799be4e6937f44707d84" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x6000637fffffff0a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01386d", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000637fffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x6000637fffffff0a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp5": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp5Filler.json", |
||||
"sourceHash": "050d2365266bd54b09698870bf65e32e3aaabd28ae1edaf8df7162fbb707e810" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60016101010a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013863", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101010a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101010a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp6": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp6Filler.json", |
||||
"sourceHash": "4534de4b71ac08f103de5d9c76546ede7925f520b88f5dbadca3ece614f19101" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x61010160010a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x013859", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x61010160010a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x61010160010a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,48 @@ |
||||
{ |
||||
"exp7": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp7Filler.json", |
||||
"sourceHash": "caa58d4cf6deb6783a20c24ec41da247074d43a7038c9eca2ca0122f9c6a59f9" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x61010160020a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0172f1", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x61010160020a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x61010160020a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"exp8": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/exp8Filler.json", |
||||
"sourceHash": "1cc9a393c6ceda35ec9afd4aca74145c1c244a0d4765ede3f473e0fd194ca595" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600060000a600055", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x01386d", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600060000a600055", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600060000a600055", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,58 @@ |
||||
{ |
||||
"expPowerOf256Of256_0": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_0Filler.json", |
||||
"sourceHash": "6863ca9c3ee1851b0b73bd28fd8f93247e10db38711c963874c5525fdde6e9a3" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60006101000a6101000a600055600060ff0a6101000a60015560006101010a6101000a60025560006101000a60ff0a600355600060ff0a60ff0a60045560006101010a60ff0a60055560006101000a6101010a600655600060ff0a6101010a60075560006101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0c81a6", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006101000a6101000a600055600060ff0a6101000a60015560006101010a6101000a60025560006101000a60ff0a600355600060ff0a60ff0a60045560006101010a60ff0a60055560006101000a6101010a600655600060ff0a6101010a60075560006101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x0100", |
||||
"0x01": "0x0100", |
||||
"0x02": "0x0100", |
||||
"0x03": "0xff", |
||||
"0x04": "0xff", |
||||
"0x05": "0xff", |
||||
"0x06": "0x0101", |
||||
"0x07": "0x0101", |
||||
"0x08": "0x0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60006101000a6101000a600055600060ff0a6101000a60015560006101010a6101000a60025560006101000a60ff0a600355600060ff0a60ff0a60045560006101010a60ff0a60055560006101000a6101010a600655600060ff0a6101010a60075560006101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_1Filler.json", |
||||
"sourceHash": "69cfec5346c375b71292c83f0077c8db86c8046a52aed0700f70628c5de03cf7" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60016101000a6101000a600055600160ff0a6101000a60015560016101010a6101000a60025560016101000a60ff0a600355600160ff0a60ff0a60045560016101010a60ff0a60055560016101000a6101010a600655600160ff0a6101010a60075560016101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d30d8", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101000a6101000a600055600160ff0a6101000a60015560016101010a6101000a60025560016101000a60ff0a600355600160ff0a60ff0a60045560016101010a60ff0a60055560016101000a6101010a600655600160ff0a6101010a60075560016101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x06c3acd330b959ad6efabce6d2d2125e73a88a65a9880d203dddf5957f7f0001", |
||||
"0x04": "0x8f965a06da0ac41dcb3a34f1d8ab7d8fee620a94faa42c395997756b007ffeff", |
||||
"0x05": "0xbce9265d88a053c18bc229ebff404c1534e1db43de85131da0179fe9ff8100ff", |
||||
"0x06": "0x02b5e9d7a094c19f5ebdd4f2e618f859ed15e4f1f0351f286bf849eb7f810001", |
||||
"0x07": "0xc73b7a6f68385c653a24993bb72eea0e4ba17470816ec658cf9c5bedfd81ff01", |
||||
"0x08": "0xb89fc178355660fe1c92c7d8ff11524702fad6e2255447946442356b00810101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101000a6101000a600055600160ff0a6101000a60015560016101010a6101000a60025560016101000a60ff0a600355600160ff0a60ff0a60045560016101010a60ff0a60055560016101000a6101010a600655600160ff0a6101010a60075560016101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_10": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_10Filler.json", |
||||
"sourceHash": "4b8da51eee6773daecfe22bd2067c03bc00a82f27934f7b8053636433008d2fe" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600a6101000a6101000a600055600a60ff0a6101000a600155600a6101010a6101000a600255600a6101000a60ff0a600355600a60ff0a60ff0a600455600a6101010a60ff0a600555600a6101000a6101010a600655600a60ff0a6101010a600755600a6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2dae", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600a6101000a6101000a600055600a60ff0a6101000a600155600a6101010a6101000a600255600a6101000a60ff0a600355600a60ff0a60ff0a600455600a6101010a60ff0a600555600a6101000a6101010a600655600a60ff0a6101010a600755600a6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xfe0f60957dc223578a0298879ec55c33085514ff7f0000000000000000000001", |
||||
"0x04": "0xc1ea45f348b5d351c4d8fe5c77da979cadc33d866acc42e981278896b1f600ff", |
||||
"0x05": "0x56ddb29bca94fb986ac0a40188b3b53f3216b3559bd8324a77ea8bd8a80a00ff", |
||||
"0x06": "0x2d49ff6b0bbe177ae9317000b68fb921f7aa6aff810000000000000000000001", |
||||
"0x07": "0x185fa9eab94cfe3016b69657e83b23fd24cc6960218254231c3db627a7f60101", |
||||
"0x08": "0xa7a0223829f26d6c635368034320563df4aa5eb62efc87a42bb35f69b20a0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600a6101000a6101000a600055600a60ff0a6101000a600155600a6101010a6101000a600255600a6101000a60ff0a600355600a60ff0a60ff0a600455600a6101010a60ff0a600555600a6101000a6101010a600655600a60ff0a6101010a600755600a6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_11": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_11Filler.json", |
||||
"sourceHash": "9f894285b221c629d940fd5717ca08b2f5f1e35b809191f00557ed3d1c76e01c" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600b6101000a6101000a600055600b60ff0a6101000a600155600b6101010a6101000a600255600b6101000a60ff0a600355600b60ff0a60ff0a600455600b6101010a60ff0a600555600b6101000a6101010a600655600b60ff0a6101010a600755600b6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2d54", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600b6101000a6101000a600055600b60ff0a6101000a600155600b6101010a6101000a600255600b6101000a60ff0a600355600b60ff0a60ff0a600455600b6101010a60ff0a600555600b6101000a6101010a600655600b60ff0a6101010a600755600b6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xe1440264b8ee0cea0218879ec55c33085514ff7f000000000000000000000001", |
||||
"0x04": "0x29575fdce377b23043e489e358581474bc863187fa85f9945473a2be5889feff", |
||||
"0x05": "0x3df8c030ec521fb109c4d887dbbc14c7c9c9921b27058e3503971b60b18b00ff", |
||||
"0x06": "0x67799740340daf4a30f000b68fb921f7aa6aff81000000000000000000000001", |
||||
"0x07": "0x540a4e4635b40585e09ff10b63ffe310dd717fca5c0a51570091e25e378bff01", |
||||
"0x08": "0xdbbaef5c49ffee61b08cde6ebc8dba6e9a62d56c2355d1980cb9e790bc8b0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600b6101000a6101000a600055600b60ff0a6101000a600155600b6101010a6101000a600255600b6101000a60ff0a600355600b60ff0a60ff0a600455600b6101010a60ff0a600555600b6101000a6101010a600655600b60ff0a6101010a600755600b6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_12": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_12Filler.json", |
||||
"sourceHash": "3f676ad5517e82148d0d2da5936d57a608e33179c423d4304a6fe825b5707548" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600c6101000a6101000a600055600c60ff0a6101000a600155600c6101010a6101000a600255600c6101000a60ff0a600355600c60ff0a60ff0a600455600c6101010a60ff0a600555600c6101000a6101010a600655600c60ff0a6101010a600755600c6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2cfa", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600c6101000a6101000a600055600c60ff0a6101000a600155600c6101010a6101000a600255600c6101000a60ff0a600355600c60ff0a60ff0a600455600c6101010a60ff0a600555600c6101000a6101010a600655600c60ff0a6101010a600755600c6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xb0e95b83a36ce98218879ec55c33085514ff7f00000000000000000000000001", |
||||
"0x04": "0xc482ab56ec19186dc48c88f30861a850b2253b1ea6dc021589e569bd47f400ff", |
||||
"0x05": "0xcf45c7f9af4bbe4a83055b55b97777ad5e0a3f08b129c9ae208c5d713c0c00ff", |
||||
"0x06": "0xa5cbb62a421049b0f000b68fb921f7aa6aff8100000000000000000000000001", |
||||
"0x07": "0x3bde6ca66dffe1bf5d727c3edea74c7a4af43b3912e6256d37705c8f3bf40101", |
||||
"0x08": "0x3f49a1e40c5213aa4ffed57eb4c1ad2d181b2aaa289e9d59c2256c43480c0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600c6101000a6101000a600055600c60ff0a6101000a600155600c6101010a6101000a600255600c6101000a60ff0a600355600c60ff0a60ff0a600455600c6101010a60ff0a600555600c6101000a6101010a600655600c60ff0a6101010a600755600c6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_13": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_13Filler.json", |
||||
"sourceHash": "da54905daaeaa0664d44547ff55e475b07362ac581d4a395233ed5e2c6f52ced" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600d6101000a6101000a600055600d60ff0a6101000a600155600d6101010a6101000a600255600d6101000a60ff0a600355600d60ff0a60ff0a600455600d6101010a60ff0a600555600d6101000a6101010a600655600d60ff0a6101010a600755600d6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2ca0", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600d6101000a6101000a600055600d60ff0a6101000a600155600d6101010a6101000a600255600d6101000a60ff0a600355600d60ff0a60ff0a600455600d6101010a60ff0a600555600d6101000a6101010a600655600d60ff0a6101010a600755600d6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xe02639036c698218879ec55c33085514ff7f0000000000000000000000000001", |
||||
"0x04": "0x8be664bde946d939ce551b948b503787942d2a7734509288c1b62fd5c48bfeff", |
||||
"0x05": "0xa923a28e7a75aef26c51580ffc686879e4a0b404b089bdbcd751d88b478d00ff", |
||||
"0x06": "0x41ac5ea30fc9b0f000b68fb921f7aa6aff810000000000000000000000000001", |
||||
"0x07": "0x0daa3a177ec975cb69bb4acf4a6e1be7bcc1ad33d1ffad97510f9fea9d8dff01", |
||||
"0x08": "0x19e6822beb889be28310060f4fb9741bfd50a31fa81ec65de21f7b02548d0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600d6101000a6101000a600055600d60ff0a6101000a600155600d6101010a6101000a600255600d6101000a60ff0a600355600d60ff0a60ff0a600455600d6101010a60ff0a600555600d6101000a6101010a600655600d60ff0a6101010a600755600d6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_14": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_14Filler.json", |
||||
"sourceHash": "edd3df91eb065b15cab5d220c3d106ed68ddaf58d6c58f53a8cd65b27d2b2581" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600e6101000a6101000a600055600e60ff0a6101000a600155600e6101010a6101000a600255600e6101000a60ff0a600355600e60ff0a60ff0a600455600e6101010a60ff0a600555600e6101000a6101010a600655600e60ff0a6101010a600755600e6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2c46", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600e6101000a6101000a600055600e60ff0a6101000a600155600e6101010a6101000a600255600e6101000a60ff0a600355600e60ff0a60ff0a600455600e6101010a60ff0a600555600e6101000a6101010a600655600e60ff0a6101010a600755600e6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xdb9902ec698218879ec55c33085514ff7f000000000000000000000000000001", |
||||
"0x04": "0x83fab06c6c8fef761ebbb9534c06ac2a9d61820623008069062ff3b1e1f200ff", |
||||
"0x05": "0x3f791dd183ed5b963bd86e0dba1a9dd5b8ceeb078f15c73062f1942fd40e00ff", |
||||
"0x06": "0xe0bfa28fc9b0f000b68fb921f7aa6aff81000000000000000000000000000001", |
||||
"0x07": "0x8133b760dfae27560eb490f235ddfa301f058dee4f01f3fe4b3567d0d3f20101", |
||||
"0x08": "0xcd4cd0124e983af71620fb5f98275965c6a8bebc4b8adc288b63224ee20e0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600e6101000a6101000a600055600e60ff0a6101000a600155600e6101010a6101000a600255600e6101000a60ff0a600355600e60ff0a60ff0a600455600e6101010a60ff0a600555600e6101000a6101010a600655600e60ff0a6101010a600755600e6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_15": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_15Filler.json", |
||||
"sourceHash": "f7cb05c59e6a333a6f97a5d9f4c0f35af8d8422f06d1cfe1aa80a98c27f99ed1" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600f6101000a6101000a600055600f60ff0a6101000a600155600f6101010a6101000a600255600f6101000a60ff0a600355600f60ff0a60ff0a600455600f6101010a60ff0a600555600f6101000a6101010a600655600f60ff0a6101010a600755600f6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2bec", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600f6101000a6101000a600055600f60ff0a6101000a600155600f6101010a6101000a600255600f6101000a60ff0a600355600f60ff0a60ff0a600455600f6101010a60ff0a600555600f6101000a6101010a600655600f60ff0a6101010a600755600f6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x9882ec698218879ec55c33085514ff7f00000000000000000000000000000001", |
||||
"0x04": "0x75c4915e18b96704209738f5ca765568bb4dc4113d56683977825a132c8dfeff", |
||||
"0x05": "0x5c76839bf5a80b1da705dbdf43e4dd6770cd7501af11ff2dab7918dfe18f00ff", |
||||
"0x06": "0xbf228fc9b0f000b68fb921f7aa6aff8100000000000000000000000000000001", |
||||
"0x07": "0xc6a29131e7594004bc2aa79f0d2c402a1409c57c77d284c14b1a3ab0ff8fff01", |
||||
"0x08": "0xe6b3e5cf6ec90e532fef7d08455ebf92a03e9e3f6e224ea0febdf1a9f08f0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600f6101000a6101000a600055600f60ff0a6101000a600155600f6101010a6101000a600255600f6101000a60ff0a600355600f60ff0a60ff0a600455600f6101010a60ff0a600555600f6101000a6101010a600655600f60ff0a6101010a600755600f6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_16": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_16Filler.json", |
||||
"sourceHash": "df0ea880ab4d8279515ba63f5a4c098d3869d42a1145eee993bdb07d543191ac" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60106101000a6101000a600055601060ff0a6101000a60015560106101010a6101000a60025560106101000a60ff0a600355601060ff0a60ff0a60045560106101010a60ff0a60055560106101000a6101010a600655601060ff0a6101010a60075560106101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2b92", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60106101000a6101000a600055601060ff0a6101000a60015560106101010a6101000a60025560106101000a60ff0a600355601060ff0a60ff0a60045560106101010a60ff0a60055560106101000a6101010a600655601060ff0a6101010a60075560106101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x82ec698218879ec55c33085514ff7f0000000000000000000000000000000001", |
||||
"0x04": "0x3122f4bcdf6dd8b265cd18eb6af28c879aed44a35e0bf59273e39e6c7ff000ff", |
||||
"0x05": "0x6a2b3bc87a02c29b9d27757df43047ecd0f15485270fca27417a701c701000ff", |
||||
"0x06": "0x228fc9b0f000b68fb921f7aa6aff810000000000000000000000000000000001", |
||||
"0x07": "0x88e1259502eef93d46060aacc9e2ff506c734dade0b6714ab12d17e46ff00101", |
||||
"0x08": "0x4a103813c12c12169b218296bb0a9eae80cf8d2b158aa70eb990f99480100101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60106101000a6101000a600055601060ff0a6101000a60015560106101010a6101000a60025560106101000a60ff0a600355601060ff0a60ff0a60045560106101010a60ff0a60055560106101000a6101010a600655601060ff0a6101010a60075560106101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_17": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_17Filler.json", |
||||
"sourceHash": "f070c654038863bc1be0d7f5a1f94d32eeae2548d2253bef46dd9153621c8d3a" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60116101000a6101000a600055601160ff0a6101000a60015560116101010a6101000a60025560116101000a60ff0a600355601160ff0a60ff0a60045560116101010a60ff0a60055560116101000a6101010a600655601160ff0a6101010a60075560116101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2b38", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60116101000a6101000a600055601160ff0a6101000a60015560116101010a6101000a60025560116101000a60ff0a600355601160ff0a60ff0a60045560116101010a60ff0a60055560116101000a6101010a600655601160ff0a6101010a60075560116101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xec698218879ec55c33085514ff7f000000000000000000000000000000000001", |
||||
"0x04": "0x722ad218eb1995a2d257c4c06d8de993c203cfc8e3512df7d633e17e908ffeff", |
||||
"0x05": "0x8ac9b5ec08d74612cb29f941481d274b51721af2296207c0da8d24667f9100ff", |
||||
"0x06": "0x8fc9b0f000b68fb921f7aa6aff81000000000000000000000000000000000001", |
||||
"0x07": "0x81d5ff63680841482299f3eab616446dcd336f537c0c565aa4112ab95d91ff01", |
||||
"0x08": "0x9c6ca90dac4e97dea02ac969e8649ee9e6232e0c3f4797411151cb8f90910101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60116101000a6101000a600055601160ff0a6101000a60015560116101010a6101000a60025560116101000a60ff0a600355601160ff0a60ff0a60045560116101010a60ff0a60055560116101000a6101010a600655601160ff0a6101010a60075560116101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_18": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_18Filler.json", |
||||
"sourceHash": "8cb52e6bdf20dde0fbdfcfa1309199db454a3bea15b4695b2f19fc0de0eb7aca" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60126101000a6101000a600055601260ff0a6101000a60015560126101010a6101000a60025560126101000a60ff0a600355601260ff0a60ff0a60045560126101010a60ff0a60055560126101000a6101010a600655601260ff0a6101010a60075560126101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2ade", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60126101000a6101000a600055601260ff0a6101000a60015560126101010a6101000a60025560126101000a60ff0a600355601260ff0a60ff0a60045560126101010a60ff0a60055560126101000a6101010a600655601260ff0a6101010a60075560126101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x698218879ec55c33085514ff7f00000000000000000000000000000000000001", |
||||
"0x04": "0x8a2cbd9f40794e2205b13306f2aa0a43c60823c64b95d8601fa4f1e521ee00ff", |
||||
"0x05": "0xc1b5a1e3a81da51b10d84e880f0113ff67b863ddad3faf1f4ecf413f101200ff", |
||||
"0x06": "0xc9b0f000b68fb921f7aa6aff8100000000000000000000000000000000000001", |
||||
"0x07": "0x410be68e49452a1fbcd863bf6e8d637f8eae4979c34c88d552afbcc20fee0101", |
||||
"0x08": "0xf540cb714754b5b1eb0373833833bd7fb0ee925ce8b92962500b7a1c22120101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60126101000a6101000a600055601260ff0a6101000a60015560126101010a6101000a60025560126101000a60ff0a600355601260ff0a60ff0a60045560126101010a60ff0a60055560126101000a6101010a600655601260ff0a6101010a60075560126101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_19": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_19Filler.json", |
||||
"sourceHash": "2bf12bb4afe51d507c22e76e8e5c567b0ef569281b1ebfd4045334c1da40bef5" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60136101000a6101000a600055601360ff0a6101000a60015560136101010a6101000a60025560136101000a60ff0a600355601360ff0a60ff0a60045560136101010a60ff0a60055560136101000a6101010a600655601360ff0a6101010a60075560136101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2a84", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60136101000a6101000a600055601360ff0a6101000a60015560136101010a6101000a60025560136101000a60ff0a600355601360ff0a60ff0a60045560136101010a60ff0a60055560136101000a6101010a600655601360ff0a6101010a60075560136101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x8218879ec55c33085514ff7f0000000000000000000000000000000000000001", |
||||
"0x04": "0xb795ad7ac24cfbb7435cf53bd3584f3d4b2709935635c3ceb66e761ff091feff", |
||||
"0x05": "0x1f0bb7be91a0ccd0cca93d75cf03de3e6b56fe8f1c54242617665327219300ff", |
||||
"0x06": "0xb0f000b68fb921f7aa6aff810000000000000000000000000000000000000001", |
||||
"0x07": "0xad571756ecbff1bfdef064861e5e92c5d897a9cc380e54bdbaabd80bb793ff01", |
||||
"0x08": "0xd8b5b531989e689f700dcdb43ab90e79a49dfbbb5a13dbf751df98bb34930101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60136101000a6101000a600055601360ff0a6101000a60015560136101010a6101000a60025560136101000a60ff0a600355601360ff0a60ff0a60045560136101010a60ff0a60055560136101000a6101010a600655601360ff0a6101010a60075560136101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_2": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_2Filler.json", |
||||
"sourceHash": "1bb794ffa6e9ae153773b173b7a12dac12fac68c4ca5cda54e75173507967636" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60026101000a6101000a600055600260ff0a6101000a60015560026101010a6101000a60025560026101000a60ff0a600355600260ff0a60ff0a60045560026101010a60ff0a60055560026101000a6101010a600655600260ff0a6101010a60075560026101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d307e", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026101000a6101000a600055600260ff0a6101000a60015560026101010a6101000a60025560026101000a60ff0a600355600260ff0a60ff0a60045560026101010a60ff0a60055560026101000a6101010a600655600260ff0a6101010a60075560026101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x4ee4ceeaac565c81f55a87c43f82f7c889ef4fc7c679671e28d594ff7f000001", |
||||
"0x04": "0x82f46a1b4e34d66712910615d2571d75606ceac51fa8ca8c58cf6ca881fe00ff", |
||||
"0x05": "0x81c9fcefa5de158ae2007f25d35c0d11cd735342a48905955a5a6852800200ff", |
||||
"0x06": "0x666ac362902470ed850709e2a29969d10cba09debc03c38d172aeaff81000001", |
||||
"0x07": "0xeb30a3c678a01bde914548f98f3366dc0ffe9f85384ebf1111d03dad7ffe0101", |
||||
"0x08": "0x72d0a7939b6303ce1d46e6e3f1b8be303bfdb2b00f41ad8076b0975782020101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60026101000a6101000a600055600260ff0a6101000a60015560026101010a6101000a60025560026101000a60ff0a600355600260ff0a60ff0a60045560026101010a60ff0a60055560026101000a6101010a600655600260ff0a6101010a60075560026101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_20": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_20Filler.json", |
||||
"sourceHash": "3e1e5001e4e59a393a85390f68cd05d35e46428201bde93b6f68ceb7ef9ec051" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60146101000a6101000a600055601460ff0a6101000a60015560146101010a6101000a60025560146101000a60ff0a600355601460ff0a60ff0a60045560146101010a60ff0a60055560146101000a6101010a600655601460ff0a6101010a60075560146101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2a2a", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60146101000a6101000a600055601460ff0a6101000a60015560146101010a6101000a60025560146101000a60ff0a600355601460ff0a60ff0a60045560146101010a60ff0a60055560146101000a6101010a600655601460ff0a6101010a60075560146101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x18879ec55c33085514ff7f000000000000000000000000000000000000000001", |
||||
"0x04": "0x67e4797dc21f02ce4a7c52218c7dbea5d212e6c244e24f0ba4c08613c7ec00ff", |
||||
"0x05": "0xa1ce1a085f258785846939cc1d2e8725ac94ad4dff8913234e00679fb41400ff", |
||||
"0x06": "0xf000b68fb921f7aa6aff81000000000000000000000000000000000000000001", |
||||
"0x07": "0xcce501857a1cb45473915a28082af950e0f78f7e2de68ce748adb661b3ec0101", |
||||
"0x08": "0x3b2e28d274a16c08b58a23bad63bba6d7b09685769d1f68ca3873bedc8140101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60146101000a6101000a600055601460ff0a6101000a60015560146101010a6101000a60025560146101000a60ff0a600355601460ff0a60ff0a60045560146101010a60ff0a60055560146101000a6101010a600655601460ff0a6101010a60075560146101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_21": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_21Filler.json", |
||||
"sourceHash": "ce52da9057e3fa7d2cd345a3397d93afefa12c7879817ff918ce958ab90f2595" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60156101000a6101000a600055601560ff0a6101000a60015560156101010a6101000a60025560156101000a60ff0a600355601560ff0a60ff0a60045560156101010a60ff0a60055560156101000a6101010a600655601560ff0a6101010a60075560156101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d29d0", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60156101000a6101000a600055601560ff0a6101000a60015560156101010a6101000a60025560156101000a60ff0a600355601560ff0a60ff0a60045560156101010a60ff0a60055560156101000a6101010a600655601560ff0a6101010a60075560156101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x879ec55c33085514ff7f00000000000000000000000000000000000000000001", |
||||
"0x04": "0x7fd07055ff50cdfe4b4bd9a15133d72d3607d92eb7ac81bac93db7ff4c93feff", |
||||
"0x05": "0x665ac5c769e87f61d5993abc26522fbfca2734d76a63216b2d550d29c79500ff", |
||||
"0x06": "0xb68fb921f7aa6aff8100000000000000000000000000000000000000000001", |
||||
"0x07": "0x1c93db67c9884bc694686d69a25a5d7ed089841d5ce147fdd7199ab00d95ff01", |
||||
"0x08": "0x485053d8ff66be52036597520344fac87b6a305426a9e49221d3f934dc950101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60156101000a6101000a600055601560ff0a6101000a60015560156101010a6101000a60025560156101000a60ff0a600355601560ff0a60ff0a60045560156101010a60ff0a60055560156101000a6101010a600655601560ff0a6101010a60075560156101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_22": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_22Filler.json", |
||||
"sourceHash": "b568d0b177c9f22d73b46e92e6fc973e292a6406e5c0fd774c4d62ffd1323a56" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60166101000a6101000a600055601660ff0a6101000a60015560166101010a6101000a60025560166101000a60ff0a600355601660ff0a60ff0a60045560166101010a60ff0a60055560166101000a6101010a600655601660ff0a6101010a60075560166101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2976", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60166101000a6101000a600055601660ff0a6101000a60015560166101010a6101000a60025560166101000a60ff0a600355601660ff0a60ff0a60045560166101010a60ff0a60055560166101000a6101010a600655601660ff0a6101010a60075560166101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x9ec55c33085514ff7f0000000000000000000000000000000000000000000001", |
||||
"0x04": "0xec447e662ac08957d7e290a421dbf54c0aaf43aadc9cc465ad0b02f071ea00ff", |
||||
"0x05": "0xdc9178d3bab470096f01477c859b5f4173986640b659426412a653465c1600ff", |
||||
"0x06": "0xb68fb921f7aa6aff810000000000000000000000000000000000000000000001", |
||||
"0x07": "0xdcf0a770777610503596ae0311af46c171151ed45107d7e7bb8f74bb5bea0101", |
||||
"0x08": "0x4d65773387993928c95c861274232d3fb6f6b7fe1b22e4e61a30e71172160101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60166101000a6101000a600055601660ff0a6101000a60015560166101010a6101000a60025560166101000a60ff0a600355601660ff0a60ff0a60045560166101010a60ff0a60055560166101000a6101010a600655601660ff0a6101010a60075560166101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_23": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_23Filler.json", |
||||
"sourceHash": "38af599c5f1710b1d7c98da78bf0c4426b7fd2c3ea8afe4272147706a93b231b" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60176101000a6101000a600055601760ff0a6101000a60015560176101010a6101000a60025560176101000a60ff0a600355601760ff0a60ff0a60045560176101010a60ff0a60055560176101000a6101010a600655601760ff0a6101010a60075560176101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d291c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60176101000a6101000a600055601760ff0a6101000a60015560176101010a6101000a60025560176101000a60ff0a600355601760ff0a60ff0a60045560176101010a60ff0a60055560176101000a6101010a600655601760ff0a6101010a60075560176101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xc55c33085514ff7f000000000000000000000000000000000000000000000001", |
||||
"0x04": "0x537ca0f03f974303005f1e6693b55b72315a166841732e42b8353724a495feff", |
||||
"0x05": "0x86418797ec60058de6cca47dfdbee79923ac49d7801e01840041ca76719700ff", |
||||
"0x06": "0x8fb921f7aa6aff81000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x56a55341ab8d4318f1cfb55d5f21e2ba35d7e070a72bac6b2b21baae5f97ff01", |
||||
"0x08": "0x55ddd0ec77909de6d8311116cf520398e816f928b06fdd90ec239d0488970101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60176101000a6101000a600055601760ff0a6101000a60015560176101010a6101000a60025560176101000a60ff0a600355601760ff0a60ff0a60045560176101010a60ff0a60055560176101000a6101010a600655601760ff0a6101010a60075560176101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_24": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_24Filler.json", |
||||
"sourceHash": "b2214b33d3fab1dfe04637edd51f67ec988e5bc2cbf134113adca7a36b73580b" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60186101000a6101000a600055601860ff0a6101000a60015560186101010a6101000a60025560186101000a60ff0a600355601860ff0a60ff0a60045560186101010a60ff0a60055560186101000a6101010a600655601860ff0a6101010a60075560186101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d28c2", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60186101000a6101000a600055601860ff0a6101000a60015560186101010a6101000a60025560186101000a60ff0a600355601860ff0a60ff0a60045560186101010a60ff0a60055560186101000a6101010a600655601860ff0a6101010a60075560186101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x5c33085514ff7f00000000000000000000000000000000000000000000000001", |
||||
"0x04": "0xd542e526003539ead104274aff2d78332366e29d328c2161f0c120731fe800ff", |
||||
"0x05": "0xc706cb25e8384ce9bb5c9cb48415238ba03e16c448e292c0a101843b081800ff", |
||||
"0x06": "0xb921f7aa6aff8100000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x4ca55f89202c524cb0f1cb3195d13c8d94a9f7a05c59e1d4031577c707e80101", |
||||
"0x08": "0x8c4b0574e9156b80035f3ecdcf1fe79d273ed7559747a4322bcd338f20180101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60186101000a6101000a600055601860ff0a6101000a60015560186101010a6101000a60025560186101000a60ff0a600355601860ff0a60ff0a60045560186101010a60ff0a60055560186101000a6101010a600655601860ff0a6101010a60075560186101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_25": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_25Filler.json", |
||||
"sourceHash": "74d1ad702e512305c9b820a2f64cff06cf51504b5d46fd73aee35f186e64f053" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60196101000a6101000a600055601960ff0a6101000a60015560196101010a6101000a60025560196101000a60ff0a600355601960ff0a60ff0a60045560196101010a60ff0a60055560196101000a6101010a600655601960ff0a6101010a60075560196101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2868", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60196101000a6101000a600055601960ff0a6101000a60015560196101010a6101000a60025560196101000a60ff0a600355601960ff0a60ff0a60045560196101010a60ff0a60055560196101000a6101010a600655601960ff0a6101010a60075560196101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x33085514ff7f0000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0x7f510dd7198cac0a92ff7ea80451838c0dfa12114c41a0ef05907397f897feff", |
||||
"0x05": "0x1275e752b6aee228ecba5e9b57ef1111deff3c651e2cfbf2cccd13151f9900ff", |
||||
"0x06": "0x21f7aa6aff810000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x6646340ad51a03bb710caf05756b685b33c7dad62ae68d369243700ead99ff01", |
||||
"0x08": "0x29d80e8060ef2221929bb18215586c742686d6860e028ca0456b443238990101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60196101000a6101000a600055601960ff0a6101000a60015560196101010a6101000a60025560196101000a60ff0a600355601960ff0a60ff0a60045560196101010a60ff0a60055560196101000a6101010a600655601960ff0a6101010a60075560196101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_26": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_26Filler.json", |
||||
"sourceHash": "f8cd2c9613fe495b1e4350181fb338743a9b059ec738b292702e62a997f0411f" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601a6101000a6101000a600055601a60ff0a6101000a600155601a6101010a6101000a600255601a6101000a60ff0a600355601a60ff0a60ff0a600455601a6101010a60ff0a600555601a6101000a6101010a600655601a60ff0a6101010a600755601a6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d280e", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601a6101000a6101000a600055601a60ff0a6101000a600155601a6101010a6101000a600255601a6101000a60ff0a600355601a60ff0a60ff0a600455601a6101010a60ff0a600555601a6101000a6101010a600655601a60ff0a6101010a600755601a6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x085514ff7f000000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0x1d164db738eb6893868b361ad2803f97be35764456e82a837667a693d1e600ff", |
||||
"0x05": "0x8b92c24abebf376a5aab5ff4dfd3538a03d38a10bced2aae8e1a8a85b81a00ff", |
||||
"0x06": "0xf7aa6aff81000000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x6931bda98c70e860a1f6a5224940f1ec7e6734cd9456c95806384f7cb7e60101", |
||||
"0x08": "0x3402a9db66492dfc2a220715e76243469462f24edc56903ba1d8e96ed21a0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601a6101000a6101000a600055601a60ff0a6101000a600155601a6101010a6101000a600255601a6101000a60ff0a600355601a60ff0a60ff0a600455601a6101010a60ff0a600555601a6101000a6101010a600655601a60ff0a6101010a600755601a6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_27": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_27Filler.json", |
||||
"sourceHash": "58b69b876666593f06ee8e5fef2f9fc078908f419ce364fe9dedf5acffeea71e" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601b6101000a6101000a600055601b60ff0a6101000a600155601b6101010a6101000a600255601b6101000a60ff0a600355601b60ff0a60ff0a600455601b6101010a60ff0a600555601b6101000a6101010a600655601b60ff0a6101010a600755601b6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d27b4", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601b6101000a6101000a600055601b60ff0a6101000a600155601b6101010a6101000a600255601b6101000a60ff0a600355601b60ff0a60ff0a600455601b6101010a60ff0a600555601b6101000a6101010a600655601b60ff0a6101010a600755601b6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x5514ff7f00000000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0x178918ffbcb401d4efd2f7dfb4d01a897172267f0f491121ac52dd614899feff", |
||||
"0x05": "0x38ecff71480ca0b422f2ed6f780d5fead2ae234a49104b10a86f7f0dd19b00ff", |
||||
"0x06": "0xaa6aff8100000000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0xd02811cb5dc1d80567e810532b235b7672f5c78cd6e89bb511d5e2d8f79bff01", |
||||
"0x08": "0x1b4e6404f474c18055d30bb8987672f59e97980d6f9de1764c0fbec5ec9b0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601b6101000a6101000a600055601b60ff0a6101000a600155601b6101010a6101000a600255601b6101000a60ff0a600355601b60ff0a60ff0a600455601b6101010a60ff0a600555601b6101000a6101010a600655601b60ff0a6101010a600755601b6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_28": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_28Filler.json", |
||||
"sourceHash": "7c777e8ac6e44db49986159099879a393d4d1e24a134a942bc56e9a3f645f441" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601c6101000a6101000a600055601c60ff0a6101000a600155601c6101010a6101000a600255601c6101000a60ff0a600355601c60ff0a60ff0a600455601c6101010a60ff0a600555601c6101000a6101010a600655601c60ff0a6101010a600755601c6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d275a", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601c6101000a6101000a600055601c60ff0a6101000a600155601c6101010a6101000a600255601c6101000a60ff0a600355601c60ff0a60ff0a600455601c6101010a60ff0a600555601c6101000a6101010a600655601c60ff0a6101010a600755601c6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x14ff7f0000000000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0xffd368e44b3f85cb81ae394c9809ca9fa2db46a83d7880a912ab6d4a87e400ff", |
||||
"0x05": "0x0981ad53c19b15a94bcf0bf20235dd0da9df25f46ae635029fe2062e6c1c00ff", |
||||
"0x06": "0x6aff810000000000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x19df06ffa28250867006726405fbc05d43dc2f9d2f025006db089bd46be40101", |
||||
"0x08": "0x243fffe3a4f2982f45055c08f379648ab886da8027a7401117a8e0b8881c0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601c6101000a6101000a600055601c60ff0a6101000a600155601c6101010a6101000a600255601c6101000a60ff0a600355601c60ff0a60ff0a600455601c6101010a60ff0a600555601c6101000a6101010a600655601c60ff0a6101010a600755601c6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_29": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_29Filler.json", |
||||
"sourceHash": "b0d3a0e97954254e535a7cba322485f664e2915eadb53a97e9294808bb5736e5" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601d6101000a6101000a600055601d60ff0a6101000a600155601d6101010a6101000a600255601d6101000a60ff0a600355601d60ff0a60ff0a600455601d6101010a60ff0a600555601d6101000a6101010a600655601d60ff0a6101010a600755601d6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2700", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601d6101000a6101000a600055601d60ff0a6101000a600155601d6101010a6101000a600255601d6101000a60ff0a600355601d60ff0a60ff0a600455601d6101010a60ff0a600555601d6101000a6101010a600655601d60ff0a6101010a600755601d6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xff7f000000000000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0x41e065d46e0349cfe624c4e8a2034aea1f7edfff80e511cd8067d488949bfeff", |
||||
"0x05": "0xa84162ca6675a22c4c79dfc4ea15f760db5a04dbf04246764199b668879d00ff", |
||||
"0x06": "0xff81000000000000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0x1226984faa6b05ebdbd45d8477fa4fd5b55bfd5061de03c319282b153d9dff01", |
||||
"0x08": "0x5cc9e6b0b749fd94541ad00364bdec2fca7816981ca3e38f485decc7a49d0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601d6101000a6101000a600055601d60ff0a6101000a600155601d6101010a6101000a600255601d6101000a60ff0a600355601d60ff0a60ff0a600455601d6101010a60ff0a600555601d6101000a6101010a600655601d60ff0a6101010a600755601d6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_3": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_3Filler.json", |
||||
"sourceHash": "53999523fa8817e9744f5212cb80074bff9d270fa6581d7d88ed73920d414ab2" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60036101000a6101000a600055600360ff0a6101000a60015560036101010a6101000a60025560036101000a60ff0a600355600360ff0a60ff0a60045560036101010a60ff0a60055560036101000a6101010a600655600360ff0a6101010a60075560036101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d3024", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036101000a6101000a600055600360ff0a6101000a60015560036101010a6101000a60025560036101000a60ff0a600355600360ff0a60ff0a60045560036101010a60ff0a60055560036101000a6101010a600655600360ff0a6101010a60075560036101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x109a00e1370d2d2922bf892e85becb54297354b2e5c75388d514ff7f00000001", |
||||
"0x04": "0x54a792f15e9aba7e4ad9e716bc169eea3a6e2e9c49bf9b335874613c8081feff", |
||||
"0x05": "0x5d24a14d8e5e039372cd0f6a0f31e9ed6b75adba9f16b1c5b3edd5ba818300ff", |
||||
"0x06": "0x298e2f316b4ccded5ebf515998d9ec20df69404b04a441782a6aff8100000001", |
||||
"0x07": "0x4335694e98f372183c62a2339fa4ad161e9b4c42240bdc9452abffd07783ff01", |
||||
"0x08": "0xf0f0820797315acd063056bba76f6a9c3e281cdb5197a233967ca94684830101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60036101000a6101000a600055600360ff0a6101000a60015560036101010a6101000a60025560036101000a60ff0a600355600360ff0a60ff0a60045560036101010a60ff0a60055560036101000a6101010a600655600360ff0a6101010a60075560036101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_30": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_30Filler.json", |
||||
"sourceHash": "804f4e95e384d6edbff23e904b20f47e7fa056744a955a10e0a41c32a620f7a1" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601e6101000a6101000a600055601e60ff0a6101000a600155601e6101010a6101000a600255601e6101000a60ff0a600355601e60ff0a60ff0a600455601e6101010a60ff0a600555601e6101000a6101010a600655601e60ff0a6101010a600755601e6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d26a6", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601e6101000a6101000a600055601e60ff0a6101000a600155601e6101010a6101000a600255601e6101000a60ff0a600355601e60ff0a60ff0a600455601e6101010a60ff0a600555601e6101000a6101010a600655601e60ff0a6101010a600755601e6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x7f00000000000000000000000000000000000000000000000000000000000001", |
||||
"0x04": "0xe9772778f50fa0a69cd10fa019ac56d72ac7a7d7af26c4ba28415c8f41e200ff", |
||||
"0x05": "0x33f0385ef73feebdb952e5adb643dd0fa178fd9271578219ad50a73d241e00ff", |
||||
"0x06": "0x8100000000000000000000000000000000000000000000000000000000000001", |
||||
"0x07": "0xfd405cce8f73dffc04a6f0ff6ffc6bf7961876d09c5b4933a68f0cc623e20101", |
||||
"0x08": "0xc5a8f4566fd2e96e4ce3a8b3ec0863e7b20bc3b2f3dc5261ba8a0174421e0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601e6101000a6101000a600055601e60ff0a6101000a600155601e6101010a6101000a600255601e6101000a60ff0a600355601e60ff0a60ff0a600455601e6101010a60ff0a600555601e6101000a6101010a600655601e60ff0a6101010a600755601e6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_31": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_31Filler.json", |
||||
"sourceHash": "bae9acb496c84a8fcc457a184519f0b42a40f8c0bb9c606c32a4c0e6cc73bc5c" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x601f6101000a6101000a600055601f60ff0a6101000a600155601f6101010a6101000a600255601f6101000a60ff0a600355601f60ff0a60ff0a600455601f6101010a60ff0a600555601f6101000a6101010a600655601f60ff0a6101010a600755601f6101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d264c", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601f6101000a6101000a600055601f60ff0a6101000a600155601f6101010a6101000a600255601f6101000a60ff0a600355601f60ff0a60ff0a600455601f6101010a60ff0a600555601f6101000a6101010a600655601f60ff0a6101010a600755601f6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x01", |
||||
"0x04": "0xf9cb87f5b1ab58602f52a1e9d392e5675b86a59a53943a8d4ec2a915dc9dfeff", |
||||
"0x05": "0x893d729a64e318860ec5047e70e598da163eb41e71e74b04dfd4712d419f00ff", |
||||
"0x06": "0x01", |
||||
"0x07": "0xee5f2839c1b4f6ca05e6fdb04e2fb49c0f860b3765c27dc781a150cb7f9fff01", |
||||
"0x08": "0xb4c358e3c6bcddfb509ea487d733df0e1854f29c3b6bfd4a8caabe3f609f0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x601f6101000a6101000a600055601f60ff0a6101000a600155601f6101010a6101000a600255601f6101000a60ff0a600355601f60ff0a60ff0a600455601f6101010a60ff0a600555601f6101000a6101010a600655601f60ff0a6101010a600755601f6101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,56 @@ |
||||
{ |
||||
"expPowerOf256Of256_32": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_32Filler.json", |
||||
"sourceHash": "f566ebbbcb84fc96179f87b08deeacd0d2819c3be9ffc463c64b98dc94d9eb70" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60206101000a6101000a600055602060ff0a6101000a60015560206101010a6101000a60025560206101000a60ff0a600355602060ff0a60ff0a60045560206101010a60ff0a60055560206101000a6101010a600655602060ff0a6101010a60075560206101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0cef56", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60206101000a6101000a600055602060ff0a6101000a60015560206101010a6101000a60025560206101000a60ff0a600355602060ff0a60ff0a60045560206101010a60ff0a60055560206101000a6101010a600655602060ff0a6101010a60075560206101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01", |
||||
"0x03": "0x01", |
||||
"0x04": "0xb8247842bb5ce75c08d0c251669ed5870fa24a22952e5db3a7c66c59ffe000ff", |
||||
"0x05": "0xee526e5a06f2a990b2bf6c951e5feabf0e07ee16877296e1be872db9e02000ff", |
||||
"0x06": "0x01", |
||||
"0x07": "0xeda7d024b6de40a9d3b966e71f10a4667edc5b71cab07aeabcac6249dfe00101", |
||||
"0x08": "0x512ecfaeeb11205f0833e1054dcb1300488e0954be5af77a49e143aa00200101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60206101000a6101000a600055602060ff0a6101000a60015560206101010a6101000a60025560206101000a60ff0a600355602060ff0a60ff0a60045560206101010a60ff0a60055560206101000a6101010a600655602060ff0a6101010a60075560206101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,56 @@ |
||||
{ |
||||
"expPowerOf256Of256_33": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_33Filler.json", |
||||
"sourceHash": "62951920849f41acd9c64c96645f372cc099f52e21f802d21f04a76e47dcca8d" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60216101000a6101000a600055602160ff0a6101000a60015560216101010a6101000a60025560216101000a60ff0a600355602160ff0a60ff0a60045560216101010a60ff0a60055560216101000a6101010a600655602160ff0a6101010a60075560216101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0cef56", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60216101000a6101000a600055602160ff0a6101000a60015560216101010a6101000a60025560216101000a60ff0a600355602160ff0a60ff0a60045560216101010a60ff0a60055560216101000a6101010a600655602160ff0a6101010a60075560216101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01", |
||||
"0x03": "0x01", |
||||
"0x04": "0x8dcb65b5494eba78cd6756a6f9851f6e26d0f2bb9ecd7e9abd7e9b11209ffeff", |
||||
"0x05": "0x6694bb31b20cd625f3756897dae6d738f2e64467b5b6f10fa3e07763ffa100ff", |
||||
"0x06": "0x01", |
||||
"0x07": "0xe678999aeffd1f1f45081f64de7f80ab083dd7df04721ed64ee04c03bda1ff01", |
||||
"0x08": "0x39b68fb9898dd7568abd178397251ce8226a25c1d305a4e79573333520a10101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60216101000a6101000a600055602160ff0a6101000a60015560216101010a6101000a60025560216101000a60ff0a600355602160ff0a60ff0a60045560216101010a60ff0a60055560216101000a6101010a600655602160ff0a6101010a60075560216101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_4": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_4Filler.json", |
||||
"sourceHash": "9e89b6c7017914475e04d79e5d288d291131826bc9eed968aa011e9d948bf772" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60046101000a6101000a600055600460ff0a6101000a60015560046101010a6101000a60025560046101000a60ff0a600355600460ff0a60ff0a60045560046101010a60ff0a60055560046101000a6101010a600655600460ff0a6101010a60075560046101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2fca", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60046101000a6101000a600055600460ff0a6101000a60015560046101010a6101000a60025560046101000a60ff0a600355600460ff0a60ff0a60045560046101010a60ff0a60055560046101000a6101010a600655600460ff0a6101010a60075560046101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xe6540ce46eaf70da9d644015a661e0e245b13f307cb3885514ff7f0000000001", |
||||
"0x04": "0x6526b38b05a6325b80e1c84ab41dc934fd70f33f1bd0eab3d1f61a4707fc00ff", |
||||
"0x05": "0xe959516cd27e5d8fd487b72db2989b3ec2ba9fb7ead41554526fe5a3040400ff", |
||||
"0x06": "0xe7498a48c6ce2530bbe814ee3440c8c44fffab7ad8a277aa6aff810000000001", |
||||
"0x07": "0x2dffa3e901e5a392d15b79f4193d2168147d2aa7c55870b46c3a905d03fc0101", |
||||
"0x08": "0xe16ea721c96539edb4f7fb82de0dad8cccb1e7a6966a6777635f6fb908040101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60046101000a6101000a600055600460ff0a6101000a60015560046101010a6101000a60025560046101000a60ff0a600355600460ff0a60ff0a60045560046101010a60ff0a60055560046101000a6101010a600655600460ff0a6101010a60075560046101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_5": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_5Filler.json", |
||||
"sourceHash": "d81389f12c21ff3e30ea2020d3dd5d086364da646e9fe273b4ad9f954f06ec60" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60056101000a6101000a600055600560ff0a6101000a60015560056101010a6101000a60025560056101000a60ff0a600355600560ff0a60ff0a60045560056101010a60ff0a60055560056101000a6101010a600655600560ff0a6101010a60075560056101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2f70", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056101000a6101000a600055600560ff0a6101000a60015560056101010a6101000a60025560056101000a60ff0a600355600560ff0a60ff0a60045560056101010a60ff0a60055560056101000a6101010a600655600560ff0a6101010a60075560056101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0xb581ac185aad71db2d177c286929c4c22809e5dcb3085514ff7f000000000001", |
||||
"0x04": "0x75789eb2a64bc971389fbd11a1e6d7abbf95ad25e23fb9aa25e73a0bfc83feff", |
||||
"0x05": "0xfc403fa42ceb6a0d0d3321bd9b2d8af25b1b667f87a04f496c78168d078500ff", |
||||
"0x06": "0xcec5ec213b9cb5811f6ae00428fd7b6ef5a1af39a1f7aa6aff81000000000001", |
||||
"0x07": "0x70ab32233202b98d382d17713fa0be391eaf74f85ba1740c9c3238c4ed85ff01", |
||||
"0x08": "0xb622672a213faa79b32185ff93a7b27a8499e48f7b032cdb4d1a70300c850101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60056101000a6101000a600055600560ff0a6101000a60015560056101010a6101000a60025560056101000a60ff0a600355600560ff0a60ff0a60045560056101010a60ff0a60055560056101000a6101010a600655600560ff0a6101010a60075560056101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_6": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_6Filler.json", |
||||
"sourceHash": "d7294bb173d18f88acc0e8b342fe20037ce735b0eabab1ee878b6cccd909dd69" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60066101000a6101000a600055600660ff0a6101000a60015560066101010a6101000a60025560066101000a60ff0a600355600660ff0a60ff0a60045560066101010a60ff0a60055560066101000a6101010a600655600660ff0a6101010a60075560066101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2f16", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60066101000a6101000a600055600660ff0a6101000a60015560066101010a6101000a60025560066101000a60ff0a600355600660ff0a60ff0a60045560066101010a60ff0a60055560066101000a6101010a600655600660ff0a6101010a60075560066101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x1948059de1def03c4ec35fc22c2bb8f2bf45dc33085514ff7f00000000000001", |
||||
"0x04": "0x41f818a8e24eb6d7bb7b193b4f2b5fdcf4bd0d453f2ac3499d8830d391fa00ff", |
||||
"0x05": "0xede6fe4a943dfb5d967a2b85d6728759d40d2ef0ae4bc28bbb1867f98c0600ff", |
||||
"0x06": "0x083c936cbaad5de592badc2e142fe4ebd6103921f7aa6aff8100000000000001", |
||||
"0x07": "0x57385019fe4e0939ca3f35c37cadfaf52fba5b1cdfb02def3866e8068bfa0101", |
||||
"0x08": "0x810ac878bd98428f6be8c6426ba9f9da09e3e33bf4fe10bfa3f8b12c92060101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60066101000a6101000a600055600660ff0a6101000a60015560066101010a6101000a60025560066101000a60ff0a600355600660ff0a60ff0a60045560066101010a60ff0a60055560066101000a6101010a600655600660ff0a6101010a60075560066101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_7": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_7Filler.json", |
||||
"sourceHash": "5f0497543f5bbfea20d19f43c7129d149e737241704676e072b63afde805be9a" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60076101000a6101000a600055600760ff0a6101000a60015560076101010a6101000a60025560076101000a60ff0a600355600760ff0a60ff0a60045560076101010a60ff0a60055560076101000a6101010a600655600760ff0a6101010a60075560076101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2ebc", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60076101000a6101000a600055600760ff0a6101000a60015560076101010a6101000a60025560076101000a60ff0a600355600760ff0a60ff0a60045560076101010a60ff0a60055560076101000a6101010a600655600760ff0a6101010a60075560076101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x8bb02654111ad8c60ad8af132283a81f455c33085514ff7f0000000000000001", |
||||
"0x04": "0xa8f75c129dbb8466d6703a2a0b8212131b3248d70e2478862ac40fe17485feff", |
||||
"0x05": "0x5fd4d2de580383ee59f5e800ddb3f1717ceae03aede19d3dec5e5a69918700ff", |
||||
"0x06": "0xc8624230b524b85d6340da48a5db20370fb921f7aa6aff810000000000000001", |
||||
"0x07": "0x287b58a5a13cd7f454468ca616c181712f5ed25433a7d5a894b6ced35f87ff01", |
||||
"0x08": "0x09930d11ac2804fa977bf951593c8dff8498779cc0cdc5812a4fba2f98870101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60076101000a6101000a600055600760ff0a6101000a60015560076101010a6101000a60025560076101000a60ff0a600355600760ff0a60ff0a60045560076101010a60ff0a60055560076101000a6101010a600655600760ff0a6101010a60075560076101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_8": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_8Filler.json", |
||||
"sourceHash": "15792a145929161f4b5174b8ac68de0118939c8190a930f37d644d5b713b6710" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x05f5e100", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60086101000a6101000a600055600860ff0a6101000a60015560086101010a6101000a60025560086101000a60ff0a600355600860ff0a60ff0a60045560086101010a60ff0a60055560086101000a6101010a600655600860ff0a6101010a60075560086101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x989680", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x9682a2", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60086101000a6101000a600055600860ff0a6101000a60015560086101010a6101000a60025560086101000a60ff0a600355600860ff0a60ff0a60045560086101010a60ff0a60055560086101000a6101010a600655600860ff0a6101010a60075560086101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x230041a0e7602d6e459609ed39081ec55c33085514ff7f000000000000000001", |
||||
"0x04": "0xc407d8a413ef9079ead457ed686a05ac81039c0cae0a7f6afd01e8461ff800ff", |
||||
"0x05": "0x67a397e0692385e4cd83853aabce220a94d449e885fa867e96d3ef5e180800ff", |
||||
"0x06": "0x70add926e753655d6d0ebe9c0f81368fb921f7aa6aff81000000000000000001", |
||||
"0x07": "0x0bdce80b8378e43f13d454b9d0a4c83cf311b8eaa45d5122cfd544a217f80101", |
||||
"0x08": "0x629c25790e1488998877a9ecdf0fb69637e77d8a4bdc1b46270093ba20080101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60086101000a6101000a600055600860ff0a6101000a60015560086101010a6101000a60025560086101000a60ff0a600355600860ff0a60ff0a60045560086101010a60ff0a60055560086101000a6101010a600655600860ff0a6101010a60075560086101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,55 @@ |
||||
{ |
||||
"expPowerOf256Of256_9": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256Of256_9Filler.json", |
||||
"sourceHash": "212ea9362b564faaa5a671ac3903679ec022f19adddf2ba1efa75226fdfde37e" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x989680", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60096101000a6101000a600055600960ff0a6101000a60015560096101010a6101000a60025560096101000a60ff0a600355600960ff0a60ff0a60045560096101010a60ff0a60055560096101000a6101010a600655600960ff0a6101010a60075560096101010a6101010a600855", |
||||
"data": "0x", |
||||
"gas": "0x0f4240", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x0d2e08", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60096101000a6101000a600055600960ff0a6101000a60015560096101010a6101000a60025560096101000a60ff0a600355600960ff0a60ff0a60045560096101010a60ff0a60055560096101000a6101010a600655600960ff0a6101010a60075560096101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x03": "0x53017d8eb210db2c8cd4a299079ec55c33085514ff7f00000000000000000001", |
||||
"0x04": "0x48be09b6c6ae2aa660f1972125cecbb1038b5d236ecf766ba786e2c4e887feff", |
||||
"0x05": "0x2e350d847ba73dc2099f83f532951c47269d9fd7e411b50bae00a9581f8900ff", |
||||
"0x06": "0x013ab9e1f0df89a184b4d07080b68fb921f7aa6aff8100000000000000000001", |
||||
"0x07": "0xf387ed41c1050f9da667f429a3e8fb30b61a55ede97d7b8acd797a03cd89ff01", |
||||
"0x08": "0x525696c22bb3ce00fd2e3f6bbb9b4ea1046a5e31fcff2fedf8f8c74d28890101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60096101000a6101000a600055600960ff0a6101000a60015560096101010a6101000a60025560096101000a60ff0a600355600960ff0a60ff0a60045560096101010a60ff0a60055560096101000a6101010a600655600960ff0a6101010a60075560096101010a6101010a600855", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@ |
||||
{ |
||||
"expPowerOf256_1": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256_1Filler.json", |
||||
"sourceHash": "0d7062f87c376d5496399d09973fd1d17d4e5812c3b44c5a16f35243e382fd64" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x60016101000a600055600160ff0a60015560016101010a600255", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x9be9", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101000a600055600160ff0a60015560016101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x0100", |
||||
"0x01": "0xff", |
||||
"0x02": "0x0101" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x60016101000a600055600160ff0a60015560016101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@ |
||||
{ |
||||
"expPowerOf256_10": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256_10Filler.json", |
||||
"sourceHash": "04051dd7b9d82fc286b3295f20d29f42f9e92cd282e588295c728f27f781d635" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600a6101000a600055600a60ff0a600155600a6101010a600255", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x9be9", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600a6101000a600055600a60ff0a600155600a6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x0100000000000000000000", |
||||
"0x01": "0xf62c88d104d1882cf601", |
||||
"0x02": "0x010a2d78d2fcd2782d0a01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600a6101000a600055600a60ff0a600155600a6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@ |
||||
{ |
||||
"expPowerOf256_11": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256_11Filler.json", |
||||
"sourceHash": "539fa78d77db2b2b4e5dadf17841ea9ccce92cee9e965e405ae3da8343d38383" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600b6101000a600055600b60ff0a600155600b6101010a600255", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x9be9", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600b6101000a600055600b60ff0a600155600b6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x010000000000000000000000", |
||||
"0x01": "0xf5365c4833ccb6a4c90aff", |
||||
"0x02": "0x010b37a64bcfcf4aa5370b01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600b6101000a600055600b60ff0a600155600b6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@ |
||||
{ |
||||
"expPowerOf256_12": { |
||||
"_info": { |
||||
"comment": "", |
||||
"filledwith": "testeth 1.4.0.dev0-56+commit.71414ae3", |
||||
"lllcversion": "Version: 0.4.25-develop.2018.5.30+commit.0a1a8bfb.Linux.g++", |
||||
"source": "src/VMTestsFiller/vmArithmeticTest/expPowerOf256_12Filler.json", |
||||
"sourceHash": "c837269f587b7fa487d63c649517f0c82e0ab3fbc87cf3209ee63214adb247fc" |
||||
}, |
||||
"callcreates": [], |
||||
"env": { |
||||
"currentCoinbase": "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", |
||||
"currentDifficulty": "0x0100", |
||||
"currentGasLimit": "0x0f4240", |
||||
"currentNumber": "0x00", |
||||
"currentTimestamp": "0x01" |
||||
}, |
||||
"exec": { |
||||
"address": "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", |
||||
"caller": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"code": "0x600c6101000a600055600c60ff0a600155600c6101010a600255", |
||||
"data": "0x", |
||||
"gas": "0x0186a0", |
||||
"gasPrice": "0x5af3107a4000", |
||||
"origin": "0xcd1722f2947def4cf144679da39c4c32bdc35681", |
||||
"value": "0x0de0b6b3a7640000" |
||||
}, |
||||
"gas": "0x9be9", |
||||
"logs": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", |
||||
"out": "0x", |
||||
"post": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600c6101000a600055600c60ff0a600155600c6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": { |
||||
"0x00": "0x01000000000000000000000000", |
||||
"0x01": "0xf44125ebeb98e9ee2441f401", |
||||
"0x02": "0x010c42ddf21b9f19efdc420c01" |
||||
} |
||||
} |
||||
}, |
||||
"pre": { |
||||
"0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6": { |
||||
"balance": "0x0de0b6b3a7640000", |
||||
"code": "0x600c6101000a600055600c60ff0a600155600c6101010a600255", |
||||
"nonce": "0x00", |
||||
"storage": {} |
||||
} |
||||
} |
||||
} |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue