> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tenderly.co/llms.txt
> Use this file to discover all available pages before exploring further.

# 跟踪交易

> 使用 tenderly_traceTransaction JSON-RPC 方法获取现有交易的已解码执行跟踪。

<Note>自定义 RPC 方法位于 **`tenderly_`** 命名空间下。</Note>

此方法运行于 [Node RPC](/node-rpc/overview) 之上；参见完整的 [JSON-RPC 参考](/node-rpc/rpc-reference) 以了解所有方法和网络。

### `tenderly_traceTransaction`

在区块链上重放交易并提供执行信息，如状态、日志、内部交易等。

**参数**

1. **Transaction hash** `STRING` 32 字节十六进制值

**示例**

<Tabs>
  <Tab title="example.json">
    ```json title="example.json" showLineNumbers theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
    {
      "id": 0,
      "jsonrpc": "2.0",
      "method": "tenderly_traceTransaction",
      "params": ["0x6b2264fa8e28a641d834482d250080b39cbbf39251344573c7504d6137c4b793" ]
    }
    ```
  </Tab>

  <Tab title="example">
    ```bash title="example" showLineNumbers theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
    curl https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d \
    '{
    "id": 0,
    "jsonrpc": "2.0",
    "method": "tenderly_traceTransaction",
    "params": ["0x6b2264fa8e28a641d834482d250080b39cbbf39251344573c7504d6137c4b793"]
    }'
    ```
  </Tab>

  <Tab title="example.js">
    ```javascript title="example.js" showLineNumbers theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
    // Installation Instructions: https://docs.ethers.io/v5/getting-started/#installing
    const { ethers } = require("ethers");

    async function runSimulateTransaction() {
    // Initialize an ethers instance
    const provider = new ethers.providers.JsonRpcProvider(
    "https://goerli.gateway.tenderly.co/$TENDERLY_WEB3_GATEWAY_KEY"
    );

    // Execute method
    const result = await provider.send("tenderly_traceTransaction", [
    "0x6b2264fa8e28a641d834482d250080b39cbbf39251344573c7504d6137c4b793"
    ]);

    // Print the output to console
    console.log(result);

    }

    (async () => {
    runSimulateTransaction();

    })();

    ```
  </Tab>

  <Tab title="example.json">
    ```json title="example.json" showLineNumbers theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
    {
      "id": 0,
      "jsonrpc": "2.0",
      "result": {
      "status": true,
      "gasUsed": "0x2da74",
      "cumulativeGasUsed": "0x0",
      "blockNumber": "0xfbc520",
      "type": "0x0",
      "logsBloom": "0x00200080000000000000000080000000000000000000000000010040000000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000008000000200000000000000008000000008000000000000000000000001000000000000000000000000000800040000010000000000000000000000000004000000000000000000001080000080000004000000000000000000000000000080000000000000000000000000000000200000000000000000002000000000000000000000000004000000000001000010000000020000000200000000000000000200000000000000000000000400000000000000000",
      "logs": [
    {
      "name": "Deposit",
      "anonymous": false,
      "inputs": [
    {
      "value": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "type": "address",
      "name": "dst"
    },
    {
      "value": "25000000000000000",
      "type": "uint256",
      "name": "wad"
    }
      ],
      "raw": {
      "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "topics": [
      "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c",
      "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d"
      ],
      "data": "0x0000000000000000000000000000000000000000000000000058d15e17628000"
    }
    },
    {
      "name": "Transfer",
      "anonymous": false,
      "inputs": [
    {
      "value": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "type": "address",
      "name": "src"
    },
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": "dst"
    },
    {
      "value": "25000000000000000",
      "type": "uint256",
      "name": "wad"
    }
      ],
      "raw": {
      "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "topics": [
      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
      "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d",
      "0x000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e4184076"
      ],
      "data": "0x0000000000000000000000000000000000000000000000000058d15e17628000"
    }
    },
    {
      "name": "Transfer",
      "anonymous": false,
      "inputs": [
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": "from"
    },
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "to"
    },
    {
      "value": "1201840076490568",
      "type": "uint256",
      "name": "value"
    }
      ],
      "raw": {
      "address": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "topics": [
      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
      "0x000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "0x00000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc7"
      ],
      "data": "0x0000000000000000000000000000000000000000000000000004451132d60748"
    }
    },
    {
      "name": "Sync",
      "anonymous": false,
      "inputs": [
    {
      "value": "5161635883710151874",
      "type": "uint112",
      "name": "reserve0"
    },
    {
      "value": "263488971740003263",
      "type": "uint112",
      "name": "reserve1"
    }
      ],
      "raw": {
      "address": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "topics": [
      "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1"
      ],
      "data": "0x00000000000000000000000000000000000000000000000047a1d07d1c73fcc200000000000000000000000000000000000000000000000003a819d2e2cbbbbf"
    }
    },
    {
      "name": "Swap",
      "anonymous": false,
      "inputs": [
    {
      "value": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "type": "address",
      "name": "sender"
    },
    {
      "value": "25000000000000000",
      "type": "uint256",
      "name": "amount0In"
    },
    {
      "value": "0",
      "type": "uint256",
      "name": "amount1In"
    },
    {
      "value": "0",
      "type": "uint256",
      "name": "amount0Out"
    },
    {
      "value": "1278553272862306",
      "type": "uint256",
      "name": "amount1Out"
    },
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "to"
    }
      ],
      "raw": {
      "address": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "topics": [
      "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822",
      "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d",
      "0x00000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc7"
      ],
      "data": "0x0000000000000000000000000000000000000000000000000058d15e176280000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048ad661a7c662"
    }
    }
      ],
      "trace": [
    {
      "type": "CALL",
      "from": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "gas": "0x35004",
      "gasUsed": "0x2da40",
      "value": "0x58d15e17628000",
      "input": "0xb6f9de950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc70000000000000000000000000000000000000000000000000000000063d41cf70000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000d81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "decodedInput": [
    {
      "value": "0",
      "type": "uint256",
      "name": "amountOutMin"
    },
    {
      "value": [
      "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a"
      ],
      "type": "address[]",
      "name": "path"
    },
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "to"
    },
    {
      "value": "1674845431",
      "type": "uint256",
      "name": "deadline"
    }
      ],
      "method": "swapExactETHForTokensSupportingFeeOnTransferTokens",
      "output": "0x",
      "subtraces": 7,
      "traceAddress": [
      0
      ]
    },
    {
      "type": "CALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "gas": "0x31c34",
      "gasUsed": "0x5da6",
      "value": "0x58d15e17628000",
      "input": "0xd0e30db0",
      "output": "0x",
      "subtraces": 0,
      "traceAddress": [
      0,
      0
      ]
    },
    {
      "type": "CALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "gas": "0x2bb7b",
      "gasUsed": "0x1f7e",
      "value": "0x0",
      "input": "0xa9059cbb000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e41840760000000000000000000000000000000000000000000000000058d15e17628000",
      "decodedInput": [
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": "dst"
    },
    {
      "value": "25000000000000000",
      "type": "uint256",
      "name": "wad"
    }
      ],
      "method": "transfer",
      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
      "decodedOutput": [
    {
      "value": true,
      "type": "bool",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      1
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "gas": "0x29100",
      "gasUsed": "0x19fe",
      "input": "0x70a0823100000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "decodedInput": [
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "account"
    }
      ],
      "method": "balanceOf",
      "output": "0x0000000000000000000000000000000000000000000000000000000000000000",
      "decodedOutput": [
    {
      "value": "0",
      "type": "uint256",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      2
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "gas": "0x267d6",
      "gasUsed": "0x9c8",
      "input": "0x0902f1ac",
      "output": "0x0000000000000000000000000000000000000000000000004748ff1f05117cc200000000000000000000000000000000000000000000000003aca4a9447382210000000000000000000000000000000000000000000000000000000063d41a7f",
      "decodedOutput": [
    {
      "value": "5136635883710151874",
      "type": "uint112",
      "name": "_reserve0"
    },
    {
      "value": "264767525012865569",
      "type": "uint112",
      "name": "_reserve1"
    },
    {
      "value": 1674844799,
      "type": "uint32",
      "name": "_blockTimestampLast"
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      3
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "gas": "0x25c36",
      "gasUsed": "0x216",
      "input": "0x70a08231000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "decodedInput": [
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": ""
    }
      ],
      "method": "balanceOf",
      "output": "0x00000000000000000000000000000000000000000000000047a1d07d1c73fcc2",
      "decodedOutput": [
    {
      "value": "5161635883710151874",
      "type": "uint256",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      4
      ]
    },
    {
      "type": "CALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "gas": "0x2542c",
      "gasUsed": "0x1daa9",
      "value": "0x0",
      "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048ad661a7c66200000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000",
      "decodedInput": [
    {
      "value": "0",
      "type": "uint256",
      "name": "amount0Out"
    },
    {
      "value": "1278553272862306",
      "type": "uint256",
      "name": "amount1Out"
    },
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "to"
    },
    {
      "value": "0x",
      "type": "bytes",
      "name": "data"
    }
      ],
      "method": "swap",
      "output": "0x",
      "subtraces": 3,
      "traceAddress": [
      0,
      5
      ]
    },
    {
      "type": "CALL",
      "from": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "to": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "gas": "0x220ec",
      "gasUsed": "0x153da",
      "value": "0x0",
      "input": "0xa9059cbb00000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc700000000000000000000000000000000000000000000000000048ad661a7c662",
      "decodedInput": [
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "recipient"
    },
    {
      "value": "1278553272862306",
      "type": "uint256",
      "name": "amount"
    }
      ],
      "method": "transfer",
      "output": "0x0000000000000000000000000000000000000000000000000000000000000001",
      "decodedOutput": [
    {
      "value": true,
      "type": "bool",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      5,
      0
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "gas": "0xd008",
      "gasUsed": "0x216",
      "input": "0x70a08231000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "decodedInput": [
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": ""
    }
      ],
      "method": "balanceOf",
      "output": "0x00000000000000000000000000000000000000000000000047a1d07d1c73fcc2",
      "decodedOutput": [
    {
      "value": "5161635883710151874",
      "type": "uint256",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      5,
      1
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "to": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "gas": "0xcc65",
      "gasUsed": "0xa5e",
      "input": "0x70a08231000000000000000000000000a0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "decodedInput": [
    {
      "value": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "type": "address",
      "name": "account"
    }
      ],
      "method": "balanceOf",
      "output": "0x00000000000000000000000000000000000000000000000003a819d2e2cbbbbf",
      "decodedOutput": [
    {
      "value": "263488971740003263",
      "type": "uint256",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      5,
      2
      ]
    },
    {
      "type": "STATICCALL",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a",
      "gas": "0x7edd",
      "gasUsed": "0xa5e",
      "input": "0x70a0823100000000000000000000000017b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "decodedInput": [
    {
      "value": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "type": "address",
      "name": "account"
    }
      ],
      "method": "balanceOf",
      "output": "0x0000000000000000000000000000000000000000000000000004451132d60748",
      "decodedOutput": [
    {
      "value": "1201840076490568",
      "type": "uint256",
      "name": ""
    }
      ],
      "subtraces": 0,
      "traceAddress": [
      0,
      6
      ]
    }
      ],
      "assetChanges": [
    {
      "assetInfo": {
      "standard": "ERC20",
      "type": "Fungible",
      "contractAddress": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "symbol": "weth",
      "name": "WETH",
      "logo": "https://assets.coingecko.com/coins/images/2518/large/weth.webp?1628852295",
      "decimals": 18,
      "dollarValue": "1834.6199951171875"
    },
      "type": "Mint",
      "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "rawAmount": "0x58d15e17628000",
      "amount": "0.025",
      "dollarValue": "45.8654998779296875"
    },
    {
      "assetInfo": {
      "standard": "ERC20",
      "type": "Fungible",
      "contractAddress": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "symbol": "weth",
      "name": "WETH",
      "logo": "https://assets.coingecko.com/coins/images/2518/large/weth.webp?1628852295",
      "decimals": 18,
      "dollarValue": "1834.6199951171875"
    },
      "type": "Transfer",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "rawAmount": "0x58d15e17628000",
      "amount": "0.025",
      "dollarValue": "45.8654998779296875"
    },
    {
      "assetInfo": {
      "standard": "ERC20",
      "contractAddress": "0xd81781e686d0ad128b4c7e7b3c072b89f509ea2a"
    },
      "type": "Transfer",
      "from": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "to": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "rawAmount": "0x4451132d60748"
    },
    {
      "assetInfo": {
      "standard": "NativeCurrency",
      "type": "Native",
      "symbol": "eth",
      "name": "Ethereum",
      "logo": "https://assets.coingecko.com/coins/images/279/large/ethereum.webp?1595348880",
      "decimals": 18,
      "dollarValue": "1828.77001953125"
    },
      "type": "Transfer",
      "from": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "rawAmount": "0x58d15e17628000",
      "amount": "0.025",
      "dollarValue": "45.71925048828125"
    },
    {
      "assetInfo": {
      "standard": "NativeCurrency",
      "type": "Native",
      "symbol": "eth",
      "name": "Ethereum",
      "logo": "https://assets.coingecko.com/coins/images/279/large/ethereum.webp?1595348880",
      "decimals": 18,
      "dollarValue": "1828.77001953125"
    },
      "type": "Transfer",
      "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "rawAmount": "0x58d15e17628000",
      "amount": "0.025",
      "dollarValue": "45.71925048828125"
    }
      ],
      "balanceChanges": [
    {
      "address": "0x17b11ed010e715bf4336a88489fe4f0ef6a09dc7",
      "dollarValue": "-45.71925048828125",
      "transfers": [
      2,
      3
      ]
    },
    {
      "address": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d",
      "dollarValue": "0",
      "transfers": [
      0,
      1,
      3,
      4
      ]
    },
    {
      "address": "0xa0c9bf9aa601ddfb1cdf3be3ef77e010e4184076",
      "dollarValue": "45.8654998779296875",
      "transfers": [
      1,
      2
      ]
    },
    {
      "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
      "dollarValue": "45.71925048828125",
      "transfers": [
      4
      ]
    }
      ]
    }
    }
    ```
  </Tab>
