forked from mirror/go-ethereum
core,eth: call frame tracing (#23087)
This change introduces 2 new optional methods; `enter()` and `exit()` for js tracers, and makes `step()` optiona. The two new methods are invoked when entering and exiting a call frame (but not invoked for the outermost scope, which has it's own methods). Currently these are the data fields passed to each of them: enter: type (opcode), from, to, input, gas, value exit: output, gasUsed, error The PR also comes with a re-write of the callTracer. As a backup we keep the previous tracing script under the name `callTracerLegacy`. Behaviour of both tracers are equivalent for the most part, although there are some small differences (improvements), where the new tracer is more correct / has more information.verkle/onleaf
parent
7ada89d4e6
commit
401354976b
File diff suppressed because one or more lines are too long
@ -0,0 +1,252 @@ |
||||
// Copyright 2017 The go-ethereum Authors
|
||||
// This file is part of the go-ethereum library.
|
||||
//
|
||||
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Lesser General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// The go-ethereum library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// callTracer is a full blown transaction tracer that extracts and reports all
|
||||
// the internal calls made by a transaction, along with any useful information.
|
||||
{ |
||||
// callstack is the current recursive call stack of the EVM execution.
|
||||
callstack: [{}], |
||||
|
||||
// descended tracks whether we've just descended from an outer transaction into
|
||||
// an inner call.
|
||||
descended: false, |
||||
|
||||
// step is invoked for every opcode that the VM executes.
|
||||
step: function(log, db) { |
||||
// Capture any errors immediately
|
||||
var error = log.getError(); |
||||
if (error !== undefined) { |
||||
this.fault(log, db); |
||||
return; |
||||
} |
||||
// We only care about system opcodes, faster if we pre-check once
|
||||
var syscall = (log.op.toNumber() & 0xf0) == 0xf0; |
||||
if (syscall) { |
||||
var op = log.op.toString(); |
||||
} |
||||
// If a new contract is being created, add to the call stack
|
||||
if (syscall && (op == 'CREATE' || op == "CREATE2")) { |
||||
var inOff = log.stack.peek(1).valueOf(); |
||||
var inEnd = inOff + log.stack.peek(2).valueOf(); |
||||
|
||||
// Assemble the internal call report and store for completion
|
||||
var call = { |
||||
type: op, |
||||
from: toHex(log.contract.getAddress()), |
||||
input: toHex(log.memory.slice(inOff, inEnd)), |
||||
gasIn: log.getGas(), |
||||
gasCost: log.getCost(), |
||||
value: '0x' + log.stack.peek(0).toString(16) |
||||
}; |
||||
this.callstack.push(call); |
||||
this.descended = true |
||||
return; |
||||
} |
||||
// If a contract is being self destructed, gather that as a subcall too
|
||||
if (syscall && op == 'SELFDESTRUCT') { |
||||
var left = this.callstack.length; |
||||
if (this.callstack[left-1].calls === undefined) { |
||||
this.callstack[left-1].calls = []; |
||||
} |
||||
this.callstack[left-1].calls.push({ |
||||
type: op, |
||||
from: toHex(log.contract.getAddress()), |
||||
to: toHex(toAddress(log.stack.peek(0).toString(16))), |
||||
gasIn: log.getGas(), |
||||
gasCost: log.getCost(), |
||||
value: '0x' + db.getBalance(log.contract.getAddress()).toString(16) |
||||
}); |
||||
return |
||||
} |
||||
// If a new method invocation is being done, add to the call stack
|
||||
if (syscall && (op == 'CALL' || op == 'CALLCODE' || op == 'DELEGATECALL' || op == 'STATICCALL')) { |
||||
// Skip any pre-compile invocations, those are just fancy opcodes
|
||||
var to = toAddress(log.stack.peek(1).toString(16)); |
||||
if (isPrecompiled(to)) { |
||||
return |
||||
} |
||||
var off = (op == 'DELEGATECALL' || op == 'STATICCALL' ? 0 : 1); |
||||
|
||||
var inOff = log.stack.peek(2 + off).valueOf(); |
||||
var inEnd = inOff + log.stack.peek(3 + off).valueOf(); |
||||
|
||||
// Assemble the internal call report and store for completion
|
||||
var call = { |
||||
type: op, |
||||
from: toHex(log.contract.getAddress()), |
||||
to: toHex(to), |
||||
input: toHex(log.memory.slice(inOff, inEnd)), |
||||
gasIn: log.getGas(), |
||||
gasCost: log.getCost(), |
||||
outOff: log.stack.peek(4 + off).valueOf(), |
||||
outLen: log.stack.peek(5 + off).valueOf() |
||||
}; |
||||
if (op != 'DELEGATECALL' && op != 'STATICCALL') { |
||||
call.value = '0x' + log.stack.peek(2).toString(16); |
||||
} |
||||
this.callstack.push(call); |
||||
this.descended = true |
||||
return; |
||||
} |
||||
// If we've just descended into an inner call, retrieve it's true allowance. We
|
||||
// need to extract if from within the call as there may be funky gas dynamics
|
||||
// with regard to requested and actually given gas (2300 stipend, 63/64 rule).
|
||||
if (this.descended) { |
||||
if (log.getDepth() >= this.callstack.length) { |
||||
this.callstack[this.callstack.length - 1].gas = log.getGas(); |
||||
} else { |
||||
// TODO(karalabe): The call was made to a plain account. We currently don't
|
||||
// have access to the true gas amount inside the call and so any amount will
|
||||
// mostly be wrong since it depends on a lot of input args. Skip gas for now.
|
||||
} |
||||
this.descended = false; |
||||
} |
||||
// If an existing call is returning, pop off the call stack
|
||||
if (syscall && op == 'REVERT') { |
||||
this.callstack[this.callstack.length - 1].error = "execution reverted"; |
||||
return; |
||||
} |
||||
if (log.getDepth() == this.callstack.length - 1) { |
||||
// Pop off the last call and get the execution results
|
||||
var call = this.callstack.pop(); |
||||
|
||||
if (call.type == 'CREATE' || call.type == "CREATE2") { |
||||
// If the call was a CREATE, retrieve the contract address and output code
|
||||
call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost - log.getGas()).toString(16); |
||||
delete call.gasIn; delete call.gasCost; |
||||
|
||||
var ret = log.stack.peek(0); |
||||
if (!ret.equals(0)) { |
||||
call.to = toHex(toAddress(ret.toString(16))); |
||||
call.output = toHex(db.getCode(toAddress(ret.toString(16)))); |
||||
} else if (call.error === undefined) { |
||||
call.error = "internal failure"; // TODO(karalabe): surface these faults somehow
|
||||
} |
||||
} else { |
||||
// If the call was a contract call, retrieve the gas usage and output
|
||||
if (call.gas !== undefined) { |
||||
call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost + call.gas - log.getGas()).toString(16); |
||||
} |
||||
var ret = log.stack.peek(0); |
||||
if (!ret.equals(0)) { |
||||
call.output = toHex(log.memory.slice(call.outOff, call.outOff + call.outLen)); |
||||
} else if (call.error === undefined) { |
||||
call.error = "internal failure"; // TODO(karalabe): surface these faults somehow
|
||||
} |
||||
delete call.gasIn; delete call.gasCost; |
||||
delete call.outOff; delete call.outLen; |
||||
} |
||||
if (call.gas !== undefined) { |
||||
call.gas = '0x' + bigInt(call.gas).toString(16); |
||||
} |
||||
// Inject the call into the previous one
|
||||
var left = this.callstack.length; |
||||
if (this.callstack[left-1].calls === undefined) { |
||||
this.callstack[left-1].calls = []; |
||||
} |
||||
this.callstack[left-1].calls.push(call); |
||||
} |
||||
}, |
||||
|
||||
// fault is invoked when the actual execution of an opcode fails.
|
||||
fault: function(log, db) { |
||||
// If the topmost call already reverted, don't handle the additional fault again
|
||||
if (this.callstack[this.callstack.length - 1].error !== undefined) { |
||||
return; |
||||
} |
||||
// Pop off the just failed call
|
||||
var call = this.callstack.pop(); |
||||
call.error = log.getError(); |
||||
|
||||
// Consume all available gas and clean any leftovers
|
||||
if (call.gas !== undefined) { |
||||
call.gas = '0x' + bigInt(call.gas).toString(16); |
||||
call.gasUsed = call.gas |
||||
} |
||||
delete call.gasIn; delete call.gasCost; |
||||
delete call.outOff; delete call.outLen; |
||||
|
||||
// Flatten the failed call into its parent
|
||||
var left = this.callstack.length; |
||||
if (left > 0) { |
||||
if (this.callstack[left-1].calls === undefined) { |
||||
this.callstack[left-1].calls = []; |
||||
} |
||||
this.callstack[left-1].calls.push(call); |
||||
return; |
||||
} |
||||
// Last call failed too, leave it in the stack
|
||||
this.callstack.push(call); |
||||
}, |
||||
|
||||
// result is invoked when all the opcodes have been iterated over and returns
|
||||
// the final result of the tracing.
|
||||
result: function(ctx, db) { |
||||
var result = { |
||||
type: ctx.type, |
||||
from: toHex(ctx.from), |
||||
to: toHex(ctx.to), |
||||
value: '0x' + ctx.value.toString(16), |
||||
gas: '0x' + bigInt(ctx.gas).toString(16), |
||||
gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), |
||||
input: toHex(ctx.input), |
||||
output: toHex(ctx.output), |
||||
time: ctx.time, |
||||
}; |
||||
if (this.callstack[0].calls !== undefined) { |
||||
result.calls = this.callstack[0].calls; |
||||
} |
||||
if (this.callstack[0].error !== undefined) { |
||||
result.error = this.callstack[0].error; |
||||
} else if (ctx.error !== undefined) { |
||||
result.error = ctx.error; |
||||
} |
||||
if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { |
||||
delete result.output; |
||||
} |
||||
return this.finalize(result); |
||||
}, |
||||
|
||||
// finalize recreates a call object using the final desired field oder for json
|
||||
// serialization. This is a nicety feature to pass meaningfully ordered results
|
||||
// to users who don't interpret it, just display it.
|
||||
finalize: function(call) { |
||||
var sorted = { |
||||
type: call.type, |
||||
from: call.from, |
||||
to: call.to, |
||||
value: call.value, |
||||
gas: call.gas, |
||||
gasUsed: call.gasUsed, |
||||
input: call.input, |
||||
output: call.output, |
||||
error: call.error, |
||||
time: call.time, |
||||
calls: call.calls, |
||||
} |
||||
for (var key in sorted) { |
||||
if (sorted[key] === undefined) { |
||||
delete sorted[key]; |
||||
} |
||||
} |
||||
if (sorted.calls !== undefined) { |
||||
for (var i=0; i<sorted.calls.length; i++) { |
||||
sorted.calls[i] = this.finalize(sorted.calls[i]); |
||||
} |
||||
} |
||||
return sorted; |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,63 @@ |
||||
{ |
||||
"genesis": { |
||||
"difficulty": "117067574", |
||||
"extraData": "0xd783010502846765746887676f312e372e33856c696e7578", |
||||
"gasLimit": "4712380", |
||||
"hash": "0xe05db05eeb3f288041ecb10a787df121c0ed69499355716e17c307de313a4486", |
||||
"miner": "0x0c062b329265c965deef1eede55183b3acb8f611", |
||||
"mixHash": "0xb669ae39118a53d2c65fd3b1e1d3850dd3f8c6842030698ed846a2762d68b61d", |
||||
"nonce": "0x2b469722b8e28c45", |
||||
"number": "24973", |
||||
"stateRoot": "0x532a5c3f75453a696428db078e32ae283c85cb97e4d8560dbdf022adac6df369", |
||||
"timestamp": "1479891145", |
||||
"totalDifficulty": "1892250259406", |
||||
"alloc": { |
||||
"0x6c06b16512b332e6cd8293a2974872674716ce18": { |
||||
"balance": "0x0", |
||||
"nonce": "1", |
||||
"code": "0x60606040526000357c0100000000000000000000000000000000000000000000000000000000900480632e1a7d4d146036575b6000565b34600057604e60048080359060200190919050506050565b005b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051809050600060405180830381858888f19350505050505b5056", |
||||
"storage": {} |
||||
}, |
||||
"0x66fdfd05e46126a07465ad24e40cc0597bc1ef31": { |
||||
"balance": "0x229ebbb36c3e0f20", |
||||
"nonce": "3", |
||||
"code": "0x", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"chainId": 3, |
||||
"homesteadBlock": 0, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"byzantiumBlock": 1700000, |
||||
"constantinopleBlock": 4230000, |
||||
"petersburgBlock": 4939394, |
||||
"istanbulBlock": 6485846, |
||||
"muirGlacierBlock": 7117117, |
||||
"ethash": {} |
||||
} |
||||
}, |
||||
"context": { |
||||
"number": "24974", |
||||
"difficulty": "117067574", |
||||
"timestamp": "1479891162", |
||||
"gasLimit": "4712388", |
||||
"miner": "0xc822ef32e6d26e170b70cf761e204c1806265914" |
||||
}, |
||||
"input": "0xf889038504a81557008301f97e946c06b16512b332e6cd8293a2974872674716ce1880a42e1a7d4d00000000000000000000000000000000000000000000000014d1120d7b1600002aa0e2a6558040c5d72bc59f2fb62a38993a314c849cd22fb393018d2c5af3112095a01bdb6d7ba32263ccc2ecc880d38c49d9f0c5a72d8b7908e3122b31356d349745", |
||||
"result": { |
||||
"type": "CALL", |
||||
"from": "0x66fdfd05e46126a07465ad24e40cc0597bc1ef31", |
||||
"to": "0x6c06b16512b332e6cd8293a2974872674716ce18", |
||||
"value": "0x0", |
||||
"gas": "0x1a466", |
||||
"gasUsed": "0x1dc6", |
||||
"input": "0x2e1a7d4d00000000000000000000000000000000000000000000000014d1120d7b160000", |
||||
"output": "0x", |
||||
"calls": [] |
||||
} |
||||
} |
@ -0,0 +1,75 @@ |
||||
{ |
||||
"context": { |
||||
"difficulty": "3502894804", |
||||
"gasLimit": "4722976", |
||||
"miner": "0x1585936b53834b021f68cc13eeefdec2efc8e724", |
||||
"number": "2289806", |
||||
"timestamp": "1513601314" |
||||
}, |
||||
"genesis": { |
||||
"alloc": { |
||||
"0x0024f658a46fbb89d8ac105e98d7ac7cbbaf27c5": { |
||||
"balance": "0x0", |
||||
"code": "0x", |
||||
"nonce": "22", |
||||
"storage": {} |
||||
}, |
||||
"0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe": { |
||||
"balance": "0x4d87094125a369d9bd5", |
||||
"code": "0x61deadff", |
||||
"nonce": "1", |
||||
"storage": {} |
||||
}, |
||||
"0xb436ba50d378d4bbc8660d312a13df6af6e89dfb": { |
||||
"balance": "0x1780d77678137ac1b775", |
||||
"code": "0x", |
||||
"nonce": "29072", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"byzantiumBlock": 1700000, |
||||
"chainId": 3, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"ethash": {}, |
||||
"homesteadBlock": 0 |
||||
}, |
||||
"difficulty": "3509749784", |
||||
"extraData": "0x4554482e45544846414e532e4f52472d4641313738394444", |
||||
"gasLimit": "4727564", |
||||
"hash": "0x609948ac3bd3c00b7736b933248891d6c901ee28f066241bddb28f4e00a9f440", |
||||
"miner": "0xbbf5029fd710d227630c8b7d338051b8e76d50b3", |
||||
"mixHash": "0xb131e4507c93c7377de00e7c271bf409ec7492767142ff0f45c882f8068c2ada", |
||||
"nonce": "0x4eb12e19c16d43da", |
||||
"number": "2289805", |
||||
"stateRoot": "0xc7f10f352bff82fac3c2999d3085093d12652e19c7fd32591de49dc5d91b4f1f", |
||||
"timestamp": "1513601261", |
||||
"totalDifficulty": "7143276353481064" |
||||
}, |
||||
"input": "0xf88b8271908506fc23ac0083015f90943b873a919aa0512d5a0f09e6dcceaa4a6727fafe80a463e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c52aa0bdce0b59e8761854e857fe64015f06dd08a4fbb7624f6094893a79a72e6ad6bea01d9dde033cff7bb235a3163f348a6d7ab8d6b52bc0963a95b91612e40ca766a4", |
||||
"result": { |
||||
"calls": [ |
||||
{ |
||||
"from": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"gas": "0x0", |
||||
"gasUsed": "0x0", |
||||
"input": "0x", |
||||
"to": "0x000000000000000000000000000000000000dEaD", |
||||
"type": "SELFDESTRUCT", |
||||
"value": "0x4d87094125a369d9bd5" |
||||
} |
||||
], |
||||
"from": "0xb436ba50d378d4bbc8660d312a13df6af6e89dfb", |
||||
"gas": "0x10738", |
||||
"gasUsed": "0x7533", |
||||
"input": "0x63e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c5", |
||||
"output": "0x", |
||||
"to": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"type": "CALL", |
||||
"value": "0x0" |
||||
} |
||||
} |
@ -0,0 +1,80 @@ |
||||
{ |
||||
"context": { |
||||
"difficulty": "3502894804", |
||||
"gasLimit": "4722976", |
||||
"miner": "0x1585936b53834b021f68cc13eeefdec2efc8e724", |
||||
"number": "2289806", |
||||
"timestamp": "1513601314" |
||||
}, |
||||
"genesis": { |
||||
"alloc": { |
||||
"0x0024f658a46fbb89d8ac105e98d7ac7cbbaf27c5": { |
||||
"balance": "0x0", |
||||
"code": "0x", |
||||
"nonce": "22", |
||||
"storage": {} |
||||
}, |
||||
"0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe": { |
||||
"balance": "0x4d87094125a369d9bd5", |
||||
"code": "0x606060405236156100935763ffffffff60e060020a60003504166311ee8382811461009c57806313af4035146100be5780631f5e8f4c146100ee57806324daddc5146101125780634921a91a1461013b57806363e4bff414610157578063764978f91461017f578063893d20e8146101a1578063ba40aaa1146101cd578063cebc9a82146101f4578063e177246e14610216575b61009a5b5b565b005b34156100a457fe5b6100ac61023d565b60408051918252519081900360200190f35b34156100c657fe5b6100da600160a060020a0360043516610244565b604080519115158252519081900360200190f35b34156100f657fe5b6100da610307565b604080519115158252519081900360200190f35b341561011a57fe5b6100da6004351515610318565b604080519115158252519081900360200190f35b6100da6103d6565b604080519115158252519081900360200190f35b6100da600160a060020a0360043516610420565b604080519115158252519081900360200190f35b341561018757fe5b6100ac61046c565b60408051918252519081900360200190f35b34156101a957fe5b6101b1610473565b60408051600160a060020a039092168252519081900360200190f35b34156101d557fe5b6100da600435610483565b604080519115158252519081900360200190f35b34156101fc57fe5b6100ac61050d565b60408051918252519081900360200190f35b341561021e57fe5b6100da600435610514565b604080519115158252519081900360200190f35b6003545b90565b60006000610250610473565b600160a060020a031633600160a060020a03161415156102705760006000fd5b600160a060020a03831615156102865760006000fd5b50600054600160a060020a0390811690831681146102fb57604051600160a060020a0380851691908316907ffcf23a92150d56e85e3a3d33b357493246e55783095eb6a733eb8439ffc752c890600090a360008054600160a060020a031916600160a060020a03851617905560019150610300565b600091505b5b50919050565b60005460a060020a900460ff165b90565b60006000610324610473565b600160a060020a031633600160a060020a03161415156103445760006000fd5b5060005460a060020a900460ff16801515831515146102fb576000546040805160a060020a90920460ff1615158252841515602083015280517fe6cd46a119083b86efc6884b970bfa30c1708f53ba57b86716f15b2f4551a9539281900390910190a16000805460a060020a60ff02191660a060020a8515150217905560019150610300565b600091505b5b50919050565b60006103e0610307565b801561040557506103ef610473565b600160a060020a031633600160a060020a031614155b156104105760006000fd5b610419336105a0565b90505b5b90565b600061042a610307565b801561044f5750610439610473565b600160a060020a031633600160a060020a031614155b1561045a5760006000fd5b610463826105a0565b90505b5b919050565b6001545b90565b600054600160a060020a03165b90565b6000600061048f610473565b600160a060020a031633600160a060020a03161415156104af5760006000fd5b506001548281146102fb57604080518281526020810185905281517f79a3746dde45672c9e8ab3644b8bb9c399a103da2dc94b56ba09777330a83509929181900390910190a160018381559150610300565b600091505b5b50919050565b6002545b90565b60006000610520610473565b600160a060020a031633600160a060020a03161415156105405760006000fd5b506002548281146102fb57604080518281526020810185905281517ff6991a728965fedd6e927fdf16bdad42d8995970b4b31b8a2bf88767516e2494929181900390910190a1600283905560019150610300565b600091505b5b50919050565b60006000426105ad61023d565b116102fb576105c46105bd61050d565b4201610652565b6105cc61046c565b604051909150600160a060020a038416908290600081818185876187965a03f1925050501561063d57604080518281529051600160a060020a038516917f9bca65ce52fdef8a470977b51f247a2295123a4807dfa9e502edf0d30722da3b919081900360200190a260019150610300565b6102fb42610652565b5b600091505b50919050565b60038190555b505600a165627a7a72305820f3c973c8b7ed1f62000b6701bd5b708469e19d0f1d73fde378a56c07fd0b19090029", |
||||
"nonce": "1", |
||||
"storage": { |
||||
"0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000001b436ba50d378d4bbc8660d312a13df6af6e89dfb", |
||||
"0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000006f05b59d3b20000", |
||||
"0x0000000000000000000000000000000000000000000000000000000000000002": "0x000000000000000000000000000000000000000000000000000000000000003c", |
||||
"0x0000000000000000000000000000000000000000000000000000000000000003": "0x000000000000000000000000000000000000000000000000000000005a37b834" |
||||
} |
||||
}, |
||||
"0xb436ba50d378d4bbc8660d312a13df6af6e89dfb": { |
||||
"balance": "0x1780d77678137ac1b775", |
||||
"code": "0x", |
||||
"nonce": "29072", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"byzantiumBlock": 1700000, |
||||
"chainId": 3, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"ethash": {}, |
||||
"homesteadBlock": 0 |
||||
}, |
||||
"difficulty": "3509749784", |
||||
"extraData": "0x4554482e45544846414e532e4f52472d4641313738394444", |
||||
"gasLimit": "4727564", |
||||
"hash": "0x609948ac3bd3c00b7736b933248891d6c901ee28f066241bddb28f4e00a9f440", |
||||
"miner": "0xbbf5029fd710d227630c8b7d338051b8e76d50b3", |
||||
"mixHash": "0xb131e4507c93c7377de00e7c271bf409ec7492767142ff0f45c882f8068c2ada", |
||||
"nonce": "0x4eb12e19c16d43da", |
||||
"number": "2289805", |
||||
"stateRoot": "0xc7f10f352bff82fac3c2999d3085093d12652e19c7fd32591de49dc5d91b4f1f", |
||||
"timestamp": "1513601261", |
||||
"totalDifficulty": "7143276353481064" |
||||
}, |
||||
"input": "0xf88b8271908506fc23ac0083015f90943b873a919aa0512d5a0f09e6dcceaa4a6727fafe80a463e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c52aa0bdce0b59e8761854e857fe64015f06dd08a4fbb7624f6094893a79a72e6ad6bea01d9dde033cff7bb235a3163f348a6d7ab8d6b52bc0963a95b91612e40ca766a4", |
||||
"result": { |
||||
"calls": [ |
||||
{ |
||||
"from": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"gas": "0x6d05", |
||||
"gasUsed": "0x0", |
||||
"input": "0x", |
||||
"to": "0x0024f658a46fbb89d8ac105e98d7ac7cbbaf27c5", |
||||
"type": "CALL", |
||||
"value": "0x6f05b59d3b20000" |
||||
} |
||||
], |
||||
"from": "0xb436ba50d378d4bbc8660d312a13df6af6e89dfb", |
||||
"gas": "0x10738", |
||||
"gasUsed": "0x3ef9", |
||||
"input": "0x63e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c5", |
||||
"output": "0x0000000000000000000000000000000000000000000000000000000000000001", |
||||
"to": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"type": "CALL", |
||||
"value": "0x0" |
||||
} |
||||
} |
@ -0,0 +1,58 @@ |
||||
{ |
||||
"context": { |
||||
"difficulty": "3755480783", |
||||
"gasLimit": "5401723", |
||||
"miner": "0xd049bfd667cb46aa3ef5df0da3e57db3be39e511", |
||||
"number": "2294702", |
||||
"timestamp": "1513676146" |
||||
}, |
||||
"genesis": { |
||||
"alloc": { |
||||
"0x13e4acefe6a6700604929946e70e6443e4e73447": { |
||||
"balance": "0xcf3e0938579f000", |
||||
"code": "0x", |
||||
"nonce": "9", |
||||
"storage": {} |
||||
}, |
||||
"0x7dc9c9730689ff0b0fd506c67db815f12d90a448": { |
||||
"balance": "0x0", |
||||
"code": "0x", |
||||
"nonce": "0", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"byzantiumBlock": 1700000, |
||||
"chainId": 3, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"ethash": {}, |
||||
"homesteadBlock": 0 |
||||
}, |
||||
"difficulty": "3757315409", |
||||
"extraData": "0x566961425443", |
||||
"gasLimit": "5406414", |
||||
"hash": "0xae107f592eebdd9ff8d6ba00363676096e6afb0e1007a7d3d0af88173077378d", |
||||
"miner": "0xd049bfd667cb46aa3ef5df0da3e57db3be39e511", |
||||
"mixHash": "0xc927aa05a38bc3de864e95c33b3ae559d3f39c4ccd51cef6f113f9c50ba0caf1", |
||||
"nonce": "0x93363bbd2c95f410", |
||||
"number": "2294701", |
||||
"stateRoot": "0x6b6737d5bde8058990483e915866bd1578014baeff57bd5e4ed228a2bfad635c", |
||||
"timestamp": "1513676127", |
||||
"totalDifficulty": "7160808139332585" |
||||
}, |
||||
"input": "0xf907ef098504e3b29200830897be8080b9079c606060405260405160208061077c83398101604052808051906020019091905050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415151561007d57600080fd5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600460006101000a81548160ff02191690831515021790555050610653806101296000396000f300606060405260043610610083576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806305e4382a146100855780631c02708d146100ae5780632e1a7d4d146100c35780635114cb52146100e6578063a37dda2c146100fe578063ae200e7914610153578063b5769f70146101a8575b005b341561009057600080fd5b6100986101d1565b6040518082815260200191505060405180910390f35b34156100b957600080fd5b6100c16101d7565b005b34156100ce57600080fd5b6100e460048080359060200190919050506102eb565b005b6100fc6004808035906020019091905050610513565b005b341561010957600080fd5b6101116105d6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561015e57600080fd5b6101666105fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101b357600080fd5b6101bb610621565b6040518082815260200191505060405180910390f35b60025481565b60011515600460009054906101000a900460ff1615151415156101f957600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806102a15750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15156102ac57600080fd5b6000600460006101000a81548160ff0219169083151502179055506003543073ffffffffffffffffffffffffffffffffffffffff163103600281905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806103935750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b151561039e57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561048357600060025411801561040757506002548111155b151561041257600080fd5b80600254036002819055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561047e57600080fd5b610510565b600060035411801561049757506003548111155b15156104a257600080fd5b8060035403600381905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561050f57600080fd5b5b50565b60011515600460009054906101000a900460ff16151514151561053557600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614801561059657506003548160035401115b80156105bd575080600354013073ffffffffffffffffffffffffffffffffffffffff163110155b15156105c857600080fd5b806003540160038190555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600354815600a165627a7a72305820c3b849e8440987ce43eae3097b77672a69234d516351368b03fe5b7de03807910029000000000000000000000000c65e620a3a55451316168d57e268f5702ef56a1129a01060f46676a5dff6f407f0f51eb6f37f5c8c54e238c70221e18e65fc29d3ea65a0557b01c50ff4ffaac8ed6e5d31237a4ecbac843ab1bfe8bb0165a0060df7c54f", |
||||
"result": { |
||||
"from": "0x13e4acefe6a6700604929946e70e6443e4e73447", |
||||
"gas": "0x5e106", |
||||
"gasUsed": "0x5e106", |
||||
"input": "0x606060405260405160208061077c83398101604052808051906020019091905050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415151561007d57600080fd5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600460006101000a81548160ff02191690831515021790555050610653806101296000396000f300606060405260043610610083576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806305e4382a146100855780631c02708d146100ae5780632e1a7d4d146100c35780635114cb52146100e6578063a37dda2c146100fe578063ae200e7914610153578063b5769f70146101a8575b005b341561009057600080fd5b6100986101d1565b6040518082815260200191505060405180910390f35b34156100b957600080fd5b6100c16101d7565b005b34156100ce57600080fd5b6100e460048080359060200190919050506102eb565b005b6100fc6004808035906020019091905050610513565b005b341561010957600080fd5b6101116105d6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561015e57600080fd5b6101666105fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101b357600080fd5b6101bb610621565b6040518082815260200191505060405180910390f35b60025481565b60011515600460009054906101000a900460ff1615151415156101f957600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806102a15750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15156102ac57600080fd5b6000600460006101000a81548160ff0219169083151502179055506003543073ffffffffffffffffffffffffffffffffffffffff163103600281905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806103935750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b151561039e57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561048357600060025411801561040757506002548111155b151561041257600080fd5b80600254036002819055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561047e57600080fd5b610510565b600060035411801561049757506003548111155b15156104a257600080fd5b8060035403600381905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561050f57600080fd5b5b50565b60011515600460009054906101000a900460ff16151514151561053557600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614801561059657506003548160035401115b80156105bd575080600354013073ffffffffffffffffffffffffffffffffffffffff163110155b15156105c857600080fd5b806003540160038190555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600354815600a165627a7a72305820c3b849e8440987ce43eae3097b77672a69234d516351368b03fe5b7de03807910029000000000000000000000000c65e620a3a55451316168d57e268f5702ef56a11", |
||||
"output": "0x606060405260043610610083576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806305e4382a146100855780631c02708d146100ae5780632e1a7d4d146100c35780635114cb52146100e6578063a37dda2c146100fe578063ae200e7914610153578063b5769f70146101a8575b005b341561009057600080fd5b6100986101d1565b6040518082815260200191505060405180910390f35b34156100b957600080fd5b6100c16101d7565b005b34156100ce57600080fd5b6100e460048080359060200190919050506102eb565b005b6100fc6004808035906020019091905050610513565b005b341561010957600080fd5b6101116105d6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561015e57600080fd5b6101666105fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101b357600080fd5b6101bb610621565b6040518082815260200191505060405180910390f35b60025481565b60011515600460009054906101000a900460ff1615151415156101f957600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806102a15750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15156102ac57600080fd5b6000600460006101000a81548160ff0219169083151502179055506003543073ffffffffffffffffffffffffffffffffffffffff163103600281905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806103935750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b151561039e57600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561048357600060025411801561040757506002548111155b151561041257600080fd5b80600254036002819055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561047e57600080fd5b610510565b600060035411801561049757506003548111155b15156104a257600080fd5b8060035403600381905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561050f57600080fd5b5b50565b60011515600460009054906101000a900460ff16151514151561053557600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614801561059657506003548160035401115b80156105bd575080600354013073ffffffffffffffffffffffffffffffffffffffff163110155b15156105c857600080fd5b806003540160038190555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600354815600a165627a7a72305820c3b849e8440987ce43eae3097b77672a69234d516351368b03fe5b7de03807910029", |
||||
"to": "0x7dc9c9730689ff0b0fd506c67db815f12d90a448", |
||||
"type": "CREATE", |
||||
"value": "0x0" |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,58 @@ |
||||
{ |
||||
"context": { |
||||
"difficulty": "3665057456", |
||||
"gasLimit": "5232723", |
||||
"miner": "0xf4d8e706cfb25c0decbbdd4d2e2cc10c66376a3f", |
||||
"number": "2294501", |
||||
"timestamp": "1513673601" |
||||
}, |
||||
"genesis": { |
||||
"alloc": { |
||||
"0x0f6cef2b7fbb504782e35aa82a2207e816a2b7a9": { |
||||
"balance": "0x2a3fc32bcc019283", |
||||
"code": "0x", |
||||
"nonce": "10", |
||||
"storage": {} |
||||
}, |
||||
"0xabbcd5b340c80b5f1c0545c04c987b87310296ae": { |
||||
"balance": "0x0", |
||||
"code": "0x606060405236156100755763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416632d0335ab811461007a578063548db174146100ab5780637f649783146100fc578063b092145e1461014d578063c3f44c0a14610186578063c47cf5de14610203575b600080fd5b341561008557600080fd5b610099600160a060020a0360043516610270565b60405190815260200160405180910390f35b34156100b657600080fd5b6100fa600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061028f95505050505050565b005b341561010757600080fd5b6100fa600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061029e95505050505050565b005b341561015857600080fd5b610172600160a060020a03600435811690602435166102ad565b604051901515815260200160405180910390f35b341561019157600080fd5b6100fa6004803560ff1690602480359160443591606435600160a060020a0316919060a49060843590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965050509235600160a060020a031692506102cd915050565b005b341561020e57600080fd5b61025460046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061056a95505050505050565b604051600160a060020a03909116815260200160405180910390f35b600160a060020a0381166000908152602081905260409020545b919050565b61029a816000610594565b5b50565b61029a816001610594565b5b50565b600160209081526000928352604080842090915290825290205460ff1681565b60008080600160a060020a038416158061030d5750600160a060020a038085166000908152600160209081526040808320339094168352929052205460ff165b151561031857600080fd5b6103218561056a565b600160a060020a038116600090815260208190526040808220549295507f19000000000000000000000000000000000000000000000000000000000000009230918891908b908b90517fff000000000000000000000000000000000000000000000000000000000000008089168252871660018201526c01000000000000000000000000600160a060020a038088168202600284015286811682026016840152602a8301869052841602604a820152605e810182805190602001908083835b6020831061040057805182525b601f1990920191602091820191016103e0565b6001836020036101000a0380198251168184511617909252505050919091019850604097505050505050505051809103902091506001828a8a8a6040516000815260200160405260006040516020015260405193845260ff90921660208085019190915260408085019290925260608401929092526080909201915160208103908084039060008661646e5a03f1151561049957600080fd5b5050602060405103519050600160a060020a03838116908216146104bc57600080fd5b600160a060020a0380841660009081526020819052604090819020805460010190559087169086905180828051906020019080838360005b8381101561050d5780820151818401525b6020016104f4565b50505050905090810190601f16801561053a5780820380516001836020036101000a031916815260200191505b5091505060006040518083038160008661646e5a03f1915050151561055e57600080fd5b5b505050505050505050565b600060248251101561057e5750600061028a565b600160a060020a0360248301511690505b919050565b60005b825181101561060157600160a060020a033316600090815260016020526040812083918584815181106105c657fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff19169115159190911790555b600101610597565b5b5050505600a165627a7a723058200027e8b695e9d2dea9f3629519022a69f3a1d23055ce86406e686ea54f31ee9c0029", |
||||
"nonce": "1", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"byzantiumBlock": 1700000, |
||||
"chainId": 3, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"ethash": {}, |
||||
"homesteadBlock": 0 |
||||
}, |
||||
"difficulty": "3672229776", |
||||
"extraData": "0x4554482e45544846414e532e4f52472d4641313738394444", |
||||
"gasLimit": "5227619", |
||||
"hash": "0xa07b3d6c6bf63f5f981016db9f2d1d93033833f2c17e8bf7209e85f1faf08076", |
||||
"miner": "0xbbf5029fd710d227630c8b7d338051b8e76d50b3", |
||||
"mixHash": "0x806e151ce2817be922e93e8d5921fa0f0d0fd213d6b2b9a3fa17458e74a163d0", |
||||
"nonce": "0xbc5d43adc2c30c7d", |
||||
"number": "2294500", |
||||
"stateRoot": "0xca645b335888352ef9d8b1ef083e9019648180b259026572e3139717270de97d", |
||||
"timestamp": "1513673552", |
||||
"totalDifficulty": "7160066586979149" |
||||
}, |
||||
"input": "0xf9018b0a8505d21dba00832dc6c094abbcd5b340c80b5f1c0545c04c987b87310296ae80b9012473b40a5c000000000000000000000000400de2e016bda6577407dfc379faba9899bc73ef0000000000000000000000002cc31912b2b0f3075a87b3640923d45a26cef3ee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d79d8e6c7265636f76657279416464726573730000000000000000000000000000000000000000000000000000000000383e3ec32dc0f66d8fe60dbdc2f6815bdf73a988383e3ec32dc0f66d8fe60dbdc2f6815bdf73a988000000000000000000000000000000000000000000000000000000000000000000000000000000001ba0fd659d76a4edbd2a823e324c93f78ad6803b30ff4a9c8bce71ba82798975c70ca06571eecc0b765688ec6c78942c5ee8b585e00988c0141b518287e9be919bc48a", |
||||
"result": { |
||||
"error": "execution reverted", |
||||
"from": "0x0f6cef2b7fbb504782e35aa82a2207e816a2b7a9", |
||||
"gas": "0x2d55e8", |
||||
"gasUsed": "0xc3", |
||||
"input": "0x73b40a5c000000000000000000000000400de2e016bda6577407dfc379faba9899bc73ef0000000000000000000000002cc31912b2b0f3075a87b3640923d45a26cef3ee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d79d8e6c7265636f76657279416464726573730000000000000000000000000000000000000000000000000000000000383e3ec32dc0f66d8fe60dbdc2f6815bdf73a988383e3ec32dc0f66d8fe60dbdc2f6815bdf73a98800000000000000000000000000000000000000000000000000000000000000000000000000000000", |
||||
"to": "0xabbcd5b340c80b5f1c0545c04c987b87310296ae", |
||||
"type": "CALL", |
||||
"value": "0x0" |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,73 @@ |
||||
{ |
||||
"context": { |
||||
"difficulty": "3502894804", |
||||
"gasLimit": "4722976", |
||||
"miner": "0x1585936b53834b021f68cc13eeefdec2efc8e724", |
||||
"number": "2289806", |
||||
"timestamp": "1513601314" |
||||
}, |
||||
"genesis": { |
||||
"alloc": { |
||||
"0x0024f658a46fbb89d8ac105e98d7ac7cbbaf27c5": { |
||||
"balance": "0x0", |
||||
"code": "0x", |
||||
"nonce": "22", |
||||
"storage": {} |
||||
}, |
||||
"0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe": { |
||||
"balance": "0x4d87094125a369d9bd5", |
||||
"code": "0x61deadff", |
||||
"nonce": "1", |
||||
"storage": {} |
||||
}, |
||||
"0xb436ba50d378d4bbc8660d312a13df6af6e89dfb": { |
||||
"balance": "0x1780d77678137ac1b775", |
||||
"code": "0x", |
||||
"nonce": "29072", |
||||
"storage": {} |
||||
} |
||||
}, |
||||
"config": { |
||||
"byzantiumBlock": 1700000, |
||||
"chainId": 3, |
||||
"daoForkSupport": true, |
||||
"eip150Block": 0, |
||||
"eip150Hash": "0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d", |
||||
"eip155Block": 10, |
||||
"eip158Block": 10, |
||||
"ethash": {}, |
||||
"homesteadBlock": 0 |
||||
}, |
||||
"difficulty": "3509749784", |
||||
"extraData": "0x4554482e45544846414e532e4f52472d4641313738394444", |
||||
"gasLimit": "4727564", |
||||
"hash": "0x609948ac3bd3c00b7736b933248891d6c901ee28f066241bddb28f4e00a9f440", |
||||
"miner": "0xbbf5029fd710d227630c8b7d338051b8e76d50b3", |
||||
"mixHash": "0xb131e4507c93c7377de00e7c271bf409ec7492767142ff0f45c882f8068c2ada", |
||||
"nonce": "0x4eb12e19c16d43da", |
||||
"number": "2289805", |
||||
"stateRoot": "0xc7f10f352bff82fac3c2999d3085093d12652e19c7fd32591de49dc5d91b4f1f", |
||||
"timestamp": "1513601261", |
||||
"totalDifficulty": "7143276353481064" |
||||
}, |
||||
"input": "0xf88b8271908506fc23ac0083015f90943b873a919aa0512d5a0f09e6dcceaa4a6727fafe80a463e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c52aa0bdce0b59e8761854e857fe64015f06dd08a4fbb7624f6094893a79a72e6ad6bea01d9dde033cff7bb235a3163f348a6d7ab8d6b52bc0963a95b91612e40ca766a4", |
||||
"result": { |
||||
"calls": [ |
||||
{ |
||||
"from": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"input": "0x", |
||||
"to": "0x000000000000000000000000000000000000dEaD", |
||||
"type": "SELFDESTRUCT", |
||||
"value": "0x4d87094125a369d9bd5" |
||||
} |
||||
], |
||||
"from": "0xb436ba50d378d4bbc8660d312a13df6af6e89dfb", |
||||
"gas": "0x10738", |
||||
"gasUsed": "0x7533", |
||||
"input": "0x63e4bff40000000000000000000000000024f658a46fbb89d8ac105e98d7ac7cbbaf27c5", |
||||
"output": "0x", |
||||
"to": "0x3b873a919aa0512d5a0f09e6dcceaa4a6727fafe", |
||||
"type": "CALL", |
||||
"value": "0x0" |
||||
} |
||||
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue