> ## 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.

# Трассировка транзакций

> Получите декодированную трассировку выполнения существующей транзакции с помощью JSON-RPC-метода tenderly_traceTransaction.

<Note>Пользовательские RPC-методы находятся в пространстве имён **`tenderly_`**.</Note>

Этот метод работает на [Node RPC](/node-rpc/overview); полный [справочник JSON-RPC](/node-rpc/rpc-reference) содержит все методы и сети.

### `tenderly_traceTransaction`

Воспроизводит транзакцию в блокчейне и предоставляет информацию о её выполнении: статус, логи, внутренние транзакции и т. д.

**Параметры**

1. **Transaction hash** `STRING` 32-байтовое hex-значение

**Пример**

<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`: количество газа, использованного этой конкретной транзакцией
* **cumulativeGasUsed** `NUMBER`: суммарное количество газа, использованное к моменту выполнения этой транзакции в блоке
* **blockNumber** `NUMBER`: номер блока, в котором транзакция была симулирована
* **type** `NUMBER`: тип транзакции, `0x00` для legacy-транзакций, `0x01` для типов с access list, `0x02` для динамических комиссий
* **logsBloom** `STRING`: bloom-фильтр для лёгких клиентов, позволяющий быстро находить связанные логи
* **logs**: массив эмитированных событий `ARRAY` из `OBJECT`
  * **name** `STRING`: имя события
  * **anonymous** `BOOLEAN`: указывает, является ли событие анонимным
  * **inputs**: массив декодированных аргументов лога `ARRAY` из декодированных логов `OBJECT`
    * **name** `STRING`: имя аргумента события
    * **type** `STRING`: тип аргумента события из системы типов Solidity
    * **value** (*опционально*) `STRING` строковое представление значения аргумента; интерпретируйте согласно полю `type`
  * **raw** `OBJECT`: сырые логи
    * **address** `STRING` адрес в hex: адрес контракта, эмитирующего лог
    * **topics** `ARRAY` из `STRING` 32-байтовых hex-значений
    * **data** `STRING` строка в hex, представляющая данные события
* **trace**: Trace `ARRAY` из `OBJECT`
  * **type** `STRING` type: тип элемента трассировки — один из `CALL`| `CALLCODE`| `STATICCALL`| `DELEGATECALL`| `CREATE`| `CREATE2`| `SELFDESTRUCT`
  * **from** `STRING`: адрес в hex
  * **to** `STRING`: адрес в hex
  * **gas** `STRING`: hex-кодированное беззнаковое 64-байтовое целое, представляющее газ события
  * **gasUsed** `STRING`: hex-кодированное беззнаковое 64-байтовое целое, представляющее gasUsed события
  * **value** `STRING`: hex-кодированное беззнаковое 64-байтовое целое, представляющее value события в wei
  * **error** `STRING`: низкоуровневая ошибка виртуальной машины
  * **errorReason** `STRING`: извлечённая причина ошибки при revert
  * **input** `STRING`: hex-кодированная строка, представляющая сырые входные байты для точки трассировки
  * **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`: массив индексов изменений активов