</Tabs>

### 结果

跟踪交易结果 `OBJECT`

* **status** `NUMBER：``1`（成功）或 `0`（失败）
* **gasUsed** `NUMBER`：单笔交易本身使用的 gas 数量
* **cumulativeGasUsed** `NUMBER`：该交易在区块中执行时使用的总 gas 数量
* **blockNumber** `NUMBER`：该交易被模拟所在的区块号
* **type** `NUMBER`：交易类型，`0x00` 为传统交易，`0x01` 为访问列表类型，`0x02` 为动态费用
* **logsBloom** `STRING`：供轻客户端快速检索相关日志的布隆过滤器
* **logs**：发出的事件数组 `ARRAY`，元素为 `OBJECT`
  * **name** `STRING`：事件名称
  * **anonymous** `BOOLEAN`：指示事件是否为匿名
  * **inputs**：已解码日志参数数组 `ARRAY`，元素为已解码日志 `OBJECT`
    * **name** `STRING`：事件参数名称
    * **type** `STRING`：来自 Solidity 类型系统的事件参数类型
    * **value**（*可选*）`STRING`：参数值的字符串表示；请根据 `type` 字段解读
  * **raw** `OBJECT`：原始日志
    * **address** `STRING` 十六进制编码地址：发出日志的合约地址
    * **topics** `ARRAY`，元素为 `STRING` 32 十六进制编码字节
    * **data** `STRING` 表示事件数据的十六进制编码字符串
