Replays a block that has already been mined.
Don’t have an API key?
Start using this method in your app today.
Description
traceBlock
replays a block that has already been mined.
Parameters
Name | Type | Description | Example |
---|---|---|---|
blockIdentifier | object | The block to debug. Can be a block hash, block number hex string, or a commitment level. There are the following commitment levels: 1. pending : Sample next block inferred by Alchemy built on top of the latest block.2. latest : The most recent block in the canonical chain observed by Alchemy.3. safe : The most recent crypto-economically secure block that cannot be re-orged outside of manual intervention driven by community coordination. This is only available on Goerli testent.4. finalized : The most recent secure block that has been accepted by >2/3 of validators. This block is very unlikely to be re-orged. This is only available on Goerli testnet.5. earliest : The lowest numbered block available that is usually the first block created. | 0x5568A , latest , 0x04e19fc95ec33e65c667d26a69d66d024732891c13742a345f5001ff900bd60a etc. |
tracer | object | Tracer type and configuration. This tracer tracks all call frames executed during a transaction, including depth 0. The returned result is a nested list of call frames executed as part of the call. It is an object with the following options: 1. type : The type of tracer to use during the execution. The options are callTracer and prestateTracer 2. onlyTopCall? : Whether to only trace the main (top-level) calls and ignore sub-calls. It is a boolean and defaults to false . | { type: callTracer, onlyTopCall: true } |
Response
The traceBlock
method returns a response object with the following properties.
Property (Field) | Description |
---|---|
type | The type of call: CALL or CREATE for the top-level call. |
from | From address of the transaction. |
to | To address of the transaction. |
value | Amount of value transfer as a hex string. |
gas | Gas provided for call as a hex string. |
gasUsed | Gas used during the call as a hex string. |
input | Call data. |
output | Return data. |
errror? | Optional error field. |
revertReason? | Solidity revert reason, if the call reverted. |
calls? | Array of sub-calls executed as part of the original call. |
Example Request and Response
Prerequisite: You will need to install the Alchemy SDK before making requests with it.
The commands for installing it using npm or yarn are given below:
npm install alchemy-sdk
yarn add alchemy-sdk
Request
Here is an example of how to make a traceBlock
request using the Alchemy SDK:
// Imports the Alchemy SDK
const { Alchemy, Network } = require("alchemy-sdk");
// Configures the Alchemy SDK
const config = {
apiKey: "demo", // Replace with your API key
network: Network.ETH_MAINNET, // Replace with your network
};
// Creates an Alchemy object instance with the config to use for making requests
const alchemy = new Alchemy(config);
// Example of using the traceBlock method
const main = async () => {
// The block to debug.
let block = "latest";
// Tracer type and configuration.
let tracerConfig = {
type: "callTracer",
onlyTopCall: true,
};
// Calling the traceCall method
let response = await alchemy.debug.traceBlock(block, tracerConfig);
// Logging the response to the console
console.log(response);
};
main();
Response
And here is an example of what a successful response to this request might look like:
[
{
"result": {
"type": "CALL",
"from": "0x4970197593ef5aed9d2c33409b953f5f9bb22563",
"to": "0x00000000008c4fb1c916e0c88fd4cc402d935e7d",
"value": "0x0",
"gas": "0x1d16ed",
"gasUsed": "0x20607",
"input": "0x06e399490e04c2b0f2a7f736d3b908bdde8608177c8fc28c1690f1ee7348e45ef0e838c705c2eece6d414d4aab3f3a880652f47bfaa771908c07dd8673a787daed3a003e5b0e9a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a58335e010000000000000000000000000000000000000000000000792e54dff737a4f35000000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xec640f1dbe4c3e880c69c988ca5398028f770266",
"to": "0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b",
"value": "0x0",
"gas": "0x64fc8",
"gasUsed": "0x4a6c3",
"input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000063e30fb700000000000000000000000000000000000000000000000000000000000000040a08000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000001600000000000000000000000003a880652f47bfaa771908c07dd8673a787daed3a000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000640a9b630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b0000000000000000000000000000000000000000000000000000000063e3156b00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000041111d0f98eeaa4cafb38f3d6697a8e7ca83918ad36664e6d76653348e247790392576049075b2e8e7ffe88398e927e10dc0b1c7713657cdf4cd366bc98edebce31c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000086e4085398776b4943000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000003a880652f47bfaa771908c07dd8673a787daed3a000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084c79aef20e01a400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000084c79aef20e01a4",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x4970197593ef5aed9d2c33409b953f5f9bb22563",
"to": "0x00000000008c4fb1c916e0c88fd4cc402d935e7d",
"value": "0x0",
"gas": "0x3e353",
"gasUsed": "0x2293e",
"input": "0x07e399490e04f1ee7348e45ef0e838c705c2eece6d414d4aab3fc2b0f2a7f736d3b908bdde8608177c8fc28c1690a0b86991c6218b36c1d19d4a2e9eb0ce3606eb483a880652f47bfaa771908c07dd8673a787daed3a000000000000000000000000000000000000000000000000000000005f48dd540000000000000000000000000000000000000000000000d060d0fc3307ce45cf0000000000000000000000000000000000000000000000000000000000000000006926cfde0100000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x77ad3a15b78101883af36ad4a875e17c86ac65d1",
"to": "0x00000000a991c429ee2ec6df19d40fe0c80088b8",
"value": "0xb8bb52bb",
"gas": "0x1b108",
"gasUsed": "0xd033",
"input": "0x11733f6c5aea6314efbd34195b1ae7f070379aa3f000000000000000000000000008f7ea8911420412e765bfa6d85aaac94b4f7b708c89be2e2b01f4",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x491336a7d4e49996f5f4c07d51dfc4eb501a541e",
"to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45",
"value": "0x0",
"gas": "0x44d03",
"gasUsed": "0x353e2",
"input": "0x5ae401dc0000000000000000000000000000000000000000000000000000000063e3159f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000124b858183f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000491336a7d4e49996f5f4c07d51dfc4eb501a541e0000000000000000000000000000000000000000000000000000000165a85d2000000000000000000000000000000000000000000000000000000000113c99660000000000000000000000000000000000000000000000000000000000000042dac17f958d2ee523a2206206994597c13d831ec70001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4420412e765bfa6d85aaac94b4f7b708c89be2e2b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000113c9eeb"
}
},
{
"result": {
"type": "CALL",
"from": "0x77ad3a15b78101883af36ad4a875e17c86ac65d1",
"to": "0x00000000a991c429ee2ec6df19d40fe0c80088b8",
"value": "0xba54e866",
"gas": "0x189a6",
"gasUsed": "0xb86b",
"input": "0x12733f6c5aea6314efbd34195b1ae7f070379aa3f000000000000000000000000008f7ea8812420412e765bfa6d85aaac94b4f7b708c89be2e2b01f4",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xccfb4b91ff5d1a2319c96ab6b59be4cdefb8437d",
"to": "0x000000000dfde7deaf24138722987c9a6991e2d4",
"value": "0xfd0253",
"gas": "0x5c24c",
"gasUsed": "0x12331",
"input": "0xe0f6740b000000000000000000000000e45b4a84e0ad24b8617a489d743c52b84b7acebe000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542000000000000000000000000000000000000000000000000188f10884e62111c0000000000000000000000000000000000000000000000000000006c05829eb7",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x644268d381ec51203266e1daf2f608aefd05c3e1",
"to": "0x7f29b85834d6a2ba4bb1c64325686c6057b1b3c5",
"value": "0x61b31ab352c0000",
"gas": "0x5ab06",
"gasUsed": "0x5ab06",
"input": "0xeea3ea3f0000000000000000000000002fc6ca8047ca95fcaab0b380ec1f367b6ca90a230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000041418c12f7cb5e94e4d052c62c3af7a7163e6a4c5a0e8217c588a2451b23ed09515feb1e3061e0c2082e0925d784690bd6e0b689503ff4def2818f44832ac6547e1c00000000000000000000000000000000000000000000000000000000000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x44533302d433fba8b230f3b1a884d113066d4016",
"to": "0x7f29b85834d6a2ba4bb1c64325686c6057b1b3c5",
"value": "0x61b31ab352c0000",
"gas": "0x5a131",
"gasUsed": "0x5a131",
"input": "0xeea3ea3f00000000000000000000000044533302d433fba8b230f3b1a884d113066d4016000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004133e0d03c629b6dbbd983a76cfd3b82e180b15ea38bc95f4740cfdfd089d798c31bb9497a076fcbd87311d3cf346c162b2ef6705771176c7298e71a07803704741b00000000000000000000000000000000000000000000000000000000000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x45c23ed336ecee9c738f9433853acce9f84aa3fa",
"to": "0x1d1cbdd1b22801121929e0a64929b4e65bea5723",
"value": "0x0",
"gas": "0x3059d0",
"gasUsed": "0x30b51",
"input": "0x44bc90af00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000009000000000000000000000000fb7ecd86bcb8dc6a3ec68be7c9fe5965144aea83000000000000000000000000ae26630a7b02be6ae0e99c3974bdf07b631bec16000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000d6e24a896ea4069b7f011139489a81c62d6da1c000000000000000000000000465189f89b525a58b8db12e45b940a5d92d2dfd9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c48b6ac33c9d7256eac30c2cce129f0332be3ed8000000000000000000000000f823d524d9bccfef733c5b8455dc20f53618bc69000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000005916b251c46596a83c94d9b05af9244dd0b0ba49000000000000000000000000706176fadb0ae74bf508a6d20b6e9d93ea01de79000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000004c315af217543b01a184f8c831497d76088e319d000000000000000000000000f14fc70135d6929d08da4eb8fcd97cbc4db78ca2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000e50e73a78bf111d19a9c6f8630062ca5c6f4f29400000000000000000000000056f1de3c47d8b3d167cc42f2e0a8a25ebff1cf20000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000013d9789cf817949b4845e89438a0609a9468760c0000000000000000000000008b8572b7d380e2803211570bf017b674ca9389ec000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000f61d74f5c0aa27163a2213beb5c8a9e421bc4813000000000000000000000000268631bde48388ea741b5474767a4d43dc375036000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000686e635c39e4b0e00ab1ba70d1d0543f9b24a5c500000000000000000000000071bb1b737d6a01c5681704a54095a0deb889a527000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x59198d89a4881265a1170073efe20188098da5ac",
"to": "0x99a58482bd75cbab83b27ec03ca68ff489b5788f",
"value": "0x0",
"gas": "0x5d35e",
"gasUsed": "0x46445",
"input": "0x9db4f7aa000000000000000000000000c55126051b22ebb829d00368f4b12bde432de5da0000000000000000000000006e314039f4c56000f4ebb3a7854a84cc6225fb92000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f90f8ec529238550000000000000000000000000000000000000000000000000e75118b94a2567b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"output": "0x0000000000000000000000000000000000000000000000000e78c5f79aad435a"
}
},
{
"result": {
"type": "CALL",
"from": "0x888c15c949a7bb3360bf023944db440138c4946e",
"to": "0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0",
"value": "0x0",
"gas": "0x8d334",
"gasUsed": "0x1348c",
"input": "0xa9059cbb000000000000000000000000a35a27aff2641129beb8a51f782c1270daa558d9000000000000000000000000000000000000000000000000e33fafbdd5058000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x4f28f1f438c3f7ab6648989a5cc2e3e7e96feb03",
"to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
"value": "0x0",
"gas": "0x401e1",
"gasUsed": "0x26829",
"input": "0x791ac947000000000000000000000000000000000000000000000000001c34654ad9620000000000000000000000000000000000000000000000000001edf307ad2bfd9c00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004f28f1f438c3f7ab6648989a5cc2e3e7e96feb030000000000000000000000000000000000000000000000000000000063e30f250000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ade00882d86a0f4d84c2a36819b79aba3074d6af000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x005fde5294199d5c3eb5eb7a6e51954123b74b1c",
"to": "0x4a137fd5e7a256ef08a7de531a17d0be0cc7b6b6",
"value": "0x98acbdc6a650",
"gas": "0x8aa80",
"gasUsed": "0x1e227",
"input": "0xec0ab6a7000000000000000000000000000000000000000000000000000098acbdc6a650000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000104414bf3890000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f984000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000004a137fd5e7a256ef08a7de531a17d0be0cc7b6b60000000000000000000000000000000000000000000000000000000063e30ee70000000000000000000000000000000000000000000000268e9c94e4d0fa000000000000000000000000000000000000000000000000000000000001280e6a12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x0d0707963952f2fba59dd06f2b425ace40b492fe",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0xeedd8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000db519336b92bc6fb72d43fdff6471bacdea8b139000000000000000000000000000000000000000000000000000000001fbe0174",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x96ea9e96b847996eb70f7ee110122e6895dd3fe9",
"to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x6925",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000007735940",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x2faec4d3355a69e7954332bc2b9dc0d1f5ddfd37",
"to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"value": "0x0",
"gas": "0x9604",
"gasUsed": "0x6925",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000007270e00",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x5370950cb85735c8fee79d54b6438e4dac316bfa",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000017a06e70",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x9d40a3ce0597cd31e446dfe5807506d1d9fba608",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd290703000000000000000000000000000000000000000000000000000000001d8119c0",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x4c8916b1c51a7225d8c6f88e817b33c6446fe638",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000018e64098",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xe82400e88c89360ae88e5332f36326c313acf35e",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd290703000000000000000000000000000000000000000000000000000000001911c8b9",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x70c2680bf4c34b54ec7a43a3b8ffd200d9c855ff",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd29070300000000000000000000000000000000000000000000000000000000191422b0",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x39022b509cb6fc115695a1d3c60627ecfffd5ed0",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000017c49840",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x3292391318750cfcf2377bfb0e382f6bcfc36167",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000017dda2a0",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xc56b6be15d5d4d11aced8101fbe164845463bbf7",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd29070300000000000000000000000000000000000000000000000000000000173aced0",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xb5e37acb8e3532ceb6379ab5a1361076fff83fc4",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x95f8",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd290703000000000000000000000000000000000000000000000000000000003b023380",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x671e49f6616e7873816716f78a621469cd091e9c",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x9604",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000017d78400",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x65780cf5d3b4bc55d3d7ee73bb251956341446db",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x9604",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000000000000024f47300",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x0b5c4a7fcda49e0a8661419bb55b86161a86db2a",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x18058",
"gasUsed": "0xa281",
"input": "0xa9059cbb00000000000000000000000047616f1811f30a31a63ace953f2801a5fc22f23b000000000000000000000000000000000000000000000000000000003d4ff410",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x47dc027c76ee1302c0e77ec07f7a21ef7f57b444",
"to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"value": "0x0",
"gas": "0xa555",
"gasUsed": "0x3674",
"input": "0x2e1a7d4d00000000000000000000000000000000000000000000000001599ba503c00000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xf0521830264078de5586e9dde2d202aebdb22fb0",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x75a82714960a2090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x94f0cf2b3332f31d0ac4769a94ecabcc41b8fa64",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x64691c0f2f896890",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xacb2c6c75067199a180a6b0006c336dcecf075d6",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x1ceefe8f0e6eb890",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xa4ed328feadc567b29b193105e9ed0e339796672",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x189ea48a7a4f9c90",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xa89ec017dfe46793f0dea80b45d33079c2da4f04",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0xf275e5a6ed155f8",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xfbca3bc9622ca977773fbb211085e95f86a13021",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x6d42e645dc52090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x52292fc18eab8d6dfeb4fbefef5e227ca883dee8",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x347017c9ad2bb83",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x61a0e0d4d6145f267d0116c874bb896cf1abcbe6",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x30dd7d54add2090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x8dfdf75f463fef6a16eb2d843a7e4360b3222a6e",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x307db55a86ad090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xc5e89100e3a314988d31a08d721a4bca46650ec8",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x2d1726c59aea090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xd13b0c7445888d614f4fbbaeb5645e5a23ec4a01",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x1bc6cac85d4fc90",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x0eb7bb2119760c139f42abe9a86c572d19bb452d",
"to": "0x0dcb0bc432b0c57014dfa222058dbb070603df1f",
"value": "0x178d56fea782090",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xae45a8240147e6179ec7c9f92c5a18f9a97b3fca",
"to": "0x54d86c89b5e82e35253dbc29e03975dd817ceb04",
"value": "0x6612afabc9b0f",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xae45a8240147e6179ec7c9f92c5a18f9a97b3fca",
"to": "0x0fec0db40798a095cfcae0d4bd6eefa56a158f31",
"value": "0x67b027e1976cb",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x401a3d4183bacfbfe5052d3ae7aead00a6eaef01",
"to": "0xc944e90c64b2c07662a292be6244bdf05cda44a7",
"value": "0x0",
"gas": "0x4d5e",
"gasUsed": "0x3262",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd29070300000000000000000000000000000000000000000000006c6b935b8bbd400000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x6c024c0d8b29824ce96a4a4dc47f561fa1f60289",
"to": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
"value": "0x0",
"gas": "0x5826",
"gasUsed": "0x3b5e",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000199650db3ca0600000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xb8699e12c24df1bbb4b8f6017e8ac17793068bcf",
"to": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
"value": "0x0",
"gas": "0x5826",
"gasUsed": "0x3b5e",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000000000197a8f6dd551980000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x04b42f89fb78d04202a9ea5e320a84f15675e010",
"to": "0x7420b4b9a0110cdc71fb720908340c03f9bc03ec",
"value": "0x0",
"gas": "0x4e4e",
"gasUsed": "0x3328",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd29070300000000000000000000000000000000000000000000065a4da25d3016c00000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xe58cb11ba222c2cd597e3663a4b6411b9851c422",
"to": "0x839e71613f9aa06e5701cf6de63e303616b0dde3",
"value": "0x0",
"gas": "0x4d0f",
"gasUsed": "0x321a",
"input": "0xa9059cbb000000000000000000000000cffad3200574698b78f32232aa9d63eabd2907030000000000000000000000000000000000000000002e0aeb29da3b71a530c800",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x881374ab1e22f673578a2b22d4019a88ea0ebdde",
"to": "0xcffad3200574698b78f32232aa9d63eabd290703",
"value": "0xdb6dbcf24f3",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x5b3d5b497d91ca43a8a1b66461888016e9db323a",
"to": "0xcffad3200574698b78f32232aa9d63eabd290703",
"value": "0x3715b85f53a444",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x53f0b9d1b3b2ac4639c64746e22e782932b9221e",
"to": "0xcffad3200574698b78f32232aa9d63eabd290703",
"value": "0x365ee25cf9fd8c",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x64919eb2823e0dccb3bd29d24b7d4bc6ab992f0c",
"to": "0x53ff14d1d42dbba9f171b5c79182e7c4ec867160",
"value": "0x4922ee41b7c00",
"gas": "0x981d",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x5a52e96bacdabb82fd05763e25335261b270efcb",
"to": "0xac51066d7bec65dc4589368da368b212745d63e8",
"value": "0x0",
"gas": "0x3265",
"gasUsed": "0x3265",
"input": "0xa9059cbb00000000000000000000000028c6c06298d514db089934071355e5743bf21d600000000000000000000000000000000000000000000000000000005d21dba000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x421ebe75a526ee7c2199a69997a699f8d4094913",
"to": "0x6dfc34609a05bc22319fa4cce1d1e2929548c0d7",
"value": "0x189851bbb48a800",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xe119fe05a25efb8ad14292ea3933947e41cddfc2",
"to": "0x6dfc34609a05bc22319fa4cce1d1e2929548c0d7",
"value": "0x345acbc3df3400",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xd0d8f212a672830c15be9c29b7830cd9da688afc",
"to": "0x6dfc34609a05bc22319fa4cce1d1e2929548c0d7",
"value": "0xdb9f8684ad0800",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x151b381058f91cf871e7ea1ee83c45326f61e96d",
"to": "0x12cd6585ebf92b06bc4d08930b7926cc066a3576",
"value": "0x498a8a52d9c000",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x609a59923c6a9d6ccd43ffdd7f6d3e20bedfaaa4",
"to": "0xf4ed146735321e6fde17ed89d6062f063ed02691",
"value": "0x0",
"gas": "0x111b5f",
"gasUsed": "0xac3f1",
"input": "0xbaa2067b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000063e2d7f00000000000000000000000000000000000000000000000000000000063e429700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004167e5453175381bae79dd64b166b0c128b9b7c702d2ce70a2034c541e44def4d032923ad25111d447f5cb248106f4b4e5fdb698bc5d6f20d87fab1ebffe4620d81c00000000000000000000000000000000000000000000000000000000000000",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0xfe42e9d4216d0fc999a28076b983a294537f90f7",
"to": "0xaea46a60368a7bd060eec7df8cba43b7ef41ad85",
"value": "0x0",
"gas": "0xa851",
"gasUsed": "0x7e2a",
"input": "0xa9059cbb00000000000000000000000056d617e2cbd5d0d392351fa9054562b2aa0b1171000000000000000000000000000000000000000000000c76c0b66ba71ccc0000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xa5137efa76eec41c6c0309d7ef33dfe9e28ee5fc",
"to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
"value": "0x0",
"gas": "0x20ed0",
"gasUsed": "0x1cf5d",
"input": "0x18cbafe500000000000000000000000000000000000000000065768db5391f1727819372000000000000000000000000000000000000000000000000012af20d19b687f500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a5137efa76eec41c6c0309d7ef33dfe9e28ee5fc0000000000000000000000000000000000000000000000000000000063e3134700000000000000000000000000000000000000000000000000000000000000020000000000000000000000002e516ba5bf3b7ee47fb99b09eadb60bde80a82e0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000065768db5391f1727819372000000000000000000000000000000000000000000000000012c70b390e1af0a"
}
},
{
"result": {
"type": "CALL",
"from": "0x9723b6d608d4841eb4ab131687a5d4764eb30138",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x61444",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb00000000000000000000000049b44b10effb523eb700e119809f3828823049fe0000000000000000000000000000000000000000000000000000000002053e10",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x6cc5f688a315f3dc28a7781717a9a798a59fda7b",
"to": "0xccc8cb5229b0ac8069c51fd58367fd1e622afd97",
"value": "0x0",
"gas": "0x613fc",
"gasUsed": "0x35c9",
"input": "0xa9059cbb00000000000000000000000005eaa0d179845414dd301ff2f13c14bb6c55066b0000000000000000000000000000000000000000000003ed59a8206941350800",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xd7d53ebcc5cb87e8b34b0463ce55925c144d864a",
"to": "0xcc4304a31d09258b0029ea7fe63d032f52e44efe",
"value": "0x0",
"gas": "0x12e7e",
"gasUsed": "0x71ad",
"input": "0xa9059cbb00000000000000000000000030741289523c2e4d2a62c7d6722686d14e72385100000000000000000000000000000000000000000000021cdab05f96a8440000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x693a46652332b933fd4b06eab2b564748b141877",
"to": "0x252b9f56359901a0bde52d0675b1f1130d86f471",
"value": "0x0",
"gas": "0xfefb",
"gasUsed": "0x4473",
"input": "0xa9059cbb00000000000000000000000030741289523c2e4d2a62c7d6722686d14e72385100000000000000000000000000000000000000000000170267a4c8dc558ff000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x77e448e5db2a5cc5eb24c8923fc7552e35e0e4bc",
"to": "0x6bc08509b36a98e829dffad49fde5e412645d0a3",
"value": "0x0",
"gas": "0x18028",
"gasUsed": "0x31c2",
"input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a00000000000000000000000000000000000000000000152d02c7e14af6800000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x6767526a362ec6c6b1df185478e4f01506b73ff3",
"to": "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da",
"value": "0x0",
"gas": "0x2d498",
"gasUsed": "0x339c",
"input": "0xa9059cbb00000000000000000000000028c6c06298d514db089934071355e5743bf21d6000000000000000000000000000000000000000000000000000003508c25ec040",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xdfd5293d8e347dfe59e90efd55b2956a1343963d",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x2d4b0",
"gasUsed": "0xa281",
"input": "0xa9059cbb000000000000000000000000fc9fc06da2debff2e4b462c40f7dc710119d75ef0000000000000000000000000000000000000000000000000000000005bfb5d0",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x56eddb7aa87536c09ccc2793473599fd21a8b17f",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x2d4b0",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb000000000000000000000000c0e11bd9c64e00c4baeae460683c869d7cbe506200000000000000000000000000000000000000000000000000000002cc727894",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x28c6c06298d514db089934071355e5743bf21d60",
"to": "0xfbb3ce96e6c337cb946cd4d820bd0575263ba58a",
"value": "0x12b01fa482015000",
"gas": "0x2d710",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x2d4a4",
"gasUsed": "0xa281",
"input": "0xa9059cbb0000000000000000000000009ff5ecdde25a36e66e12fff37d5008feacea33f800000000000000000000000000000000000000000000000000000002336b1fde",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x28c6c06298d514db089934071355e5743bf21d60",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x2d4a4",
"gasUsed": "0x5fb5",
"input": "0xa9059cbb00000000000000000000000064a3cbbff91dac8a2a32c95015b11bc2927d9b300000000000000000000000000000000000000000000000000000000505ff3d90",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x24cf1be6eb40b0fea8a42ae96ffd983ee6c566c1",
"to": "0x3845badade8e6dff049820680d1f14bd3903a5d0",
"value": "0x0",
"gas": "0xd83a",
"gasUsed": "0x73f0",
"input": "0xa9059cbb000000000000000000000000d7da95c47ab359bc26b7fe2cd87ea96322451f7200000000000000000000000000000000000000000000000601c0a7dc23919230",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0xf60c2ea62edbfe808163751dd0d8693dcb30019c",
"to": "0x6892f09a7834e93c84ae3d0829ad00aef1094732",
"value": "0x1c6d859e313000",
"gas": "0x2d710",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x3018018c44338b9728d02be12d632c6691e020d1",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0",
"gas": "0x13244",
"gasUsed": "0xa281",
"input": "0xa9059cbb0000000000000000000000006543e5d27ffd804e13988e5785151ac908ac57a1000000000000000000000000000000000000000000000000000000001dcd6500",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x21bea2e90ac69dda877bc1da3e6674df32fb5f50",
"to": "0x6bba316c48b49bd1eac44573c5c871ff02958469",
"value": "0x0",
"gas": "0x354dc",
"gasUsed": "0x47bd",
"input": "0xa9059cbb000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa400000000000000000000000000000000000000000006ce6a542b8b19802b50000",
"output": "0x0000000000000000000000000000000000000000000000000000000000000001"
}
},
{
"result": {
"type": "CALL",
"from": "0x0fe4e205ac12f55333f9d02483a8309b1e80eb24",
"to": "0xdde2445c5b9b6741d8b43a8150198add4f80a474",
"value": "0x4009c5effea8c20",
"gas": "0x0",
"gasUsed": "0x0",
"input": "0x",
"output": "0x"
}
},
{
"result": {
"type": "CALL",
"from": "0x90c59078072c666944040fbd9cc9dd49ad60c034",
"to": "0xe66b31678d6c16e9ebf358268a790b763c133750",
"value": "0x5482cdfaecea88",
"gas": "0x2b4fc",
"gasUsed": "0x28721",
"input": "0x5cf5402600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000053aa74e1604e960000000000000000000000009f9c8ec3534c3ce16f928381372bfbfbfb9f4d240000000000000000000000000000000000000000000000000000d859198c9bf200000000000000000000000000000000000000000000000000000000000001083598d8ab0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000068fbad54be84103e800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2002