* **trace**：跟踪 `ARRAY`，元素为 `OBJECT`
  * **type** `STRING` 类型：跟踪项类型——`CALL`、`CALLCODE`、`STATICCALL`、`DELEGATECALL`、`CREATE`、`CREATE2`、`SELFDESTRUCT` 之一
  * **from** `STRING`：十六进制编码地址
  * **to** `STRING`：十六进制编码地址
  * **gas** `STRING`：表示事件 gas 的十六进制编码无符号 64 字节整数
  * **gasUsed** `STRING`：表示事件 gasUsed 的十六进制编码无符号 64 字节整数
  * **value** `STRING`：表示事件 value（单位 wei）的十六进制编码无符号 64 字节整数
  * **error** `STRING`：来自虚拟机的低级错误
  * **errorReason** `STRING`：回滚时提取的错误原因
  * **input** `STRING`：表示跟踪点原始输入字节的十六进制编码字符串
  * **method** `STRING`：被调用的合约方法
  * **decodedInput**：被调用方法的已解码输入——`ARRAY`，元素为已解码入参 `OBJECT`
    * **value** `STRING`：参数值的字符串表示；请根据 `type` 字段解读。
    * **type** `STRING`：该参数的 Solidity 类型
    * **name** `STRING`：该参数的名称
  * **output** `STRING`：原始跟踪输出
  * **decodedOutput**：被调用方法的已解码输出——`ARRAY`，元素为已解码出参 `OBJECT`
    * **value** `STRING`：参数值的字符串表示；请根据 `type` 字段解读。
    * **type** `STRING`：该参数的 Solidity 类型
    * **name** `STRING`：该参数的名称
  * **subtraces** `NUMBER`：子跟踪数量
  * **traceAddress**：跟踪位置 `ARRAY`，元素为 `NUMBER`
* **`assetChanges`** `ARRAY`：
  * **`type`** `STRING` 资产变化类型，可为 transfer、mint、burn
  * **`from`** `STRING`：发送方地址（mint 转账时为空）
  * **`to`** `STRING`：接收方地址（burn 转账时为空）
  * **`amount`** `STRING`：转移的代币数量
  * **`rawAmount`** `STRING`：代币的原始转移数量
  * **`dollarValue`** `STRING`：转移代币的美元价值
  * **`assetInfo`** `OBJECT`：资产信息
    * **`standard`** `STRING`：受支持的代币标准：ERC20、ERC721、NativeCurrency
    * **`type`** `STRING`：代币类型：Native、Fungible、Non-Fungible
    * **`contractAddress`** `STRING`：合约地址
    * **`symbol`** `STRING`：代币符号
    * **`name`** `STRING`：代币名称
    * **`logo`** `STRING`：代币图标的 URL
    * **`decimals`** `NUMBER`：代币小数位数
    * **`dollarValue`** `STRING`：单个代币的美元价值
* **`balanceChanges`** `ARRAY`：余额变化数组——累计资产变化
  * **`address`** `STRING` 地址
  * **`dollarValue`** `STRING`：累计资产变化的美元价值
  * **`transfers`** `ARRAY`：资产变化索引数组
