From 50a4a112be63d170097dad7a88992e0c309ad040 Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 26 Feb 2024 10:11:13 -0800 Subject: [PATCH 1/4] feat: update parties to use new tx object --- src/transformers/_common/parties.ts | 21 ++++++++++----------- src/types/log.ts | 21 ++++++++++----------- src/types/transaction.ts | 28 +++++++++++----------------- 3 files changed, 31 insertions(+), 39 deletions(-) diff --git a/src/transformers/_common/parties.ts b/src/transformers/_common/parties.ts index 920f55c..676092b 100644 --- a/src/transformers/_common/parties.ts +++ b/src/transformers/_common/parties.ts @@ -17,11 +17,11 @@ export function transform(block: RawBlock): RawBlock { parties = [...parties, tx.to.toLowerCase()]; } // address from input data - const inputAddresses: string[] = tx.decode - ? tx.decode.fragment.inputs - .map((param, index) => + const inputAddresses: string[] = tx.decoded + ? tx.decoded.decoded + .map((param) => param.type === 'address' && tx.decode - ? tx.decode.args[index].toLowerCase() + ? param.decoded.toLowerCase() : '', ) .filter((address) => address !== '') @@ -42,10 +42,10 @@ export function transform(block: RawBlock): RawBlock { } } // grab event inputs params from decoded trace - const partiesFromTrace = trace.decode?.fragment.inputs - .map((param, index) => + const partiesFromTrace = trace.decoded?.decoded + .map((param) => param.type === 'address' && trace.decode - ? trace.decode.args[index].toLowerCase() + ? param.decoded.toLowerCase() : '', ) .filter((address) => address !== ''); @@ -59,10 +59,10 @@ export function transform(block: RawBlock): RawBlock { const logParties = tx.receipt.logs.map((log) => { let result = [log.address.toLowerCase()]; // grab event inputs params from decoded log - const partiesFromLog = log.decode?.fragment.inputs - .map((param, index) => + const partiesFromLog = log.decoded?.decoded + .map((param) => param.type === 'address' && log.decode - ? log.decode.args[index].toLowerCase() + ? param.decoded.toLowerCase() : '', ) .filter((address) => address !== ''); @@ -83,7 +83,6 @@ export function transform(block: RawBlock): RawBlock { (transfer) => `${transfer.asset.toLowerCase()}-${transfer.tokenId}`, ) : []; - // contracts created const contractsCreated = tx.contracts?.map((contract) => contract.address); parties = [ diff --git a/src/types/log.ts b/src/types/log.ts index bc0e854..2b77ac4 100644 --- a/src/types/log.ts +++ b/src/types/log.ts @@ -1,16 +1,15 @@ -import { StdObj, FragmentType, ParamType } from './shared'; +import { StdObj } from './shared'; export type LogDescription = { - fragment: { - name: string; - type: FragmentType; - inputs: ReadonlyArray; - anonymous: boolean; - }; - name: string; signature: string; - args: string[]; - topic: string; + signature_with_arg_names: string; + name: string; + decoded: Array<{ + indexed?: boolean; + name: string; + type: string; + decoded: string; + }>; }; export type RawLog = StdObj & { @@ -18,7 +17,7 @@ export type RawLog = StdObj & { data: string; logIndex: number; topics: string[]; - decode?: LogDescription; + decoded?: LogDescription; }; export type RawReceipt = StdObj & { diff --git a/src/types/transaction.ts b/src/types/transaction.ts index 4786c40..2945144 100644 --- a/src/types/transaction.ts +++ b/src/types/transaction.ts @@ -1,4 +1,4 @@ -import { StdObj, FragmentType, ParamType } from './shared'; +import { StdObj } from './shared'; import { AssetTransfer, NetAssetTransfers } from './asset'; import { RawReceipt } from './log'; import { Contract } from './contract'; @@ -15,7 +15,7 @@ export type RawTransaction = StdObj & { to: string; traces: RawTrace[]; contracts?: Contract[]; - decode?: TransactionDescription; + decoded?: TransactionDescription; context: TxContext; assetTransfers: AssetTransfer[]; netAssetTransfers: NetAssetTransfers; @@ -55,25 +55,19 @@ export type RawTrace = StdObj & { transactionHash: string; transactionPosition: number; type: string; - decode?: TransactionDescription; + decoded?: TransactionDescription; }; export type TransactionDescription = { - fragment: { - name: string; - type: FragmentType; - inputs: ReadonlyArray; - outputs: ReadonlyArray; - constant: boolean; - stateMutability: 'payable' | 'nonpayable' | 'view' | 'pure'; - payable: boolean; - gas: null | string; - }; - name: string; - args: string[]; signature: string; - selector: string; - value: string; + signature_with_arg_names: string; + name: string; + decoded: Array<{ + indexed?: boolean; + name: string; + type: string; + decoded: string; + }>; }; export type TxContext = { From 79f6b88aa74657430ff86c024205fbe74ff8a7cc Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 26 Feb 2024 10:22:08 -0800 Subject: [PATCH 2/4] feat: update unit test --- src/blocks/ethereum/12679108_decoded.json | 47518 ++++++++++++++++++++ src/transformers/_common/parties.spec.ts | 83 +- src/transformers/_common/parties.ts | 4 +- 3 files changed, 47533 insertions(+), 72 deletions(-) create mode 100644 src/blocks/ethereum/12679108_decoded.json diff --git a/src/blocks/ethereum/12679108_decoded.json b/src/blocks/ethereum/12679108_decoded.json new file mode 100644 index 0000000..403c90a --- /dev/null +++ b/src/blocks/ethereum/12679108_decoded.json @@ -0,0 +1,47518 @@ +{ + "difficulty": "6875300443360929", + "extraData": "0x65746865726d696e652d75732d6561737431", + "gasLimit": 14985353, + "gasUsed": 14985203, + "hash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logsBloom": "0x5927d1c2495a9481308a377dd6d13faa0a68725ade20440cc12bc61a2f5695a62d970903d024f74cfcb058a28f05f532b61f93406b0338841ac1db87a57c096e620244525b68e7295a66831b052005f1a6232755107c2b1f379b7d70c761f20197488c105e22cfd40aa4f7f0a530d97ae20e45d6d6bcac530220ffb281fa2ec40a4693a39510c0a08eed8e66399785b43c29910d2bd8aa8c6c7261537e78e8187e1da2596b58e547d7a0ebbcf91026e96a61b985806219384f33175a3a1f419c36b3cd670cae75512bd0622065ca790ccb10328b197c8c946d02778e84746362657c2ddf0156112a904f9cacd00a41594c35ce62692afe79ce596991801f7d22", + "miner": "0xEA674fdDe714fd979de3EdF0F56AA9716B898ec8", + "mixHash": "0xbd0fe92bc43fd4018574fa9c4c1f538c3c808d88c8ff2d6bc0f07cd6a1a3be65", + "nonce": "0x8f51c6548e6385c1", + "number": 12679108, + "parentHash": "0x78c9779b2b2b00c52341b96a7a91d3507362bed68ded7fff1f8bc4fa84c96be8", + "receiptsRoot": "0x0a53fbdaf5fab5cdb15cf5cebe1b559903f101f89f3bc9420879ab81beeb257b", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "size": 53694, + "stateRoot": "0xbfff742c2084efc9c4cf3dae08f9bc55de95ca77140c0d1ca11efbd3307e4640", + "timestamp": 1624298093, + "totalDifficulty": "26569393202832097907466", + "transactions": [ + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa6Ae57b1dA8238Cd149bC718c40578E4620b752c", + "gas": 12000000, + "gasPrice": "0", + "hash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "input": "0x00a9bd7eef0c7affbdbdae92105712e9ff8b06ed49020ce105870d67189c0000000000000000000000000000000000000000000018e8000736135c02d9bf00c177c4013421b1fb3f9e1bb232386ae055fa788ee0e01463b9f77c41becc96bfcf9dd75623a72dd92309e4a6", + "nonce": 27300, + "to": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + "transactionIndex": 0, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x727b801f34b0763493eb0f9552910d4ae3177258a9fd29d1736eda136b030182", + "s": "0x37e6f487301f979dfa71220508e24b1859d54f5069c224da73e690cfb6b1702e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "55951", + "effectiveGasPrice": "0", + "from": "0xa6ae57b1da8238cd149bc718c40578e4620b752c", + "gasUsed": "55951", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + ], + "data": "0x0000000000000000000000000000000000000000000000020ce105870d67189c", + "blockNumber": 12679108, + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionIndex": 0, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 0, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40" + ], + "data": "0x0000000000000000000000000000000000000000000018e8000736135c02d9bf", + "blockNumber": 12679108, + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionIndex": 0, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 1, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x00000000003b3cc22af3ae1eac0440bcee416b40" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "117616442243753714047423" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000200fc0dfe5876072f139200000000000000000000000000000000000000000000002c272e1ff8e35ef971", + "blockNumber": 12679108, + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionIndex": 0, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 2, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020ce105870d67189c0000000000000000000000000000000000000000000018e8000736135c02d9bf0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionIndex": 0, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 3, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000090000000000000000000000800000000000000000000000000000000000000000000000002000100080000001000000000000004000000000000200000000008000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000080000000000000000000000000000000080000004000000000000000000000040000000000000000000000000000000000020000000000000000000006000000000000000000000000000000000000001000000000000000000000200000000000000100000000000000000000000004000000000000000000", + "status": true, + "to": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionIndex": 0, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa6ae57b1da8238cd149bc718c40578e4620b752c", + "callType": "call", + "gas": "0xb6c374", + "input": "0x00a9bd7eef0c7affbdbdae92105712e9ff8b06ed49020ce105870d67189c0000000000000000000000000000000000000000000018e8000736135c02d9bf00c177c4013421b1fb3f9e1bb232386ae055fa788ee0e01463b9f77c41becc96bfcf9dd75623a72dd92309e4a6", + "to": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x14973", "output": "0x" }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb3db9b", + "input": "0xa9059cbb000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed490000000000000000000000000000000000000000000000020ce105870d67189c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb39f4e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000018e8000736135c02d9bf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b4000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xc1f4", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "call", + "gas": "0xb095b3", + "input": "0xa9059cbb00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b400000000000000000000000000000000000000000000018e8000736135c02d9bf", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3233", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xb061db", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1bc", + "output": "0x0000000000000000000000000000000000000000000200fc0dfe5876072f1392" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xb05e91", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000002c272e1ff8e35ef971" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb2d584", + "input": "0x", + "to": "0x3421b1fb3f9e1bb232386ae055fa788ee0e01463", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x139e", "output": "0x" }, + "subtraces": 1, + "traceAddress": [2], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "address": "0x3421b1fb3f9e1bb232386ae055fa788ee0e01463", + "refundAddress": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "balance": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": null, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "suicide" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb2b7c8", + "input": "0x", + "to": "0xb9f77c41becc96bfcf9dd75623a72dd92309e4a6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x139e", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "call" + }, + { + "action": { + "address": "0xb9f77c41becc96bfcf9dd75623a72dd92309e4a6", + "refundAddress": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "balance": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": null, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021", + "transactionPosition": 0, + "type": "suicide" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8cbA6269728B766Be59cA477e117d2F2dCEA512D", + "gas": 200598, + "gasPrice": "34000000000", + "hash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "input": "0x8803dbee00000000000000000000000000000000000000000000021e19e0c9bab2400000000000000000000000000000000000000000000000000392a33706f21a5ab54500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d0000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000003000000000000000000000000e53ec727dbdeb9e2d5456c3be40cff031ab40a55000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000725c263e32c72ddc3a19bea12c5a0479a81ee688", + "nonce": 710, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 1, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xce61566226f749e0077b89faf7162e71ac8592cffd094dfa10e73d0ec04bfa40", + "s": "0x7bc5e3074f103cb76c5b50a5170911ad0398ec55827e6704a9d8576deffc4043", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "204661", + "effectiveGasPrice": "34000000000", + "from": "0x8cba6269728b766be59ca477e117d2f2dcea512d", + "gasUsed": "148710", + "logs": [ + { + "address": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d", + "0x00000000000000000000000025647e01bd0967c1b9599fa3521939871d1d0888" + ], + "data": "0x000000000000000000000000000000000000000000000392a33706f21a5ab1ae", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 4, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x8cba6269728b766be59ca477e117d2f2dcea512d" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x25647e01bd0967c1b9599fa3521939871d1d0888" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "16872084959959325520302" + } + ] + } + }, + { + "address": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffedc96da2c79ace73c979", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 5, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x8cba6269728b766be59ca477e117d2f2dcea512d" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640563953448316488369554311545" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000025647e01bd0967c1b9599fa3521939871d1d0888", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + ], + "data": "0x0000000000000000000000000000000000000000000000002efe5721db947c1a", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 6, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x25647E01Bd0967C1B9599FA3521939871D1d0888", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000000689925e6d664e8eb4b00000000000000000000000000000000000000000007f14455712c09ffbd5a22", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 7, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x25647E01Bd0967C1B9599FA3521939871D1d0888", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000392a33706f21a5ab1ae0000000000000000000000000000000000000000000000002efe5721db947c1a0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 8, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "0x0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d" + ], + "data": "0x00000000000000000000000000000000000000000000021e19e0c9bab2400000", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 9, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x00000000003b3cc22af3ae1eac0440bcee416b40" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "117616442243753714047423" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000001feddf41d8ebb54ef139200000000000000000000000000000000000000000000002c562c771abef3758b", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 10, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002efe5721db947c1a00000000000000000000000000000000000000000000021e19e0c9bab24000000000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 11, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000400000000000000090000022000000000000000800010000000000000000000000000000000000000000000002000000080000001000000000600004000000000000200000000008000000200000000000100000001000000000000000000000000000000000000000001000000000000000000000000012000000000000000000000080004000000000000000000000000000082000004000000000020000000010040000000000000000000000000000000000020000000000000002000002000000000000000000000000000000000000001000000000000020000010200000000000000000000000000000000000000004000000000100000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionIndex": 1, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8cba6269728b766be59ca477e117d2f2dcea512d", + "callType": "call", + "gas": "0x2b3ee", + "input": "0x8803dbee00000000000000000000000000000000000000000000021e19e0c9bab2400000000000000000000000000000000000000000000000000392a33706f21a5ab54500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d0000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000003000000000000000000000000e53ec727dbdeb9e2d5456c3be40cff031ab40a55000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000725c263e32c72ddc3a19bea12c5a0479a81ee688", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1ff1e", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000392a33706f21a5ab1ae0000000000000000000000000000000000000000000000002efe5721db947c1a00000000000000000000000000000000000000000000021e19e0c9bab2400000" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x296dd", + "input": "0x0902f1ac", + "to": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000200fc0dfe5876072f139200000000000000000000000000000000000000000000002c272e1ff8e35ef9710000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x27a6a", + "input": "0x0902f1ac", + "to": "0x25647e01bd0967c1b9599fa3521939871d1d0888", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000068c8243df8407d676500000000000000000000000000000000000000000007edb1b23a2517e562a8740000000000000000000000000000000000000000000000000000000060d0cc86" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x25c1f", + "input": "0x23b872dd0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d00000000000000000000000025647e01bd0967c1b9599fa3521939871d1d0888000000000000000000000000000000000000000000000392a33706f21a5ab1ae", + "to": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x501e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x201e4", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000002efe5721db947c1a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed4900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x25647e01bd0967c1b9599fa3521939871d1d0888", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xba5e", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x25647e01bd0967c1b9599fa3521939871d1d0888", + "callType": "call", + "gas": "0x1c66f", + "input": "0xa9059cbb000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed490000000000000000000000000000000000000000000000002efe5721db947c1a", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x25647e01bd0967c1b9599fa3521939871d1d0888", + "callType": "staticcall", + "gas": "0x1928d", + "input": "0x70a0823100000000000000000000000025647e01bd0967c1b9599fa3521939871d1d0888", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000689925e6d664e8eb4b" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x25647e01bd0967c1b9599fa3521939871d1d0888", + "callType": "staticcall", + "gas": "0x18eea", + "input": "0x70a0823100000000000000000000000025647e01bd0967c1b9599fa3521939871d1d0888", + "to": "0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1eb", + "output": "0x00000000000000000000000000000000000000000007f14455712c09ffbd5a22" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14330", + "input": "0x022c0d9f00000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x9174", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "call", + "gas": "0x10ab6", + "input": "0xa9059cbb0000000000000000000000008cba6269728b766be59ca477e117d2f2dcea512d00000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3233", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xd6de", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1bc", + "output": "0x00000000000000000000000000000000000000000001feddf41d8ebb54ef1392" + }, + "subtraces": 0, + "traceAddress": [4, 1], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xd394", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000002c562c771abef3758b" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x55e8a1051678c6e8212eefff32793151372be959f2c7d5ac434b05a8c9e85dff", + "transactionPosition": 1, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa6Ae57b1dA8238Cd149bC718c40578E4620b752c", + "gas": 12000000, + "gasPrice": "0", + "hash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "input": "0x01725c263e32c72ddc3a19bea12c5a0479a81ee688a9bd7eef0c7affbdbdae92105712e9ff8b06ed490000000000000000000000000000000000000000000018e8000736135c02d9bf020e1ef364bfe67cf800c177c4018919645f359700da62642f2758fb3c51dd5a5d44bde5299e4dc2c062c755522c2e37c42519a048c2", + "nonce": 27301, + "to": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + "transactionIndex": 2, + "value": "83493334083806217", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xdbb3f6b26be4cd135ff7a144a3ab33fd90d45615b5cd45823c07f8d871c9e70e", + "s": "0x30c14a28e58ccda95ebeb6917de456f9acb2031dfe10449041a47110400a1c8a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "259843", + "effectiveGasPrice": "0", + "from": "0xa6ae57b1da8238cd149bc718c40578e4620b752c", + "gasUsed": "55182", + "logs": [ + { + "address": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + ], + "data": "0x0000000000000000000000000000000000000000000018e8000736135c02d9bf", + "blockNumber": 12679108, + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionIndex": 2, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 12, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x00000000003b3cc22af3ae1eac0440bcee416b40" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "117616442243753714047423" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40" + ], + "data": "0x0000000000000000000000000000000000000000000000020e1ef364bfe67cf8", + "blockNumber": 12679108, + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionIndex": 2, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 13, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000217c5f424c4ceb0f1ed5100000000000000000000000000000000000000000000002a480d83b5ff0cf893", + "blockNumber": 12679108, + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionIndex": 2, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 14, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xa9Bd7EEF0c7AfFbdBDAE92105712E9Ff8b06Ed49", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40", + "0x00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b40" + ], + "data": "0x0000000000000000000000000000000000000000000018e8000736135c02d9bf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1ef364bfe67cf8", + "blockNumber": 12679108, + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionIndex": 2, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 15, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000090000000000000000000000800000000000000000000000000000000000000000000000002000100080000001000000000000004000000000000200000000008000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000080000000000000000000000000000000080000004000000000000000000000040000000000000000000000000000000000020000000000000000000006000000000000000000000000000000000000001000000000000000000000200000000000000100000000000000000000000004000000000000000000", + "status": true, + "to": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionIndex": 2, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa6ae57b1da8238cd149bc718c40578e4620b752c", + "callType": "call", + "gas": "0xb6c234", + "input": "0x01725c263e32c72ddc3a19bea12c5a0479a81ee688a9bd7eef0c7affbdbdae92105712e9ff8b06ed490000000000000000000000000000000000000000000018e8000736135c02d9bf020e1ef364bfe67cf800c177c4018919645f359700da62642f2758fb3c51dd5a5d44bde5299e4dc2c062c755522c2e37c42519a048c2", + "to": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "value": "0x128a0beb72da409" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x14532", "output": "0x" }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb3da5b", + "input": "0xa9059cbb000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed490000000000000000000000000000000000000000000018e8000736135c02d9bf", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3233", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb39e51", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1ef364bfe67cf800000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b4000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x994f", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "call", + "gas": "0xb0949b", + "input": "0xa9059cbb00000000000000000000000000000000003b3cc22af3ae1eac0440bcee416b400000000000000000000000000000000000000000000000020e1ef364bfe67cf8", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xb060cc", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0x725c263e32c72ddc3a19bea12c5a0479a81ee688", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1bc", + "output": "0x0000000000000000000000000000000000000000000217c5f424c4ceb0f1ed51" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "callType": "staticcall", + "gas": "0xb05d82", + "input": "0x70a08231000000000000000000000000a9bd7eef0c7affbdbdae92105712e9ff8b06ed49", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000002a480d83b5ff0cf893" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xea674fdde714fd979de3edf0f56aa9716b898ec8", + "value": "0x128a0beb72da409" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb2d86f", + "input": "0x", + "to": "0x8919645f359700da62642f2758fb3c51dd5a5d44", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x139e", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "address": "0x8919645f359700da62642f2758fb3c51dd5a5d44", + "refundAddress": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "balance": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": null, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "suicide" + }, + { + "action": { + "from": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "callType": "call", + "gas": "0xb2bab3", + "input": "0x", + "to": "0xbde5299e4dc2c062c755522c2e37c42519a048c2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x139e", "output": "0x" }, + "subtraces": 1, + "traceAddress": [4], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "call" + }, + { + "action": { + "address": "0xbde5299e4dc2c062c755522c2e37c42519a048c2", + "refundAddress": "0x00000000003b3cc22af3ae1eac0440bcee416b40", + "balance": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": null, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x9c9b4a2a1fb2b5531d8432fd4d66957ff1f710ad51706eed0102bb360f98f555", + "transactionPosition": 2, + "type": "suicide" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9086Dd791ce71dE4180c8B778CF37B6afc510eFd", + "gas": 182036, + "gasPrice": "108900000000", + "hash": "0x15ce6c1b47a1352abdbbaec20193af109f4619625bfd562e5cf9eeae2e494fd0", + "input": "0x414bf389000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000004a220e6096b25eadb88358cb44068a32482546750000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000009086dd791ce71de4180c8b778cf37b6afc510efd0000000000000000000000000000000000000000000000000000000060a165a900000000000000000000000000000000000000000000000018d75b8423f3000000000000000000000000000000000000000000000000000723aab4b3465e3edb0000000000000000000000000000000000000000000000000000000000000000", + "nonce": 1, + "to": "0xE592427A0AEce92De3Edee1F18E0157C05861564", + "transactionIndex": 3, + "value": "1790000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3060db7606ad0d9255a567e00cb4c9a899e00c320b3a485b4ebace2d676a1879", + "s": "0x43d78b2f09a40ead09748089f3ab5698b97448cec4cbcaf1ce6b99319033e324", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "283382", + "effectiveGasPrice": "108900000000", + "from": "0x9086dd791ce71de4180c8b778cf37b6afc510efd", + "gasUsed": "23539", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": false, + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "transactionHash": "0x15ce6c1b47a1352abdbbaec20193af109f4619625bfd562e5cf9eeae2e494fd0", + "transactionIndex": 3, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9086dd791ce71de4180c8b778cf37b6afc510efd", + "callType": "call", + "gas": "0x26d00", + "input": "0x414bf389000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000004a220e6096b25eadb88358cb44068a32482546750000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000009086dd791ce71de4180c8b778cf37b6afc510efd0000000000000000000000000000000000000000000000000000000060a165a900000000000000000000000000000000000000000000000018d75b8423f3000000000000000000000000000000000000000000000000000723aab4b3465e3edb0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x18d75b8423f30000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "error": "Reverted", + "result": { + "gasUsed": "0x1df", + "output": "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000135472616e73616374696f6e20746f6f206f6c6400000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x15ce6c1b47a1352abdbbaec20193af109f4619625bfd562e5cf9eeae2e494fd0", + "transactionPosition": 3, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xCa414d3A496307239E7a4417e99a7Ff76FBBc6a0", + "gas": 80000, + "gasPrice": "74000000000", + "hash": "0xcbf3bd16a87019a895a5833cfe11c47cfb6bf21796cf79b959a22951acb1490f", + "input": "0xa9059cbb000000000000000000000000b02f1329d6a6acef07a763258f8509c2847a0a3e0000000000000000000000000000000000000000000000000000000150ceeffa", + "nonce": 4, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 4, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7944fdfbca178e08a9a0411fbcdac2efeab7b52e45810431768e755ac9bb6368", + "s": "0xe8b32e29f199cf197423fdffbefbce0a0bbac18f6192294c111d25f1e1661b0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "314503", + "effectiveGasPrice": "74000000000", + "from": "0xca414d3a496307239e7a4417e99a7ff76fbbc6a0", + "gasUsed": "31121", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ca414d3a496307239e7a4417e99a7ff76fbbc6a0", + "0x000000000000000000000000b02f1329d6a6acef07a763258f8509c2847a0a3e" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000150ceeffa", + "blockNumber": 12679108, + "transactionHash": "0xcbf3bd16a87019a895a5833cfe11c47cfb6bf21796cf79b959a22951acb1490f", + "transactionIndex": 4, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 16, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000010000000000000000000000000000000000000000000000000000000000000000000100000000000000200200000000080000000000000000000000000000000000000000000000002000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0xcbf3bd16a87019a895a5833cfe11c47cfb6bf21796cf79b959a22951acb1490f", + "transactionIndex": 4, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xca414d3a496307239e7a4417e99a7ff76fbbc6a0", + "callType": "call", + "gas": "0xe40c", + "input": "0xa9059cbb000000000000000000000000b02f1329d6a6acef07a763258f8509c2847a0a3e0000000000000000000000000000000000000000000000000000000150ceeffa", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcbf3bd16a87019a895a5833cfe11c47cfb6bf21796cf79b959a22951acb1490f", + "transactionPosition": 4, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8C8D7C46219D9205f056f28fee5950aD564d7465", + "gas": 21000, + "gasPrice": "50000000000", + "hash": "0xf0a158c90fa0e70c86de8013d719f78d264a5fb62ae5ecab972028d579f47d81", + "input": "0x", + "nonce": 5901, + "to": "0xdE8cf7f1c6C96d0938970D4eCf5f83755cad06a4", + "transactionIndex": 5, + "value": "24817259465491920", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xbb2462fc9ed629af240549577d7fdeab0fae95e2d48d8a96570b30c9e2f91045", + "s": "0x5f2dc5e27f458ee9a04517c2fe9f39fd53faea8e49dc7220ae34c7d46ad0235b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "335503", + "effectiveGasPrice": "50000000000", + "from": "0x8c8d7c46219d9205f056f28fee5950ad564d7465", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xde8cf7f1c6c96d0938970d4ecf5f83755cad06a4", + "transactionHash": "0xf0a158c90fa0e70c86de8013d719f78d264a5fb62ae5ecab972028d579f47d81", + "transactionIndex": 5, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8c8d7c46219d9205f056f28fee5950ad564d7465", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xde8cf7f1c6c96d0938970d4ecf5f83755cad06a4", + "value": "0x582b2a7ebd45d0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xf0a158c90fa0e70c86de8013d719f78d264a5fb62ae5ecab972028d579f47d81", + "transactionPosition": 5, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8C8D7C46219D9205f056f28fee5950aD564d7465", + "gas": 65000, + "gasPrice": "50000000000", + "hash": "0xab08705c317e65227a8f3ca6d3c9337b49558c14ec77d08386c14e100ec51901", + "input": "0xa9059cbb00000000000000000000000004e684cf6c74fe87a4091f85012ca1e6bb63d7f7000000000000000000000000000000000000000000000000000000000a488122", + "nonce": 5902, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 6, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x30e82608c52c38f4afb180929440100af01969700591a1503ca704c180af9c39", + "s": "0x7cc754b870487437874a873ce117eaf283382f74b526c4ffb712ab8512a37060", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "381612", + "effectiveGasPrice": "50000000000", + "from": "0x8c8d7c46219d9205f056f28fee5950ad564d7465", + "gasUsed": "46109", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008c8d7c46219d9205f056f28fee5950ad564d7465", + "0x00000000000000000000000004e684cf6c74fe87a4091f85012ca1e6bb63d7f7" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000a488122", + "blockNumber": 12679108, + "transactionHash": "0xab08705c317e65227a8f3ca6d3c9337b49558c14ec77d08386c14e100ec51901", + "transactionIndex": 6, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 17, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000010000000000000000000000400000000000000000000000000000000008000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000080000000000000000000000000000000000000000000000002000000000000000000000000000000000040000000000000000000000000000000000000000000800000000000000000000000000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0xab08705c317e65227a8f3ca6d3c9337b49558c14ec77d08386c14e100ec51901", + "transactionIndex": 6, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8c8d7c46219d9205f056f28fee5950ad564d7465", + "callType": "call", + "gas": "0xa980", + "input": "0xa9059cbb00000000000000000000000004e684cf6c74fe87a4091f85012ca1e6bb63d7f7000000000000000000000000000000000000000000000000000000000a488122", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xab08705c317e65227a8f3ca6d3c9337b49558c14ec77d08386c14e100ec51901", + "transactionPosition": 6, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8612337f0138B7b1331666Bd3C3F879FEDd0C0F2", + "gas": 21000, + "gasPrice": "49285714285", + "hash": "0x084bb502be094bccfd58cf1379b09d01f80e70d10e1b2f5b682c5d2bd4efc212", + "input": "0x", + "nonce": 7, + "to": "0x36B6Ce682459aA275877a83C9aC249a7E0BB6c98", + "transactionIndex": 7, + "value": "818391751741970317", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xb6b7fb1c953e633723ea8f1c5de04624cec75afc39769894a3538f303a57d52e", + "s": "0x28cfb5c2657c0d99935230b617a303cf040393a7a2a0538f5653b98cee37b985", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "402612", + "effectiveGasPrice": "49285714285", + "from": "0x8612337f0138b7b1331666bd3c3f879fedd0c0f2", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x36b6ce682459aa275877a83c9ac249a7e0bb6c98", + "transactionHash": "0x084bb502be094bccfd58cf1379b09d01f80e70d10e1b2f5b682c5d2bd4efc212", + "transactionIndex": 7, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8612337f0138b7b1331666bd3c3f879fedd0c0f2", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x36b6ce682459aa275877a83c9ac249a7e0bb6c98", + "value": "0xb5b82f651b0978d" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x084bb502be094bccfd58cf1379b09d01f80e70d10e1b2f5b682c5d2bd4efc212", + "transactionPosition": 7, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0078A70FdAb38E8E910faCb87A122ABDdbA187e8", + "gas": 236778, + "gasPrice": "40000000000", + "hash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "input": "0x791ac9470000000000000000000000000000000000000000000000000000704ded8970000000000000000000000000000000000000000000000000000414dc2158f4993400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000078a70fdab38e8e910facb87a122abddba187e80000000000000000000000000000000000000000000000000000000060d0d283000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000f29171d7bcdc464a0758cf3217fe83173772b9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 1623, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 8, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xab0cb961cf19625d241963b80176ca93bbb89a53a2aafac30ffedd00f0a59f91", + "s": "0x7300c1b50700259072db9676dbc5bd32f5067d88f17ad385cfb0853d9180efcb", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "575039", + "effectiveGasPrice": "40000000000", + "from": "0x0078a70fdab38e8e910facb87a122abddba187e8", + "gasUsed": "172427", + "logs": [ + { + "address": "0x00F29171D7bCDC464a0758cF3217fE83173772b9", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000078a70fdab38e8e910facb87a122abddba187e8", + "0x000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b3" + ], + "data": "0x00000000000000000000000000000000000000000000000000006f2e6db8b400", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 18, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0078a70fdab38e8e910facb87a122abddba187e8" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xae0fd242029b383d325d4828e9fa36ca935da5b3" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "122245200000000" + } + ] + } + }, + { + "address": "0x00F29171D7bCDC464a0758cF3217fE83173772b9", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000000078a70fdab38e8e910facb87a122abddba187e8", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff13ec265b0bff", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 19, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x0078a70fdab38e8e910facb87a122abddba187e8" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457583748343129639935" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b3", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000041fd1ebc763069c", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 20, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xAe0FD242029b383D325d4828E9fa36cA935Da5b3", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000000003f9f2dd787f39d000000000000000000000000000000000000000000000002597bb90e948bf32e", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 21, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xAe0FD242029b383D325d4828E9fa36cA935Da5b3", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000006f4006cec96000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041fd1ebc763069c", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 22, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000041fd1ebc763069c", + "blockNumber": 12679108, + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 23, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x002000000000000000000000800000000000000008000000000100000200000000000000000000002800000004000000020000000800000000000000002000000000000000000000000000090000002000000000004000000000000000000000000000000000000000000000200000000000000000000c4000000010000000000000000000000000004000000000000000000000000000080000004000000000020000000000000000000000000000000000000000001000000000400000000000000002000000000000000000000000020000000000001000000002000020000010200000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionIndex": 8, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0078a70fdab38e8e910facb87a122abddba187e8", + "callType": "call", + "gas": "0x34306", + "input": "0x791ac9470000000000000000000000000000000000000000000000000000704ded8970000000000000000000000000000000000000000000000000000414dc2158f4993400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000078a70fdab38e8e910facb87a122abddba187e80000000000000000000000000000000000000000000000000000000060d0d283000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000f29171d7bcdc464a0758cf3217fe83173772b9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2a053", "output": "0x" }, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x32405", + "input": "0x23b872dd0000000000000000000000000078a70fdab38e8e910facb87a122abddba187e8000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b30000000000000000000000000000000000000000000000000000704ded897000", + "to": "0x00f29171d7bcdc464a0758cf3217fe83173772b9", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x10284", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x21549", + "input": "0x0902f1ac", + "to": "0xae0fd242029b383d325d4828e9fa36ca935da5b3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000000003f2fedd0b92a3d0000000000000000000000000000000000000000000000025d9b8afa5beef9ca0000000000000000000000000000000000000000000000000000000060d0d022" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x209aa", + "input": "0x70a08231000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b3", + "to": "0x00f29171d7bcdc464a0758cf3217fe83173772b9", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x13f5", + "output": "0x000000000000000000000000000000000000000000000000003f9f2dd787f39d" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1f005", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041fd1ebc763069c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xae0fd242029b383d325d4828e9fa36ca935da5b3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x10f34", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0xae0fd242029b383d325d4828e9fa36ca935da5b3", + "callType": "call", + "gas": "0x1b4b9", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000041fd1ebc763069c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0xae0fd242029b383d325d4828e9fa36ca935da5b3", + "callType": "staticcall", + "gas": "0x13f2a", + "input": "0x70a08231000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b3", + "to": "0x00f29171d7bcdc464a0758cf3217fe83173772b9", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x13f5", + "output": "0x000000000000000000000000000000000000000000000000003f9f2dd787f39d" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0xae0fd242029b383d325d4828e9fa36ca935da5b3", + "callType": "staticcall", + "gas": "0x129ef", + "input": "0x70a08231000000000000000000000000ae0fd242029b383d325d4828e9fa36ca935da5b3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000002597bb90e948bf32e" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0xe340", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000041fd1ebc763069c" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xdf8a", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000041fd1ebc763069c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x41fd1ebc763069c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xa0bb", + "input": "0x", + "to": "0x0078a70fdab38e8e910facb87a122abddba187e8", + "value": "0x41fd1ebc763069c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0x81f65b273b7df5ad3daaf564cec7ad06b70598d963f113760f289cdf4f141a3a", + "transactionPosition": 8, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "11501758286181452164306" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "883654538300447116" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298125" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x000000Aaee6A496aaf7b7452518781786313400f", + "gas": 74376, + "gasPrice": "40000000000", + "hash": "0x2302f12f5a268129f28418976991d21859b14c6f8f1e0f8733f6bc0b06a57dc3", + "input": "0x095ea7b3000000000000000000000000e8ed79deff7ccc838150278448a65987c92bf056ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 4656, + "to": "0x5166E09628b696285E3A151e84FB977736a83575", + "transactionIndex": 9, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x243d8b8a06fbd14efa9104e91a9f449037fc9525589ca92109ea552d7f0d9e83", + "s": "0x18a6ecfebb83f88d261feb09372a65c301c5a542ac33b60fb93113c9f9f5163", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "624269", + "effectiveGasPrice": "40000000000", + "from": "0x000000aaee6a496aaf7b7452518781786313400f", + "gasUsed": "49230", + "logs": [ + { + "address": "0x5166E09628b696285E3A151e84FB977736a83575", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000000000aaee6a496aaf7b7452518781786313400f", + "0x000000000000000000000000e8ed79deff7ccc838150278448a65987c92bf056" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x2302f12f5a268129f28418976991d21859b14c6f8f1e0f8733f6bc0b06a57dc3", + "transactionIndex": 9, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 24, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x000000aaee6a496aaf7b7452518781786313400f" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe8ed79deff7ccc838150278448a65987c92bf056" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000200200000000000000000000000000000000000000000000000000000000008000000000000000000080000000000000000100000000000000000200000000000000000000000000000000000000000000000000000000000200000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010008800000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5166e09628b696285e3a151e84fb977736a83575", + "transactionHash": "0x2302f12f5a268129f28418976991d21859b14c6f8f1e0f8733f6bc0b06a57dc3", + "transactionIndex": 9, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x000000aaee6a496aaf7b7452518781786313400f", + "callType": "call", + "gas": "0xccd0", + "input": "0x095ea7b3000000000000000000000000e8ed79deff7ccc838150278448a65987c92bf056ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x5166e09628b696285e3a151e84fb977736a83575", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6a96", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x2302f12f5a268129f28418976991d21859b14c6f8f1e0f8733f6bc0b06a57dc3", + "transactionPosition": 9, + "type": "call" + }, + { + "action": { + "from": "0x5166e09628b696285e3a151e84fb977736a83575", + "callType": "delegatecall", + "gas": "0xbf75", + "input": "0x095ea7b3000000000000000000000000e8ed79deff7ccc838150278448a65987c92bf056ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x54aef07ade960bac28198f1b2135468e45788ac3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6020", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x2302f12f5a268129f28418976991d21859b14c6f8f1e0f8733f6bc0b06a57dc3", + "transactionPosition": 9, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe8ed79deff7ccc838150278448a65987c92bf056" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0A0A19a42aD8A713D3b0a050B944b6cCed3b93da", + "gas": 2751242, + "gasPrice": "35000000000", + "hash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000144c04b8d59000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6bb00000000000000000000000000000000000000000000010f0cf064dd592000000000000000000000000000000000000000000000000000001e339d34013d0a7300000000000000000000000000000000000000000000000000000000000000426b175474e89094c44da98b954eedeac495271d0f0001f4dac17f958d2ee523a2206206994597c13d831ec70001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c0000000000000000000000000000000000000000000000001e339d34013d0a730000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da00000000000000000000000000000000000000000000000000000000", + "nonce": 76, + "to": "0xE592427A0AEce92De3Edee1F18E0157C05861564", + "transactionIndex": 10, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x74580229d54090532c9f716735210d5b38159a36dfa583d74d4a22eff2fd7f15", + "s": "0x418ae8c0ff2f742fc31906423194d5b955ba6587d1464a9e53741860d44d4d7d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "833258", + "effectiveGasPrice": "35000000000", + "from": "0x0a0a19a42ad8a713d3b0a050b944b6cced3b93da", + "gasUsed": "208989", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x000000000000000000000000000000000000000000000000000000012a1ff42a", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 25, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + }, + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da", + "0x0000000000000000000000006f48eca74b38d2936b02ab603ff4e36a6c0e3a77" + ], + "data": "0x00000000000000000000000000000000000000000000010f0cf064dd59200000", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 26, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "address": "0x6f48ECa74B38d2936B02ab603FF4e36A6C0E3A77", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x00000000000000000000000000000000000000000000010f0cf064dd59200000fffffffffffffffffffffffffffffffffffffffffffffffffffffffed5e00bd60000000000000000000000000000000000000000000010c8c5f6f707161665a20000000000000000000000000000000000000000000006ca92091e74c2c8ae78fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbc8a4", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 27, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000011b815efb8f581194ae79006d24e0d814b7697f6", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x000000000000000000000000000000000000000000000000241037eb070cbb5d", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 28, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x00000000000000000000000011b815efb8f581194ae79006d24e0d814b7697f6" + ], + "data": "0x000000000000000000000000000000000000000000000000000000012a1ff42a", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 29, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + }, + { + "address": "0x11b815efB8f581194ae79006d24E0d814B7697F6", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffdbefc814f8f344a3000000000000000000000000000000000000000000000000000000012a1ff42a00000000000000000000000000000000000000000002dff96b5b9e7011b4c3e00000000000000000000000000000000000000000000000000543398658dac42afffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcf007", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 30, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x000000000000000000000000000000000000000000000000241037eb070cbb5d", + "blockNumber": 12679108, + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 31, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00000002000000000000000000800000000000000000000000000000000000000000000000000000000000000000010002080000080020000000000000000000000000000000000800000008000000000000000000400000000010000000000010000010000000000000100000000000020000000000040000000890000800000000000000000000000000000000000000000000000000000400000000100000000000000000000000000080800000000000000000000000002004000000000000000002000000000000000000000000000002000000000000000002000000000000200000000000100000000000000000000020000000000208001000000000", + "status": true, + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionIndex": 10, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0a0a19a42ad8a713d3b0a050b944b6cced3b93da", + "callType": "call", + "gas": "0x29989e", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000144c04b8d59000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6bb00000000000000000000000000000000000000000000010f0cf064dd592000000000000000000000000000000000000000000000000000001e339d34013d0a7300000000000000000000000000000000000000000000000000000000000000426b175474e89094c44da98b954eedeac495271d0f0001f4dac17f958d2ee523a2206206994597c13d831ec70001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c0000000000000000000000000000000000000000000000001e339d34013d0a730000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da00000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3269d", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000241037eb070cbb5d0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x28ed7d", + "input": "0xc04b8d59000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6bb00000000000000000000000000000000000000000000010f0cf064dd592000000000000000000000000000000000000000000000000000001e339d34013d0a7300000000000000000000000000000000000000000000000000000000000000426b175474e89094c44da98b954eedeac495271d0f0001f4dac17f958d2ee523a2206206994597c13d831ec70001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2d3e2", + "output": "0x000000000000000000000000000000000000000000000000241037eb070cbb5d" + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x282d52", + "input": "0x128acb08000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000010f0cf064dd5920000000000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da000000000000000000000000000000000000000000000000000000000000002b6b175474e89094c44da98b954eedeac495271d0f0001f4dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000", + "to": "0x6f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1419d", + "output": "0x00000000000000000000000000000000000000000000010f0cf064dd59200000fffffffffffffffffffffffffffffffffffffffffffffffffffffffed5e00bd6" + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x6f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "callType": "call", + "gas": "0x271e13", + "input": "0xa9059cbb000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000012a1ff42a", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x6f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "callType": "staticcall", + "gas": "0x26b357", + "input": "0x70a082310000000000000000000000006f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x000000000000000000000000000000000000000000116e7f4896da081bbeaedc" + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x6f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "callType": "call", + "gas": "0x26a640", + "input": "0xfa461e3300000000000000000000000000000000000000000000010f0cf064dd59200000fffffffffffffffffffffffffffffffffffffffffffffffffffffffed5e00bd6000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da000000000000000000000000000000000000000000000000000000000000002b6b175474e89094c44da98b954eedeac495271d0f0001f4dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4442", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x25fd4b", + "input": "0x23b872dd0000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da0000000000000000000000006f48eca74b38d2936b02ab603ff4e36a6c0e3a7700000000000000000000000000000000000000000000010f0cf064dd59200000", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x346a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x6f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "callType": "staticcall", + "gas": "0x266096", + "input": "0x70a082310000000000000000000000006f48eca74b38d2936b02ab603ff4e36a6c0e3a77", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25a", + "output": "0x000000000000000000000000000000000000000000116f8e55873ee574deaedc" + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x26d4e7", + "input": "0x128acb08000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012a1ff42a000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000002bdac17f958d2ee523a2206206994597c13d831ec70001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0x11b815efb8f581194ae79006d24e0d814b7697f6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15745", + "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffdbefc814f8f344a3000000000000000000000000000000000000000000000000000000012a1ff42a" + }, + "subtraces": 4, + "traceAddress": [0, 1], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x11b815efb8f581194ae79006d24e0d814b7697f6", + "callType": "call", + "gas": "0x25b5d2", + "input": "0xa9059cbb000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000241037eb070cbb5d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x11b815efb8f581194ae79006d24e0d814b7697f6", + "callType": "staticcall", + "gas": "0x253f36", + "input": "0x70a0823100000000000000000000000011b815efb8f581194ae79006d24e0d814b7697f6", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xbd7", + "output": "0x00000000000000000000000000000000000000000000000000000175e8baf3b2" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x11b815efb8f581194ae79006d24e0d814b7697f6", + "callType": "call", + "gas": "0x253078", + "input": "0xfa461e33ffffffffffffffffffffffffffffffffffffffffffffffffdbefc814f8f344a3000000000000000000000000000000000000000000000000000000012a1ff42a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000002bdac17f958d2ee523a2206206994597c13d831ec70001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x34fd", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 2], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x248da9", + "input": "0xa9059cbb00000000000000000000000011b815efb8f581194ae79006d24e0d814b7697f6000000000000000000000000000000000000000000000000000000012a1ff42a", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x25e5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0x11b815efb8f581194ae79006d24e0d814b7697f6", + "callType": "staticcall", + "gas": "0x24f9d7", + "input": "0x70a0823100000000000000000000000011b815efb8f581194ae79006d24e0d814b7697f6", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x407", + "output": "0x0000000000000000000000000000000000000000000000000000017712dae7dc" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x262232", + "input": "0x49404b7c0000000000000000000000000000000000000000000000001e339d34013d0a730000000000000000000000000a0a19a42ad8a713d3b0a050b944b6cced3b93da", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x46fd", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "staticcall", + "gas": "0x2586e9", + "input": "0x70a08231000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000241037eb070cbb5d" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x258320", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000241037eb070cbb5d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 1], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x241037eb070cbb5d" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x254451", + "input": "0x", + "to": "0x0a0a19a42ad8a713d3b0a050b944b6cced3b93da", + "value": "0x241037eb070cbb5d" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x57e6714b38e8d363fb6e3fc6743a4840a20915209e1170714808fac6df717de6", + "transactionPosition": 10, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xdCA393937B570007E5770446aB195f16F5bA03bF", + "gas": 347297, + "gasPrice": "34000000000", + "hash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "input": "0x474cf53d0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000000000000000000", + "nonce": 256, + "to": "0xcc9a0B7c43DC2a5F023Bb9b738E45B0Ef6B06E04", + "transactionIndex": 11, + "value": "300000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x1202d0c9242976ee0565121d75c31ff642e0dbd0720e60f136022f673622dcb5", + "s": "0x46d6f8042493eb6bce3840f49e2d3e1994a45a11669afcbdcea1e9f54bbbbd9b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1074216", + "effectiveGasPrice": "34000000000", + "from": "0xdca393937b570007e5770446ab195f16f5ba03bf", + "gasUsed": "240958", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x000000000000000000000000cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 32, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", + "topics": [ + "0x5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc", + "0x000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e" + ], + "data": "0x0000000000000000000000000000000000000000000000000031b6b8452f87a1", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 33, + "removed": false, + "decoded": { + "signature": "AssetIndexUpdated(address,uint256)", + "signature_with_arg_names": "AssetIndexUpdated(address indexed asset,uint256 index)", + "name": "AssetIndexUpdated", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "asset", + "type": "address", + "decoded": "0x030ba81f1c18d280636f32af80b9aad02cf0854e" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "index", + "type": "uint256", + "decoded": "13993176409802657" + } + ] + } + }, + { + "address": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", + "topics": [ + "0xbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b", + "0x000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c", + "0x000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e" + ], + "data": "0x0000000000000000000000000000000000000000000000000031b6b8452f87a1", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 34, + "removed": false, + "decoded": { + "signature": "UserIndexUpdated(address,address,uint256)", + "signature_with_arg_names": "UserIndexUpdated(address indexed user,address indexed asset,uint256 index)", + "name": "UserIndexUpdated", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": true, + "internalType": "address", + "name": "asset", + "type": "address", + "decoded": "0x030ba81f1c18d280636f32af80b9aad02cf0854e" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "index", + "type": "uint256", + "decoded": "13993176409802657" + } + ] + } + }, + { + "address": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", + "topics": [ + "0x2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76", + "0x000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c" + ], + "data": "0x000000000000000000000000000000000000000000000000000008061b2a8b8e", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 35, + "removed": false, + "decoded": { + "signature": "RewardsAccrued(address,uint256)", + "signature_with_arg_names": "RewardsAccrued(address indexed user,uint256 amount)", + "name": "RewardsAccrued", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "39168391683385061" + } + ] + } + }, + { + "address": "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c" + ], + "data": "0x0000000000000000000000000000000000000000000000000002af51a4f99a55", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 36, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e", + "topics": [ + "0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f", + "0x000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c" + ], + "data": "0x0000000000000000000000000000000000000000000000000002af51a4f99a5500000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 37, + "removed": false, + "decoded": { + "signature": "Mint(address,uint256,uint256)", + "signature_with_arg_names": "Mint(address indexed sender,uint256 amount0,uint256 amount1)", + "name": "Mint", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0", + "type": "uint256", + "decoded": "300000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1", + "type": "uint256", + "decoded": "1007302249887498400840212772" + } + ] + } + }, + { + "address": "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9", + "topics": [ + "0x804c9b842b2748a22bb64b345453a3de7ca54a6ca45ce00d415894979e22897a", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ], + "data": "0x000000000000000000000000000000000000000000011a00b022f11a6af1162d00000000000000000000000000000000000000000026a8c0dc1fdb8e4526d6550000000000000000000000000000000000000000000b13347b1cac911f52451100000000000000000000000000000000000000000341388c6245d5fea8d2e1240000000000000000000000000000000000000000034181a52b3f6efafe9d8927", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 38, + "removed": false, + "decoded": { + "signature": "ReserveDataUpdated(address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "ReserveDataUpdated(address indexed reserve,uint256 liquidityRate,uint256 stableBorrowRate,uint256 variableBorrowRate,uint256 liquidityIndex,uint256 variableBorrowIndex)", + "name": "ReserveDataUpdated", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "reserve", + "type": "address", + "decoded": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "liquidityRate", + "type": "uint256", + "decoded": "1331720040141035599369773" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "stableBorrowRate", + "type": "uint256", + "decoded": "46736096350977977982834261" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "variableBorrowRate", + "type": "uint256", + "decoded": "13388877080782382386267409" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "liquidityIndex", + "type": "uint256", + "decoded": "1007302249887498400840212772" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "variableBorrowIndex", + "type": "uint256", + "decoded": "1007647439844379940295117095" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04", + "0x000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 39, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", + "topics": [ + "0xbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b", + "0x000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf", + "0x000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e" + ], + "data": "0x0000000000000000000000000000000000000000000000000031b6b8452f87a1", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 40, + "removed": false, + "decoded": { + "signature": "UserIndexUpdated(address,address,uint256)", + "signature_with_arg_names": "UserIndexUpdated(address indexed user,address indexed asset,uint256 index)", + "name": "UserIndexUpdated", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": true, + "internalType": "address", + "name": "asset", + "type": "address", + "decoded": "0x030ba81f1c18d280636f32af80b9aad02cf0854e" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "index", + "type": "uint256", + "decoded": "13993176409802657" + } + ] + } + }, + { + "address": "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5", + "topics": [ + "0x2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76", + "0x000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf" + ], + "data": "0x000000000000000000000000000000000000000000000000008b2771d8b626e5", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 41, + "removed": false, + "decoded": { + "signature": "RewardsAccrued(address,uint256)", + "signature_with_arg_names": "RewardsAccrued(address indexed user,uint256 amount)", + "name": "RewardsAccrued", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "39168391683385061" + } + ] + } + }, + { + "address": "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 42, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0x030bA81f1c18d280636F32af80b9AAd02Cf0854e", + "topics": [ + "0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f", + "0x000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e000000000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 43, + "removed": false, + "decoded": { + "signature": "Mint(address,uint256,uint256)", + "signature_with_arg_names": "Mint(address indexed sender,uint256 amount0,uint256 amount1)", + "name": "Mint", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0", + "type": "uint256", + "decoded": "300000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1", + "type": "uint256", + "decoded": "1007302249887498400840212772" + } + ] + } + }, + { + "address": "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9", + "topics": [ + "0xde6857219544bb5b7746f48ed30be6386fefc61b2f864cacf559893bf50fd951", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e040000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 44, + "removed": false, + "decoded": { + "signature": "Deposit(address,address,address,uint256,uint16)", + "signature_with_arg_names": "Deposit(address indexed reserve,address user,address indexed onBehalfOf,uint256 amount,uint16 indexed referral)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "reserve", + "type": "address", + "decoded": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + { + "indexed": false, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0xcc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04" + }, + { + "indexed": true, + "internalType": "address", + "name": "onBehalfOf", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "300000000000000000" + }, + { + "indexed": true, + "internalType": "uint16", + "name": "referral", + "type": "uint16", + "decoded": "0" + } + ] + } + } + ], + "logsBloom": "0x000000800002000000000410000000000000000000000000000000000000010000000000000010001000000000000000021000000800100400010100000000000000000000008000000002080400008000000000000008000000000080000000000000000200000000000000000008000000000000280000000000100000000000000000000000000080004000000400000000010000000000000000000000000001800100004000040000000000000000000000000000000200000800000100101000020000004000000020000a0000000000000000000000002000000020000000200100000000000000040000000000000000080000400000000000000000", + "status": true, + "to": "0xcc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04", + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionIndex": 11, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xdca393937b570007e5770446ab195f16f5ba03bf", + "callType": "call", + "gas": "0x4f705", + "input": "0x474cf53d0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a9000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xcc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04", + "value": "0x429d069189e0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3a55e", "output": "0x" }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xcc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04", + "callType": "call", + "gas": "0x4bd03", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x429d069189e0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xcc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04", + "callType": "call", + "gas": "0x4551c", + "input": "0xe8eda9df000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000429d069189e0000000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x314e1", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "delegatecall", + "gas": "0x4303b", + "input": "0xe8eda9df000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000429d069189e0000000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc6845a5c768bf8d7681249f8927877efda425baf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x300de", "output": "0x" }, + "subtraces": 10, + "traceAddress": [1, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "delegatecall", + "gas": "0x4095c", + "input": "0x0eca322b4cb5a02f592bd29403ce60c982c7f5174b16842da4fff5cfd025d6836dc48d4b0000000000000000000000000000000000000000000000000429d069189e0000", + "to": "0xf5543cdd5f551635e13ebe07e47d01d0fc9cbbd5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xaa0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 0, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x3e383", + "input": "0xb1bf962d", + "to": "0xf63b34710400cad3e044cffdcab00a0f32e33ecf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d27", + "output": "0x000000000000000000000000000000000000000000001ab5c438ec0be897e588" + }, + "subtraces": 1, + "traceAddress": [1, 0, 1], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xf63b34710400cad3e044cffdcab00a0f32e33ecf", + "callType": "delegatecall", + "gas": "0x3c07a", + "input": "0xb1bf962d", + "to": "0xddde1fa049209bc24b69d5fa316a56efec918d79", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x933", + "output": "0x000000000000000000000000000000000000000000001ab5c438ec0be897e588" + }, + "subtraces": 0, + "traceAddress": [1, 0, 1, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x37281", + "input": "0x79774338", + "to": "0x4e977830ba4bd783c0bb7f15d3e243f73ff57121", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x37e5", + "output": "0x00000000000000000000000000000000000000000000002af23ad7303b9b7ae600000000000000000000000000000000000000000000002af248864d030985be0000000000000000000000000000000000000000002788f08dcbe36a8eaa46270000000000000000000000000000000000000000000000000000000060d0c5e5" + }, + "subtraces": 1, + "traceAddress": [1, 0, 2], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x4e977830ba4bd783c0bb7f15d3e243f73ff57121", + "callType": "delegatecall", + "gas": "0x3513c", + "input": "0x79774338", + "to": "0xa558ea1a875f8b576f0728d32c39f62158e49b92", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x23e5", + "output": "0x00000000000000000000000000000000000000000000002af23ad7303b9b7ae600000000000000000000000000000000000000000000002af248864d030985be0000000000000000000000000000000000000000002788f08dcbe36a8eaa46270000000000000000000000000000000000000000000000000000000060d0c5e5" + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "call", + "gas": "0x320a3", + "input": "0x7df5bd3b0000000000000000000000000000000000000000000000000002af51a4f99a5500000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "to": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xcd6d", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 3], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "callType": "delegatecall", + "gas": "0x3009f", + "input": "0x7df5bd3b0000000000000000000000000000000000000000000000000002af51a4f99a5500000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "to": "0x541dcd3f00bcd1a683cc73e1b2a8693b602201f4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xb976", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 3, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "callType": "call", + "gas": "0x2be34", + "input": "0x31873e2e000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c00000000000000000000000000000000000000000000f725722c60fc91b0c430000000000000000000000000000000000000000000000001a7252d26855b88c3", + "to": "0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x73ea", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 3, 0, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5", + "callType": "delegatecall", + "gas": "0x29fb4", + "input": "0x31873e2e000000000000000000000000464c71f6c2f760dda6093dcb91c24c39e5d6e18c00000000000000000000000000000000000000000000f725722c60fc91b0c430000000000000000000000000000000000000000000000001a7252d26855b88c3", + "to": "0x83d055d382f25e6793099713505c68a5c7535a35", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fed", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 0, 0, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x25381", + "input": "0xf731e9be", + "to": "0x4e977830ba4bd783c0bb7f15d3e243f73ff57121", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xdcf", + "output": "0x00000000000000000000000000000000000000000000002af248864d030985be0000000000000000000000000000000000000000002788f08dcbe36a8eaa4627" + }, + "subtraces": 1, + "traceAddress": [1, 0, 4], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x4e977830ba4bd783c0bb7f15d3e243f73ff57121", + "callType": "delegatecall", + "gas": "0x24805", + "input": "0xf731e9be", + "to": "0xa558ea1a875f8b576f0728d32c39f62158e49b92", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb6c", + "output": "0x00000000000000000000000000000000000000000000002af248864d030985be0000000000000000000000000000000000000000002788f08dcbe36a8eaa4627" + }, + "subtraces": 0, + "traceAddress": [1, 0, 4, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x242b9", + "input": "0xb1bf962d", + "to": "0xf63b34710400cad3e044cffdcab00a0f32e33ecf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3c3", + "output": "0x000000000000000000000000000000000000000000001ab5c438ec0be897e588" + }, + "subtraces": 1, + "traceAddress": [1, 0, 5], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xf63b34710400cad3e044cffdcab00a0f32e33ecf", + "callType": "delegatecall", + "gas": "0x23780", + "input": "0xb1bf962d", + "to": "0xddde1fa049209bc24b69d5fa316a56efec918d79", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x163", + "output": "0x000000000000000000000000000000000000000000001ab5c438ec0be897e588" + }, + "subtraces": 0, + "traceAddress": [1, 0, 5, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x23bd9", + "input": "0x70a08231000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9e6", + "output": "0x00000000000000000000000000000000000000000000ddde7375f6edf7b8bab7" + }, + "subtraces": 0, + "traceAddress": [1, 0, 6], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "staticcall", + "gas": "0x21c0c", + "input": "0x9584df28000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000ddde779fc7571056bab700000000000000000000000000000000000000000000002af248864d030985be000000000000000000000000000000000000000000001aea0ed2a1d29a7b6fa80000000000000000000000000000000000000000002788f08dcbe36a8eaa462700000000000000000000000000000000000000000000000000000000000003e8", + "to": "0x4ce076b9dd956196b814e54e1714338f18fde3f4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3d3b", + "output": "0x000000000000000000000000000000000000000000011a00b022f11a6af1162d00000000000000000000000000000000000000000026a8c0dc1fdb8e4526d6550000000000000000000000000000000000000000000b13347b1cac911f524511" + }, + "subtraces": 2, + "traceAddress": [1, 0, 7], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x4ce076b9dd956196b814e54e1714338f18fde3f4", + "callType": "staticcall", + "gas": "0x204f8", + "input": "0x3618abba", + "to": "0xb53c1a33016b2dc2ff3653530bff1848a515c8c5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ff", + "output": "0x0000000000000000000000008a32f49ffba88aba6eff96f45d8bd1d4b3f35c7d" + }, + "subtraces": 0, + "traceAddress": [1, 0, 7, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x4ce076b9dd956196b814e54e1714338f18fde3f4", + "callType": "staticcall", + "gas": "0x1efd8", + "input": "0xbb85c0bb000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x8a32f49ffba88aba6eff96f45d8bd1d4b3f35c7d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9b6", + "output": "0x00000000000000000000000000000000000000000018d0bf423c03d8de000000" + }, + "subtraces": 0, + "traceAddress": [1, 0, 7, 1], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "call", + "gas": "0x1c141", + "input": "0x23b872dd000000000000000000000000cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e04000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e0000000000000000000000000000000000000000000000000429d069189e0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2021", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0, 8], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9", + "callType": "call", + "gas": "0x19de3", + "input": "0x156e29f6000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000429d069189e000000000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "to": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6a0a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [1, 0, 9], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "callType": "delegatecall", + "gas": "0x19532", + "input": "0x156e29f6000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf0000000000000000000000000000000000000000000000000429d069189e000000000000000000000000000000000000000000000341388c6245d5fea8d2e124", + "to": "0x541dcd3f00bcd1a683cc73e1b2a8693b602201f4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x679e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [1, 0, 9, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0x030ba81f1c18d280636f32af80b9aad02cf0854e", + "callType": "call", + "gas": "0x17363", + "input": "0x31873e2e000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf00000000000000000000000000000000000000000000f725722f0b52ab9ec97c0000000000000000000000000000000000000000000000018f3f33ea54541781", + "to": "0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3d30", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 9, 0, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + }, + { + "action": { + "from": "0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5", + "callType": "delegatecall", + "gas": "0x16b5c", + "input": "0x31873e2e000000000000000000000000dca393937b570007e5770446ab195f16f5ba03bf00000000000000000000000000000000000000000000f725722f0b52ab9ec97c0000000000000000000000000000000000000000000000018f3f33ea54541781", + "to": "0x83d055d382f25e6793099713505c68a5c7535a35", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3ac7", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 0, 9, 0, 0, 0], + "transactionHash": "0xec2730c064dbc632c52b04337cb282011ec47f74fb0585befc8c17f52d23ccb5", + "transactionPosition": 11, + "type": "call" + } + ], + "decoded": { + "signature": "depositETH(address,address,uint16)", + "signature_with_arg_names": "depositETH(address lendingPool,address onBehalfOf,uint16 referralCode)", + "name": "depositETH", + "decoded": [ + { + "internalType": "address", + "name": "lendingPool", + "type": "address", + "decoded": "0x7d2768de32b0b80b7a3454c06bdac94a69ddc7a9" + }, + { + "internalType": "address", + "name": "onBehalfOf", + "type": "address", + "decoded": "0xdca393937b570007e5770446ab195f16f5ba03bf" + }, + { + "internalType": "uint16", + "name": "referralCode", + "type": "uint16", + "decoded": "0" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 90000, + "gasPrice": "34000000000", + "hash": "0x1ddc6374d6ce66ce78ebd9da784fec1481eb68bbfb856083e255a664721d1269", + "input": "0x", + "nonce": 1552198, + "to": "0x2289d1bC1Fd2018D97f93BB25bC72a235c523F8a", + "transactionIndex": 12, + "value": "1550000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3002ba8776739762f9c77efe1f29885579d2c889f445ff53b552eb8970f9357d", + "s": "0x121fab3e4a9ff36ae416c64e718d8572a0d707a15336ac938b7ea7236ec89ddd", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1095216", + "effectiveGasPrice": "34000000000", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2289d1bc1fd2018d97f93bb25bc72a235c523f8a", + "transactionHash": "0x1ddc6374d6ce66ce78ebd9da784fec1481eb68bbfb856083e255a664721d1269", + "transactionIndex": 12, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x10d88", + "input": "0x", + "to": "0x2289d1bc1fd2018d97f93bb25bc72a235c523f8a", + "value": "0x581b77f66e000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1ddc6374d6ce66ce78ebd9da784fec1481eb68bbfb856083e255a664721d1269", + "transactionPosition": 12, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 90000, + "gasPrice": "34350105784", + "hash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "input": "0x", + "nonce": 1552199, + "to": "0xF4533970efA443784421A8B0aD27CB72a0c47ed4", + "transactionIndex": 13, + "value": "83113000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xcda5b01719dc47fc79979c727be80bcbcfe6c37235a6564e6502dc1d35c19d50", + "s": "0x7b463d2a4a9106b3c0437265687ef953a9a6128d8cb2c367b0058249df13c779", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1131961", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "36745", + "logs": [ + { + "address": "0x2A549b4AF9Ec39B03142DA6dC32221fC390B5533", + "topics": [ + "0x6e89d517057028190560dd200cf6bf792842861353d1173761dfa362e1c133f0" + ], + "data": "0x000000000000000000000000f4533970efa443784421a8b0ad27cb72a0c47ed4000000000000000000000000000000000000000000000000012746d54937900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "transactionIndex": 13, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 45, + "removed": false, + "decoded": null + }, + { + "address": "0xF4533970efA443784421A8B0aD27CB72a0c47ed4", + "topics": [ + "0x69b31548dea9b3b707b4dff357d326e3e9348b24e7a6080a218a6edeeec48f9b" + ], + "data": "0x000000000000000000000000d24400ae8bfebb18ca49be86258a3c749cf46853000000000000000000000000000000000000000000000000012746d54937900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "transactionIndex": 13, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 46, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00000000000200002000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000800000000000000000000000000000000000010000000000000400000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000200000000000", + "status": true, + "to": "0xf4533970efa443784421a8b0ad27cb72a0c47ed4", + "transactionHash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "transactionIndex": 13, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x10d88", + "input": "0x", + "to": "0xf4533970efa443784421a8b0ad27cb72a0c47ed4", + "value": "0x12746d549379000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3d81", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "transactionPosition": 13, + "type": "call" + }, + { + "action": { + "from": "0xf4533970efa443784421a8b0ad27cb72a0c47ed4", + "callType": "call", + "gas": "0x85e6", + "input": "0x", + "to": "0x2a549b4af9ec39b03142da6dc32221fc390b5533", + "value": "0x12746d549379000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x823", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0916589230a646ccf5e5c351be3ca3b187037093bc1ac70ba1b3e069a8b5d314", + "transactionPosition": 13, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 351400, + "gasPrice": "34350105784", + "hash": "0x7fd45f5fa52274ac2f5d87dc8de2d3b2dcddb2656b4661e2553bcd2f7d85d54d", + "input": "0xfa558b710000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001b2b4b2926bfc0f8d0b60c23774cf1be07c1032000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000ddbfec7748c5e0000", + "nonce": 1552200, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 14, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x800a6c90320c9cbd2bd23f9205d5b09f5dfacfdacb2408025a69367c8d8d9452", + "s": "0x162d7a80e7469ac4242845f64e1f8046a72659f7c1691e180eaca9afbb4f53e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1190790", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "58829", + "logs": [ + { + "address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x00000000000000000000000001b2b4b2926bfc0f8d0b60c23774cf1be07c1032" + ], + "data": "0x00000000000000000000000000000000000000000000000ddbfec7748c5e0000", + "blockNumber": 12679108, + "transactionHash": "0x7fd45f5fa52274ac2f5d87dc8de2d3b2dcddb2656b4661e2553bcd2f7d85d54d", + "transactionIndex": 14, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 47, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed _from,address indexed _to,uint256 _value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "_from", + "type": "address", + "decoded": "0x5f65f7b609678448494de4c87521cdf6cef1e932" + }, + { + "indexed": true, + "name": "_to", + "type": "address", + "decoded": "0x01b2b4b2926bfc0f8d0b60c23774cf1be07c1032" + }, + { + "indexed": false, + "name": "_value", + "type": "uint256", + "decoded": "255660000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000002000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000100000000000000000000000000000000000000000000000000000000000000000004000201010000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x7fd45f5fa52274ac2f5d87dc8de2d3b2dcddb2656b4661e2553bcd2f7d85d54d", + "transactionIndex": 14, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x5047c", + "input": "0xfa558b710000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001b2b4b2926bfc0f8d0b60c23774cf1be07c1032000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000ddbfec7748c5e0000", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x8da1", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x7fd45f5fa52274ac2f5d87dc8de2d3b2dcddb2656b4661e2553bcd2f7d85d54d", + "transactionPosition": 14, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x4d9b5", + "input": "0xa9059cbb00000000000000000000000001b2b4b2926bfc0f8d0b60c23774cf1be07c103200000000000000000000000000000000000000000000000ddbfec7748c5e0000", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x75f4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x7fd45f5fa52274ac2f5d87dc8de2d3b2dcddb2656b4661e2553bcd2f7d85d54d", + "transactionPosition": 14, + "type": "call" + } + ], + "decoded": { + "signature": "transferERC20(address,address[],uint256[])", + "signature_with_arg_names": "transferERC20(address arg1,address[] arg2,uint256[] arg3)", + "name": "transferERC20", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "internalType": "address[]", + "name": "arg2", + "type": "address[]", + "decoded": ["0x9051b82bfd786e98500a8de2d142b7f17b208b33"] + }, + { + "internalType": "uint256[]", + "name": "arg3", + "type": "uint256[]", + "decoded": ["5000000000000000000"] + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 351400, + "gasPrice": "34350105784", + "hash": "0x4b313ea0b35258e7ad5b9f8ccefd0babb26ff7a3befbbea9b86a02cdd56f02b4", + "input": "0xfa558b71000000000000000000000000408e41876cccdc0f92210600ef50372656052a38000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f5cfc19dd0ce45b506f24fa829385486958331fe000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000d8d726b7177a80000", + "nonce": 1552201, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 15, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x63ecc295393aeeffb5401d590d240230e0345751827bacef0d45a80aba0ac004", + "s": "0x38a8182b5dad2708c496d1883b2e5c20e09160d744a8e9413fa48a7b88a7745e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1252050", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "61260", + "logs": [ + { + "address": "0x408e41876cCCDC0F92210600ef50372656052a38", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x000000000000000000000000f5cfc19dd0ce45b506f24fa829385486958331fe" + ], + "data": "0x00000000000000000000000000000000000000000000000d8d726b7177a80000", + "blockNumber": 12679108, + "transactionHash": "0x4b313ea0b35258e7ad5b9f8ccefd0babb26ff7a3befbbea9b86a02cdd56f02b4", + "transactionIndex": 15, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 48, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xb4edc17262157cea2407c1a631b1bb4763f09b20" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x841ac934d69abb17afc327809dbf175e1a9e9a3d" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "1366997600000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000008004000001010000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000200000000000000000000000000100000000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x4b313ea0b35258e7ad5b9f8ccefd0babb26ff7a3befbbea9b86a02cdd56f02b4", + "transactionIndex": 15, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x50488", + "input": "0xfa558b71000000000000000000000000408e41876cccdc0f92210600ef50372656052a38000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f5cfc19dd0ce45b506f24fa829385486958331fe000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000d8d726b7177a80000", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x972c", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x4b313ea0b35258e7ad5b9f8ccefd0babb26ff7a3befbbea9b86a02cdd56f02b4", + "transactionPosition": 15, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x4d9c1", + "input": "0xa9059cbb000000000000000000000000f5cfc19dd0ce45b506f24fa829385486958331fe00000000000000000000000000000000000000000000000d8d726b7177a80000", + "to": "0x408e41876cccdc0f92210600ef50372656052a38", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7f7f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4b313ea0b35258e7ad5b9f8ccefd0babb26ff7a3befbbea9b86a02cdd56f02b4", + "transactionPosition": 15, + "type": "call" + } + ], + "decoded": { + "signature": "transferERC20(address,address[],uint256[])", + "signature_with_arg_names": "transferERC20(address arg1,address[] arg2,uint256[] arg3)", + "name": "transferERC20", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "internalType": "address[]", + "name": "arg2", + "type": "address[]", + "decoded": ["0x9051b82bfd786e98500a8de2d142b7f17b208b33"] + }, + { + "internalType": "uint256[]", + "name": "arg3", + "type": "uint256[]", + "decoded": ["5000000000000000000"] + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 351400, + "gasPrice": "34350105784", + "hash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "input": "0xfa558b71000000000000000000000000ff20817765cb7f73d4bde2e66e067e58d11095c2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000629baa35143568eda2c5f6396d016665382fd145000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000003635c9adc5dea00000", + "nonce": 1552202, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 16, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x51b5299d01b89bf835e4e27fe1722534eaf8d88741cd63065e4de9e092fd5df", + "s": "0x72eced912828323f46486a13253b874f901400492d4501c4cd67c47742952c6c", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1408657", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "156607", + "logs": [ + { + "address": "0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x000000000000000000000000629baa35143568eda2c5f6396d016665382fd145" + ], + "data": "0x00000000000000000000000000000000000000000000003635c9adc5dea00000", + "blockNumber": 12679108, + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionIndex": 16, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 49, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x5f65f7b609678448494de4c87521cdf6cef1e932" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x629baa35143568eda2c5f6396d016665382fd145" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1000000000000000000000" + } + ] + } + }, + { + "address": "0xfF20817765cB7f73d4bde2e66e067E58D11095C2", + "topics": [ + "0xff4e9a26af4eb73b8bacfaa4abd4fea03d9448e7b912dc5ff4019048875aa2d4", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x000000000000000000000000629baa35143568eda2c5f6396d016665382fd145" + ], + "data": "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e93200000000000000000000000000000000000000000000003635c9adc5dea00000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionIndex": 16, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 50, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00200000000000000000000000000000000000000000000000000002000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000400000000000020000000000000000000800000040000000004002001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000800000000000000000000000003000000020000000000000000000000000000000000000200000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionIndex": 16, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x5047c", + "input": "0xfa558b71000000000000000000000000ff20817765cb7f73d4bde2e66e067e58d11095c2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000629baa35143568eda2c5f6396d016665382fd145000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000003635c9adc5dea00000", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x21683", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x4d9b5", + "input": "0xa9059cbb000000000000000000000000629baa35143568eda2c5f6396d016665382fd14500000000000000000000000000000000000000000000003635c9adc5dea00000", + "to": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1fed6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "from": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "callType": "staticcall", + "gas": "0x4b771", + "input": "0xaabbb8ca0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e93260881b58a7ad1ebd3bc0e92b8277996363a67ded0f43bd95d11c320bab72b5a4", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "from": "0xff20817765cb7f73d4bde2e66e067e58d11095c2", + "callType": "staticcall", + "gas": "0x2f224", + "input": "0xaabbb8ca000000000000000000000000629baa35143568eda2c5f6396d016665382fd145fa352d6368bbc643bcf9d528ffaba5dd3e826137bc42f935045c6c227bd4c72a", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0xed3a794bf9dc496e9f2273a3965d23db4ea8be73320382a08d6e6067908f09eb", + "transactionPosition": 16, + "type": "call" + } + ], + "decoded": { + "signature": "transferERC20(address,address[],uint256[])", + "signature_with_arg_names": "transferERC20(address arg1,address[] arg2,uint256[] arg3)", + "name": "transferERC20", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "internalType": "address[]", + "name": "arg2", + "type": "address[]", + "decoded": ["0x9051b82bfd786e98500a8de2d142b7f17b208b33"] + }, + { + "internalType": "uint256[]", + "name": "arg3", + "type": "uint256[]", + "decoded": ["5000000000000000000"] + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 351400, + "gasPrice": "34350105784", + "hash": "0x957fbfd88029ee4651fec18c207fa2df18baf44d5746d1c1e5168a18b96722c1", + "input": "0xfa558b71000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cff4512ce8b5711eeb30fe730213703fb3e5ca5b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000012c17e16e5f0c0000", + "nonce": 1552203, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 17, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x4e0d89b935ffc675bab8ac4d61b2c4edb6d21ec8e048525e651944b3c691bc43", + "s": "0xf4f7e780c1efe58ce8210f09b274bbbea4951117b519ad9037ba2648b2bd9ad", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1467735", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "59078", + "logs": [ + { + "address": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x000000000000000000000000cff4512ce8b5711eeb30fe730213703fb3e5ca5b" + ], + "data": "0x0000000000000000000000000000000000000000000000012c17e16e5f0c0000", + "blockNumber": 12679108, + "transactionHash": "0x957fbfd88029ee4651fec18c207fa2df18baf44d5746d1c1e5168a18b96722c1", + "transactionIndex": 17, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 51, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000001000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000001210000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000002000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x957fbfd88029ee4651fec18c207fa2df18baf44d5746d1c1e5168a18b96722c1", + "transactionIndex": 17, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x5047c", + "input": "0xfa558b71000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000cff4512ce8b5711eeb30fe730213703fb3e5ca5b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000012c17e16e5f0c0000", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x8e9a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x957fbfd88029ee4651fec18c207fa2df18baf44d5746d1c1e5168a18b96722c1", + "transactionPosition": 17, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x4d9b5", + "input": "0xa9059cbb000000000000000000000000cff4512ce8b5711eeb30fe730213703fb3e5ca5b0000000000000000000000000000000000000000000000012c17e16e5f0c0000", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x76ed", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x957fbfd88029ee4651fec18c207fa2df18baf44d5746d1c1e5168a18b96722c1", + "transactionPosition": 17, + "type": "call" + } + ], + "decoded": { + "signature": "transferERC20(address,address[],uint256[])", + "signature_with_arg_names": "transferERC20(address arg1,address[] arg2,uint256[] arg3)", + "name": "transferERC20", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "internalType": "address[]", + "name": "arg2", + "type": "address[]", + "decoded": ["0x9051b82bfd786e98500a8de2d142b7f17b208b33"] + }, + { + "internalType": "uint256[]", + "name": "arg3", + "type": "uint256[]", + "decoded": ["5000000000000000000"] + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 138107, + "gasPrice": "34350105784", + "hash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "input": "0x38bcdfc09291fe6d1930717941f2c11894e849360da283ffad7de38f3b53a0eb512f96d4", + "nonce": 1552204, + "to": "0x485b9a41e8BF06E57BB64c6Ba7cB04f9d53D2d76", + "transactionIndex": 18, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x6804d8a21ff6349a0ca600c3ff50f32d1b787fb341d62df8839129b4056b0e1d", + "s": "0x2c29fc998b5eca0681377d6afbc0bbe6093134108e3f4f5c5b0b119e05205a6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1537441", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "69706", + "logs": [ + { + "address": "0x485b9a41e8BF06E57BB64c6Ba7cB04f9d53D2d76", + "topics": [ + "0xb79ffe54c65423cd3cde3e50c2411f246cfd6f2dcbf760480ce3041b9a53817e" + ], + "data": "0x00000000000000000000000053b027794fe0f515611373c65a593166c9436afb9291fe6d1930717941f2c11894e849360da283ffad7de38f3b53a0eb512f96d4", + "blockNumber": 12679108, + "transactionHash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "transactionIndex": 18, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 52, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000004000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000001000000000000000000000000000000001000000000000000000000000000000000", + "status": true, + "to": "0x485b9a41e8bf06e57bb64c6ba7cb04f9d53d2d76", + "transactionHash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "transactionIndex": 18, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x1c733", + "input": "0x38bcdfc09291fe6d1930717941f2c11894e849360da283ffad7de38f3b53a0eb512f96d4", + "to": "0x485b9a41e8bf06e57bb64c6ba7cb04f9d53d2d76", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbc02", "output": "0x" }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "transactionPosition": 18, + "type": "call" + }, + { + "action": { + "from": "0x485b9a41e8bf06e57bb64c6ba7cb04f9d53d2d76", + "callType": "staticcall", + "gas": "0x1b498", + "input": "0x801ead1d000000000000000000000000d24400ae8bfebb18ca49be86258a3c749cf46853", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "transactionPosition": 18, + "type": "call" + }, + { + "action": { + "from": "0x485b9a41e8bf06e57bb64c6ba7cb04f9d53d2d76", + "gas": "0x12f27", + "init": "0x3d602d80600a3d3981f3363d3d373d3d3d363d7339778bc77bd7a9456655b19fd4c5d0bf2071104e5af43d82803e903d91602b57fd5bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "address": "0x53b027794fe0f515611373c65a593166c9436afb", + "code": "0x363d3d373d3d3d363d7339778bc77bd7a9456655b19fd4c5d0bf2071104e5af43d82803e903d91602b57fd5bf3", + "gasUsed": "0x2347" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xd32fe57f50006127c8019cf04f61d08fb20ebb62403ee5d86a47997c93a9356e", + "transactionPosition": 18, + "type": "create" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 64200, + "gasPrice": "34350105784", + "hash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "input": "0x96aa736800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba516606fb4297b38f187d7341ba6eabc8cec603", + "nonce": 1552205, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 19, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x31fc2777fd3f56ee62b2a89edca4f6121514f98800b0dd86d9c3d350fb0f2642", + "s": "0x5731cf0a41b866e21caf2f7bcc42b32b7d63257445b79bbff80233617f611d58", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1575851", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "38410", + "logs": [ + { + "address": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "topics": [ + "0xa419615bc8fda4c87663805ee2a3597a6d71c1d476911d9892f340d965bc7bf1" + ], + "data": "0x000000000000000000000000ba516606fb4297b38f187d7341ba6eabc8cec60300000000000000000000000000000000000000000000000688a0a51a48e65000", + "blockNumber": 12679108, + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionIndex": 19, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 53, + "removed": false, + "decoded": { + "signature": "ReceivedEther(address,uint256)", + "signature_with_arg_names": "ReceivedEther(address sender,uint256 amount)", + "name": "ReceivedEther", + "decoded": [ + { + "indexed": false, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xba516606fb4297b38f187d7341ba6eabc8cec603" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "120525514760000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000100000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionIndex": 19, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0xa5f8", + "input": "0x96aa736800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ba516606fb4297b38f187d7341ba6eabc8cec603", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x413a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionPosition": 19, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x8e34", + "input": "0x90ec71bd", + "to": "0xba516606fb4297b38f187d7341ba6eabc8cec603", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2b4f", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionPosition": 19, + "type": "call" + }, + { + "action": { + "from": "0xba516606fb4297b38f187d7341ba6eabc8cec603", + "callType": "delegatecall", + "gas": "0x81df", + "input": "0x90ec71bd", + "to": "0x39778bc77bd7a9456655b19fd4c5d0bf2071104e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x20e8", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionPosition": 19, + "type": "call" + }, + { + "action": { + "from": "0xba516606fb4297b38f187d7341ba6eabc8cec603", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x688a0a51a48e65000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x562", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x403541e91e1b43ad5c4bd7b0961e952df5bbb15ad92cb8420af38e9c19788a25", + "transactionPosition": 19, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 469436, + "gasPrice": "34350105784", + "hash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "input": "0x2e2d726c0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000030abbb97de6618b2e2a73a6210683781dcc585e1", + "nonce": 1552206, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 20, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x48eb247a9220c116a4938cdf519cc773b1520394b752cec79249d9f34df6c565", + "s": "0x64534c627f6a6991983d2131ec9c515f271137977505b96cff527f433ba4362", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1633838", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "57987", + "logs": [ + { + "address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000030abbb97de6618b2e2a73a6210683781dcc585e1", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932" + ], + "data": "0x0000000000000000000000000000000000000000000000001158e460913d0000", + "blockNumber": 12679108, + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionIndex": 20, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 54, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x30abbb97de6618b2e2a73a6210683781dcc585e1" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x5f65f7b609678448494de4c87521cdf6cef1e932" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1250000000000000000" + } + ] + } + }, + { + "address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000030abbb97de6618b2e2a73a6210683781dcc585e1", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionIndex": 20, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 55, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30abbb97de6618b2e2a73a6210683781dcc585e1" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x5f65f7b609678448494de4c87521cdf6cef1e932" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000004002000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000001010000000000000000000000000000000000000000000000000000000000000000000000000420000000000004000000000000000000200000100000000000000000000000000000002000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000020000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionIndex": 20, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x6d37c", + "input": "0x2e2d726c0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000030abbb97de6618b2e2a73a6210683781dcc585e1", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xc6db", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x6a29b", + "input": "0xe00af4a70000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2", + "to": "0x30abbb97de6618b2e2a73a6210683781dcc585e1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xb086", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + }, + { + "action": { + "from": "0x30abbb97de6618b2e2a73a6210683781dcc585e1", + "callType": "delegatecall", + "gas": "0x67dee", + "input": "0xe00af4a70000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2", + "to": "0x39778bc77bd7a9456655b19fd4c5d0bf2071104e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa619", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 0], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + }, + { + "action": { + "from": "0x30abbb97de6618b2e2a73a6210683781dcc585e1", + "callType": "staticcall", + "gas": "0x657f3", + "input": "0x70a0823100000000000000000000000030abbb97de6618b2e2a73a6210683781dcc585e1", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa12", + "output": "0x0000000000000000000000000000000000000000000000001158e460913d0000" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + }, + { + "action": { + "from": "0x30abbb97de6618b2e2a73a6210683781dcc585e1", + "callType": "call", + "gas": "0x64c4f", + "input": "0xa9059cbb0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e9320000000000000000000000000000000000000000000000001158e460913d0000", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2aad", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + }, + { + "action": { + "from": "0x30abbb97de6618b2e2a73a6210683781dcc585e1", + "callType": "call", + "gas": "0x61f6e", + "input": "0x095ea7b30000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x6b3595068778dd592e39a122f4f5a5cf09c90fe2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5ff3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 2], + "transactionHash": "0x36bc20429ffa90c99eff1be3ce3452c6de8448f9e62b640b0bb1210e21f5fbc4", + "transactionPosition": 20, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 351400, + "gasPrice": "34350105784", + "hash": "0x795504660f6f2f9974ed83c37bc8607019d1224cb6741e5b246492b87e081ff4", + "input": "0xfa558b71000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009051b82bfd786e98500a8de2d142b7f17b208b3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000004563918244f40000", + "nonce": 1552207, + "to": "0x5f65f7b609678448494De4C87521CdF6cEf1e932", + "transactionIndex": 21, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x55edb68ef3871311be8d85d81a1981ca8a213e7fcbadc66e7000f2ae38974190", + "s": "0x201280a311c917254e509c56e2ea4b00b4001f7184fc59fe16cc26ce029b1372", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1692904", + "effectiveGasPrice": "34350105784", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "59066", + "logs": [ + { + "address": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005f65f7b609678448494de4c87521cdf6cef1e932", + "0x0000000000000000000000009051b82bfd786e98500a8de2d142b7f17b208b33" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "blockNumber": 12679108, + "transactionHash": "0x795504660f6f2f9974ed83c37bc8607019d1224cb6741e5b246492b87e081ff4", + "transactionIndex": 21, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 56, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000001000000000000000000000000002000000000010000000000000100000000000000000000000000000000000020000000000000000000000000040000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "transactionHash": "0x795504660f6f2f9974ed83c37bc8607019d1224cb6741e5b246492b87e081ff4", + "transactionIndex": 21, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x50488", + "input": "0xfa558b71000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009051b82bfd786e98500a8de2d142b7f17b208b3300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000004563918244f40000", + "to": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x8e9a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x795504660f6f2f9974ed83c37bc8607019d1224cb6741e5b246492b87e081ff4", + "transactionPosition": 21, + "type": "call" + }, + { + "action": { + "from": "0x5f65f7b609678448494de4c87521cdf6cef1e932", + "callType": "call", + "gas": "0x4d9c1", + "input": "0xa9059cbb0000000000000000000000009051b82bfd786e98500a8de2d142b7f17b208b330000000000000000000000000000000000000000000000004563918244f40000", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x76ed", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x795504660f6f2f9974ed83c37bc8607019d1224cb6741e5b246492b87e081ff4", + "transactionPosition": 21, + "type": "call" + } + ], + "decoded": { + "signature": "transferERC20(address,address[],uint256[])", + "signature_with_arg_names": "transferERC20(address arg1,address[] arg2,uint256[] arg3)", + "name": "transferERC20", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x514910771af9ca656af840dff83e8264ecf986ca" + }, + { + "internalType": "address[]", + "name": "arg2", + "type": "address[]", + "decoded": ["0x9051b82bfd786e98500a8de2d142b7f17b208b33"] + }, + { + "internalType": "uint256[]", + "name": "arg3", + "type": "uint256[]", + "decoded": ["5000000000000000000"] + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd24400ae8BfEBb18cA49Be86258a3C749cf46853", + "gas": 90000, + "gasPrice": "35000000000", + "hash": "0x295115217f4c784a4117bf3bfaee975adc5dc4908287924aaba01f3842e2e5a5", + "input": "0x", + "nonce": 1552208, + "to": "0x64dC1ea2Fb8ed5B974FCFa768653E735807CF430", + "transactionIndex": 22, + "value": "257334680000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x5817b2e5c5169366aa7449e55d5b2f6287c632715e2356f32735703369fe29e7", + "s": "0x3845348bcd598e8274b7d471664652ea4516d44986dd1b18fdfd284cc26d60fd", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1713904", + "effectiveGasPrice": "35000000000", + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x64dc1ea2fb8ed5b974fcfa768653e735807cf430", + "transactionHash": "0x295115217f4c784a4117bf3bfaee975adc5dc4908287924aaba01f3842e2e5a5", + "transactionIndex": 22, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd24400ae8bfebb18ca49be86258a3c749cf46853", + "callType": "call", + "gas": "0x10d88", + "input": "0x", + "to": "0x64dc1ea2fb8ed5b974fcfa768653e735807cf430", + "value": "0x3923c872dc9f000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x295115217f4c784a4117bf3bfaee975adc5dc4908287924aaba01f3842e2e5a5", + "transactionPosition": 22, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x7Be7D689Bf37fC3CAD349c363e597a4407Fd4BF9", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x39dabd61cc1375d2346e91c1bc266cd8a098450ff5405a4271a08be5803002bf", + "input": "0x", + "nonce": 30, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 23, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xdbd6ef66b2d5f380075152052570464fc552e8c3c344632e9aeb058149be4a2", + "s": "0x3bde72113094d146c060b081f3a45f663459aa4b2d0d2dc099b690684e74400e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1734904", + "effectiveGasPrice": "34000000000", + "from": "0x7be7d689bf37fc3cad349c363e597a4407fd4bf9", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x39dabd61cc1375d2346e91c1bc266cd8a098450ff5405a4271a08be5803002bf", + "transactionIndex": 23, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x7be7d689bf37fc3cad349c363e597a4407fd4bf9", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x39dabd61cc1375d2346e91c1bc266cd8a098450ff5405a4271a08be5803002bf", + "transactionPosition": 23, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4A5bB81FF9C763Efd0E92155988DFBf665DF12EA", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x223821d3834e89c16682a84a2487fbe1e7f8ea3d31c40ca139fd9b66533d72cc", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 24, + "value": "17668956000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe3d3324a23fe3aab200ae30a11efb96fea10aadcab60040e3d61469422a1ce7a", + "s": "0x3c7eb4e7b9727a3daa95b17c9172a6b5b0b7834255f9222fde65fcd22fd58ca2", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1755904", + "effectiveGasPrice": "34000000000", + "from": "0x4a5bb81ff9c763efd0e92155988dfbf665df12ea", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x223821d3834e89c16682a84a2487fbe1e7f8ea3d31c40ca139fd9b66533d72cc", + "transactionIndex": 24, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4a5bb81ff9c763efd0e92155988dfbf665df12ea", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3ec5d265ee9800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x223821d3834e89c16682a84a2487fbe1e7f8ea3d31c40ca139fd9b66533d72cc", + "transactionPosition": 24, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x98E694765ABF1D3bbF708f050637b8B0063c9c06", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x3e7d6dc41455172b5960dfd6418d8d396f33f926d2e1e28c5d14f8d4f72ece0a", + "input": "0x", + "nonce": 6, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 25, + "value": "17388351000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x5ea3739b5c9c9c8a7047d9e1c8979cb51cc8a9f7d15ccc03f5a3ae93031be251", + "s": "0x1f355e7f5320ffb4228a488870afdaf5654cd6d32d639a569f90b4d0a24f7e6b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1776904", + "effectiveGasPrice": "34000000000", + "from": "0x98e694765abf1d3bbf708f050637b8b0063c9c06", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x3e7d6dc41455172b5960dfd6418d8d396f33f926d2e1e28c5d14f8d4f72ece0a", + "transactionIndex": 25, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x98e694765abf1d3bbf708f050637b8b0063c9c06", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3dc69cf495b600" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3e7d6dc41455172b5960dfd6418d8d396f33f926d2e1e28c5d14f8d4f72ece0a", + "transactionPosition": 25, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xE950C23891E41E5bb3fe4a45DdE62752a4BBf9Fb", + "gas": 170865, + "gasPrice": "34000000000", + "hash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "input": "0x18cbafe50000000000000000000000000000000000000000000000000000001d2ffdab8f00000000000000000000000000000000000000000000000039f5b6276d71e3d700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e950c23891e41e5bb3fe4a45dde62752a4bbf9fb0000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000258f474786ddfd37abce6df6bbb1dd5dfc4434a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 3476, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 26, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x8696676cbb5d181cc23a318f423ed65fb22cac8e1eff67f3a799efa32958f9a7", + "s": "0x227c7f448bbbafd0409b620b8826f6a736f42dff566b0611a6e719853b9c423e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "1879710", + "effectiveGasPrice": "34000000000", + "from": "0xe950c23891e41e5bb3fe4a45dde62752a4bbf9fb", + "gasUsed": "102806", + "logs": [ + { + "address": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e950c23891e41e5bb3fe4a45dde62752a4bbf9fb", + "0x0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689" + ], + "data": "0x0000000000000000000000000000000000000000000000000000001d2ffdab8f", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 57, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "57980410363" + } + ] + } + }, + { + "address": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000e950c23891e41e5bb3fe4a45dde62752a4bbf9fb", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffeba9fbbb99a", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 58, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007689364694702" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000003a8a16b20fd1bfb8", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 59, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x6C8b0Dee9E90EA9F790DA5DaF6f5B20D23B39689", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000000004f866fd8cfca00000000000000000000000000000000000000000000009fbfbf54f625e685a2", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 60, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x6C8b0Dee9E90EA9F790DA5DaF6f5B20D23B39689", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000000001d2ffdab8f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a8a16b20fd1bfb8", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 61, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000003a8a16b20fd1bfb8", + "blockNumber": 12679108, + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 62, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000400000000000000000000000000000002000000080000000000000000200000000000000000000000000008000000200000000000400000000000000100000000000000000004000000000000000000000000000000040000000010000000000000000000000000004000000000002000000000000020080000004000000000020020100000000000000000000000000000000000020000000001000000000000000002000000000800000000000000000000000000001000000002000020000010200000000000000000000000000800000000000002000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionIndex": 26, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xe950c23891e41e5bb3fe4a45dde62752a4bbf9fb", + "callType": "call", + "gas": "0x24175", + "input": "0x18cbafe50000000000000000000000000000000000000000000000000000001d2ffdab8f00000000000000000000000000000000000000000000000039f5b6276d71e3d700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e950c23891e41e5bb3fe4a45dde62752a4bbf9fb0000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000258f474786ddfd37abce6df6bbb1dd5dfc4434a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cade", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000001d2ffdab8f0000000000000000000000000000000000000000000000003a8a16b20fd1bfb8" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x225c8", + "input": "0x0902f1ac", + "to": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000000004f693fdb243b00000000000000000000000000000000000000000000009ffa496ba835b8455a0000000000000000000000000000000000000000000000000000000060d0d0e3" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x207c0", + "input": "0x23b872dd000000000000000000000000e950c23891e41e5bb3fe4a45dde62752a4bbf9fb0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b396890000000000000000000000000000000000000000000000000000001d2ffdab8f", + "to": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4fd2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b09c", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a8a16b20fd1bfb80000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfd10", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "call", + "gas": "0x1764e", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000003a8a16b20fd1bfb8", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "staticcall", + "gas": "0x100be", + "input": "0x70a082310000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "to": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d1", + "output": "0x00000000000000000000000000000000000000000000000000004f866fd8cfca" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "staticcall", + "gas": "0xfd5f", + "input": "0x70a082310000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000009fbfbf54f625e685a2" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xb585", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000003a8a16b20fd1bfb8", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x3a8a16b20fd1bfb8" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x767d", + "input": "0x", + "to": "0xe950c23891e41e5bb3fe4a45dde62752a4bbf9fb", + "value": "0x3a8a16b20fd1bfb8" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x08ae0d49d9168c9e9378e030bed7e4ef340d886233d3e05e17513eaaa575e9b2", + "transactionPosition": 26, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETH(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETH(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETH", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "2258436987" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "487696653644355917" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4632Ba70a622366493CE1662b975DdB85321c3b7", + "gas": 805000, + "gasPrice": "34000000000", + "hash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "input": "0x415565b0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000aeb0283a67aada6f00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000280ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b908000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000000869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed0000000000000000000000000000000000000000000000ecd6ec65b560d0d21a", + "nonce": 8, + "to": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "transactionIndex": 27, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xc9b0cc328694c96caea01d8256109510744ae745705ec6f5a386a3bc6845f197", + "s": "0x6213e719e87d407b5798f89cce4c88c1744cdcea93a68fe5ac8ec45589e06f2a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2672924", + "effectiveGasPrice": "34000000000", + "from": "0x4632ba70a622366493ce1662b975ddb85321c3b7", + "gasUsed": "793214", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": false, + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionIndex": 27, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4632ba70a622366493ce1662b975ddb85321c3b7", + "callType": "call", + "gas": "0xbb624", + "input": "0x415565b0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000aeb0283a67aada6f00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000280ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b908000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000000869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed0000000000000000000000000000000000000000000000ecd6ec65b560d0d21a", + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "error": "Reverted", + "result": { "gasUsed": "0xb881a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "delegatecall", + "gas": "0xb6e5d", + "input": "0x415565b0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000aeb0283a67aada6f00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000280ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b908000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000000869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed0000000000000000000000000000000000000000000000ecd6ec65b560d0d21a", + "to": "0x7662f4484315eb5ad0e94662159f0c2850a4b3a7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "error": "out of gas", + "result": null, + "subtraces": 5, + "traceAddress": [0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0xb1143", + "input": "0x23b872dd0000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b700000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000005a52dad48", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcb18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xac91d", + "input": "0x23b872dd0000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b700000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000005a52dad48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xae99", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0xa294c", + "input": "0xb68df16d00000000000000000000000075665d9a15a5212db8668bc3eb46fe09df8335af00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000364832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2fcfd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0x9f387", + "input": "0x832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "to": "0x75665d9a15a5212db8668bc3eb46fe09df8335af", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2edcc", + "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [0, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x9b86d", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000000005a52dad48" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x98eb1", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000005a52dad48" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0x99bd6", + "input": "0xf712a1480000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000005a52dad480000000000000000000000000000000a446f646f00000000000000000000000000000000000000000000000000000000000000000000000000000005a52dad48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000533da777aedce766ceae696bf90f8541a4ba80eb000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3577552c1fb7a44ad76beeb7ab53251668a21f8d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2b885", + "output": "0x00000000000000000000000000000000000000000000000000000005a54f04a6" + }, + "subtraces": 3, + "traceAddress": [0, 1, 0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x96c23", + "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd62", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffea68307c64a0f" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x94396", + "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa4d", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffea68307c64a0f" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x95312", + "input": "0xca19ebd9000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad00000000000000000000000000000000000000000000000000000005a52dad48", + "to": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xc4c7", + "output": "0x00000000000000000000000000000000000000000000000000000005a54f04a6" + }, + "subtraces": 8, + "traceAddress": [0, 1, 0, 1, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x9212c", + "input": "0xffa64225", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7a1c", + "output": "0x0000000000000000000000000000000000000000000000000000153194eaeba4000000000000000000000000000000000000000000000000000016e3d143dfa3" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x8f28b", + "input": "0xffa64225", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6fac", + "output": "0x0000000000000000000000000000000000000000000000000000153194eaeba4000000000000000000000000000000000000000000000000000016e3d143dfa3" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "staticcall", + "gas": "0x89889", + "input": "0x98d5fdca", + "to": "0xab291a45818bdaa1aaf18e128e134da797d3dc3f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x918", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 0, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x8a6d9", + "input": "0x17be952e", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x27f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x883be", + "input": "0x17be952e", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x8a201", + "input": "0x796da7af", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5a1", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x87efa", + "input": "0x796da7af", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4fb", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 2, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "staticcall", + "gas": "0x85a54", + "input": "0x98d5fdca", + "to": "0xab291a45818bdaa1aaf18e128e134da797d3dc3f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x148", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 2, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x89a8d", + "input": "0x7c9b8e89", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x233", + "output": "0x00000000000000000000000000000000000000000000000000001060c9852747" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x877a3", + "input": "0x7c9b8e89", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x18d", + "output": "0x00000000000000000000000000000000000000000000000000001060c9852747" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 3, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x8967a", + "input": "0xeab5d20e", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x273", + "output": "0x00000000000000000000000000000000000000000000000000001bb4be99270f" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 4], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x873a1", + "input": "0xeab5d20e", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cd", + "output": "0x00000000000000000000000000000000000000000000000000001bb4be99270f" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 4, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x89228", + "input": "0xec2fd46d", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x289", + "output": "0x0000000000000000000000000000000000000000000000000000b5e620f48000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 5], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x86f60", + "input": "0xec2fd46d", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1e3", + "output": "0x0000000000000000000000000000000000000000000000000000b5e620f48000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 5, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x88487", + "input": "0xab44a7a3", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa18", + "output": "0x00000000000000000000000000000000000000000000000000005af3107a4000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 6], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x861f5", + "input": "0xab44a7a3", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x972", + "output": "0x00000000000000000000000000000000000000000000000000005af3107a4000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 6, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x533da777aedce766ceae696bf90f8541a4ba80eb", + "callType": "staticcall", + "gas": "0x878c1", + "input": "0xc0ffa178", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 1, 7], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x8565f", + "input": "0xc0ffa178", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x987", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 1, 7, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "call", + "gas": "0x88e3b", + "input": "0xe67ce70600000000000000000000000000000000000000000000000000000005a54f04a600000000000000000000000000000000000000000000000000000005a52dad4800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1c3d1", + "output": "0x00000000000000000000000000000000000000000000000000000005a52dad46" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "delegatecall", + "gas": "0x86b6b", + "input": "0xe67ce70600000000000000000000000000000000000000000000000000000005a54f04a600000000000000000000000000000000000000000000000000000005a52dad4800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf6a8e47daeeddcce297e7541523e27df2f167bf3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1c313", + "output": "0x00000000000000000000000000000000000000000000000000000005a52dad46" + }, + "subtraces": 4, + "traceAddress": [0, 1, 0, 1, 2, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "staticcall", + "gas": "0x825b7", + "input": "0x98d5fdca", + "to": "0xab291a45818bdaa1aaf18e128e134da797d3dc3f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x148", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 2, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "staticcall", + "gas": "0x7f4fe", + "input": "0x98d5fdca", + "to": "0xab291a45818bdaa1aaf18e128e134da797d3dc3f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x148", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 2, 0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "call", + "gas": "0x7bd14", + "input": "0xa9059cbb00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000005a54f04a6", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 2, 0, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc9f93163c99695c6526b799ebca2207fdf7d61ad", + "callType": "call", + "gas": "0x704d7", + "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad00000000000000000000000000000000000000000000000000000005a52dad46", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ce8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 1, 0, 1, 2, 0, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x6e5e1", + "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000c9f93163c99695c6526b799ebca2207fdf7d61ad00000000000000000000000000000000000000000000000000000005a52dad46", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x39cd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 1, 2, 0, 3, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x71ec9", + "input": "0xb68df16d00000000000000000000000075665d9a15a5212db8668bc3eb46fe09df8335af00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000384832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000280ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b90800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x673cb", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0x6fec5", + "input": "0x832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000280ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b908000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "to": "0x75665d9a15a5212db8668bc3eb46fe09df8335af", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x66e58", + "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [0, 2, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x6cf78", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x407", + "output": "0x00000000000000000000000000000000000000000000000000000005a54f04a6" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0x6bc46", + "input": "0xf712a1480000000000000000000000000000000000000000000000000000000000000080000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000005a54f04a60000000000000000000000000000001443757276655632000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000aeb0283a67aada6e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008000000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe55b41b9080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002", + "to": "0x3577552c1fb7a44ad76beeb7ab53251668a21f8d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x64296", + "output": "0x000000000000000000000000000000000000000000000000af4e67c30978f78c" + }, + "subtraces": 4, + "traceAddress": [0, 2, 0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x697e5", + "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd1c", + "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x67f3c", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9e6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "call", + "gas": "0x6677f", + "input": "0x5b41b9080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000005a54f04a60000000000000000000000000000000000000000000000000000000000000001", + "to": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5f9dd", "output": "0x" }, + "subtraces": 11, + "traceAddress": [0, 2, 0, 1, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "call", + "gas": "0x5c276", + "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000080466c64868e1ab14a1ddf27a676c3fcbe638fe500000000000000000000000000000000000000000000000000000005a54f04a6", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2dd2", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x5689d", + "input": "0x36bc88550000000000000000000000000000000000000000000000000000000000058fd400000000000000000000000000000000000000000000000000003faa25225fff0000000000000000000000000000000000000000001be968c972f5b7e5fae0000000000000000000000000000000000000000000001f9fdde8b2e66d56dba0fc00000000000000000000000000000000000000000021076f4ff37e01a312c5b00000000000000000000000000000000000000000005c6708b27646bc903186d30000000000000000000000000000000000000000000000000000000000000002", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xaa40", + "output": "0x000000000000000000000000000000000000000000210189a1e30df457b54f50" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x4b041", + "input": "0xfa18042d0000000000000000000000000000000000000000001be968c972f5b7e5fae0000000000000000000000000000000000000000000001f9fdde8b2e66d56dba0fc000000000000000000000000000000000000000000210189a1e30df457b54f50000000000000000000000000000000000000000000000000002386f26fc10000", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x71a", + "output": "0x00000000000000000000000000000000000000000000000007f290ce8c702fb2" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "call", + "gas": "0x483f5", + "input": "0xa9059cbb00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000000000000000000000000000af4e67c30978f78c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6d3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x3f004", + "input": "0x571bae3f000000000000000000000000000000000000000000000000017508f1956a800000000000000000000000000000000000000000000000000000000002540be400", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x336c", + "output": "0x0000000000000000000000000000000000000000000000000ce754acc6ab453b" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 4], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x3a09c", + "input": "0xc7fab7080000000000000000000000000000000000000000000000000000000000058fd400000000000000000000000000000000000000000000000000003faa25225fff0000000000000000000000000000000000000000001be968c972f5b7e5fae0000000000000000000000000000000000000000000001f9fdde8b2e66d56dba0fc00000000000000000000000000000000000000000021018c8f04b5127c9ab854", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xe9f3", + "output": "0x0000000000000000000000000000000000000000005c670b766532dc5890386f" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 5], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x2a0ef", + "input": "0x18160ddd", + "to": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa26", + "output": "0x0000000000000000000000000000000000000000000012572251b289a2c5b76a" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 6], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x27e87", + "input": "0xbad1dc260000000000000000000000000000000000000000001ecd03d221bb9ec83012cf000000000000000000000000000000000000000000000038829d86a4686fd74900000000000000000000000000000000000000000000039565d9ddcb2e2c2575", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6276", + "output": "0x0000000000000000000000000000000000000000000012686713f792e94dae1a" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 7], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x1ff00", + "input": "0x4e60b14100000000000000000000000000000000000000000000000000551e02b40d3776", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb3d", + "output": "0x0000000000000000000000000000000000000000000000000225e80f705488cb" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 8], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0x1e36c", + "input": "0xc7fab7080000000000000000000000000000000000000000000000000000000000058fd400000000000000000000000000000000000000000000000000003faa25225fff0000000000000000000000000000000000000000001be968c972f5b7e5fae0000000000000000000000000000000000000000000001f987e99a30c24e338fb7f00000000000000000000000000000000000000000020f77a412e0e75ac5b1931", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xe9f3", + "output": "0x0000000000000000000000000000000000000000005c564f924f5144fef8b072" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 9], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x80466c64868e1ab14a1ddf27a676c3fcbe638fe5", + "callType": "staticcall", + "gas": "0xf923", + "input": "0xbad1dc260000000000000000000000000000000000000000001ec76fdb6fc5c1aa52e57b000000000000000000000000000000000000000000000038858ec9f4546220f1000000000000000000000000000000000000000000000395d7c884944acc0847", + "to": "0x656dd75d33a6241a0c4c2368eb00441ad3113ec0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6276", + "output": "0x0000000000000000000000000000000000000000000012685f52328df1e1511d" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 2, 10], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x83d9", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000af4e67c30978f78c" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0xb6b9", + "input": "0xb68df16d000000000000000000000000b2bc06a4efb20fc6553a69dbfa49b7be938034a7000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e4832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000", + "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3d71", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0xa736", + "input": "0x832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b700000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xb2bc06a4efb20fc6553a69dbfa49b7be938034a7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2eba", + "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [0, 3, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x9f01", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000af4e67c30978f78c" + }, + "subtraces": 0, + "traceAddress": [0, 3, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "call", + "gas": "0x9a82", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000af4e67c30978f78c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x23eb", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 3, 0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "value": "0xaf4e67c30978f78c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x37", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 3, 0, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x6813", + "input": "0xb68df16d0000000000000000000000004638a7ebe75b911b995d0ec73a81e4f85f41f24e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c4832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x64c4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 4], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "delegatecall", + "gas": "0x59a1", + "input": "0x832b24bb00000000000000000000000000000000000000000000000000000000000000200000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000000", + "to": "0x4638a7ebe75b911b995d0ec73a81e4f85f41f24e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x55e3", + "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 5, + "traceAddress": [0, 4, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x4d45", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 1, + "traceAddress": [0, 4, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x4936", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "traceAddress": [0, 4, 0, 0, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "call", + "gas": "0x432b", + "input": "0xa9059cbb0000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000000000000000000000000000000000000000000002", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 4, 0, 1], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3f41", + "input": "0xa9059cbb0000000000000000000000004632ba70a622366493ce1662b975ddb85321c3b70000000000000000000000000000000000000000000000000000000000000002", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xfbc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 4, 0, 1, 0], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x2c32", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 4, 0, 2], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x4632ba70a622366493ce1662b975ddb85321c3b7", + "value": "0xaf4e67c30978f78c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 4, 0, 3], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + }, + { + "action": { + "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", + "callType": "staticcall", + "gas": "0x91d", + "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x407", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 4, 0, 4], + "transactionHash": "0xaa7de0a1698f03fb49afd4890ae2024044759db1cfd81cd63d7fa7329e8fa0a3", + "transactionPosition": 27, + "type": "call" + } + ], + "decoded": { + "signature": "JunionYoutubeXD_clgqmmkfvuba()", + "signature_with_arg_names": "JunionYoutubeXD_clgqmmkfvuba()", + "name": "JunionYoutubeXD_clgqmmkfvuba", + "decoded": [] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9BFc6C602B0C1cfb9eB3a28f7E2bAe288AF49286", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x0121c4c92b5f0ae5375ffbee4ab3a220ab171f1c6ec3869a2caba84777440683", + "input": "0x", + "nonce": 6, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 28, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x4678067b801bff5d78fae49633ec2086a46a94a8183e6747deb80cb3f060dfc", + "s": "0x7e843d29b79eb1d5b463a1bbb6095096b7a0ae9f49447b0fedf30b3c6409d709", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2693924", + "effectiveGasPrice": "34000000000", + "from": "0x9bfc6c602b0c1cfb9eb3a28f7e2bae288af49286", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x0121c4c92b5f0ae5375ffbee4ab3a220ab171f1c6ec3869a2caba84777440683", + "transactionIndex": 28, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9bfc6c602b0c1cfb9eb3a28f7e2bae288af49286", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0121c4c92b5f0ae5375ffbee4ab3a220ab171f1c6ec3869a2caba84777440683", + "transactionPosition": 28, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4c2eD03286740d7897f23b28e2cBdf7701664060", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xe6d22af43cbd9ffd8cd9927853119b002442478e2f61cd3ed7c1fe837b7a323e", + "input": "0x", + "nonce": 3, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 29, + "value": "9579885000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x9a868d955f010327068b965d528ab26fde71dc12940529d43ad5d8bd3ae88059", + "s": "0x179fbece258dc14be7a403bf212333a62d5fca7766628ebca8bafe34831f34a6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2714924", + "effectiveGasPrice": "34000000000", + "from": "0x4c2ed03286740d7897f23b28e2cbdf7701664060", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xe6d22af43cbd9ffd8cd9927853119b002442478e2f61cd3ed7c1fe837b7a323e", + "transactionIndex": 29, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4c2ed03286740d7897f23b28e2cbdf7701664060", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x2208daca6a0200" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe6d22af43cbd9ffd8cd9927853119b002442478e2f61cd3ed7c1fe837b7a323e", + "transactionPosition": 29, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x1D22D9f4237E09f4B532C074B474DF01BC286345", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x429ae83f4b5e4763e4b7b9bb24bf0248cdfa83ea5476a61aff85e43f0231f0a1", + "input": "0x", + "nonce": 0, + "to": "0x39F6a6C85d39d5ABAd8A398310c52E7c374F2bA3", + "transactionIndex": 30, + "value": "198286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x2369660341018109271807c00565a46cfa50c14d8539df4b2526ddd1658f7207", + "s": "0x3f45c90dff377e3f344eb1fed148ed1a8c01b496ebd34b8989044f5f491f055c", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2735924", + "effectiveGasPrice": "34000000000", + "from": "0x1d22d9f4237e09f4b532c074b474df01bc286345", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "transactionHash": "0x429ae83f4b5e4763e4b7b9bb24bf0248cdfa83ea5476a61aff85e43f0231f0a1", + "transactionIndex": 30, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x1d22d9f4237e09f4b532c074b474df01bc286345", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "value": "0x2c0741101eee000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x429ae83f4b5e4763e4b7b9bb24bf0248cdfa83ea5476a61aff85e43f0231f0a1", + "transactionPosition": 30, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x39F6a6C85d39d5ABAd8A398310c52E7c374F2bA3", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x8d297f5a8c6102437a6b6f5746f17fba0afc8bfc507c2241e78ce62d58efb060", + "input": "0x", + "nonce": 278081, + "to": "0x8D929d9029EEBc617d98417e67da077B4B2a6467", + "transactionIndex": 31, + "value": "8670000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x24a73192a621da3caffce1f2e42dd88de07fbc6c8360d687940174656536362c", + "s": "0x2d841958fb1b4f62943ca4ee25afc52b5c7524e80f9243a491f6aed80d8264ce", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2756924", + "effectiveGasPrice": "34000000000", + "from": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x8d929d9029eebc617d98417e67da077b4b2a6467", + "transactionHash": "0x8d297f5a8c6102437a6b6f5746f17fba0afc8bfc507c2241e78ce62d58efb060", + "transactionIndex": 31, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x8d929d9029eebc617d98417e67da077b4b2a6467", + "value": "0x1ecd51ae33e000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8d297f5a8c6102437a6b6f5746f17fba0afc8bfc507c2241e78ce62d58efb060", + "transactionPosition": 31, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4CB091F31B8578b80FA84023615EB11E2Bef529d", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x53327939851e977d6c24b955cf75eab4c8af7d40ff653145eee9331042f4fd6e", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 32, + "value": "25773994000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x52ef13902b1be18340d410fe5148ffd66b6467ea0ca2859a6243193d8a4c92ec", + "s": "0x7ba8f60765849f733242a1987a3234c83d7ebe9f9119b6b7da98a9cc4c328180", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2777924", + "effectiveGasPrice": "34000000000", + "from": "0x4cb091f31b8578b80fa84023615eb11e2bef529d", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x53327939851e977d6c24b955cf75eab4c8af7d40ff653145eee9331042f4fd6e", + "transactionIndex": 32, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4cb091f31b8578b80fa84023615eb11e2bef529d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x5b914f9cd02400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x53327939851e977d6c24b955cf75eab4c8af7d40ff653145eee9331042f4fd6e", + "transactionPosition": 32, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x18DA2Aaaaa405A8422fdAED2085DFE4F91677C64", + "gas": 104526, + "gasPrice": "34000000000", + "hash": "0xa36e9385cb7e6935b58b306835920b72dfbc07438b929254435dd8ecc20feebe", + "input": "0xa9059cbb00000000000000000000000067af7b67000aac789dacc59b16f5d2de1ff90f1600000000000000000000000000000000000000000000000006f05b59d3b20000", + "nonce": 370, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 33, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x373062686602e5babfcbd8cc0dc44025f3271efd77fc5db801aa2716d3434a93", + "s": "0x4c7d03a40d3a39bdeea6e60c3d2cb4c0fa9f6b49bed47ba6857235c2a531d572", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2830187", + "effectiveGasPrice": "34000000000", + "from": "0x18da2aaaaa405a8422fdaed2085dfe4f91677c64", + "gasUsed": "52263", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000018da2aaaaa405a8422fdaed2085dfe4f91677c64", + "0x00000000000000000000000067af7b67000aac789dacc59b16f5d2de1ff90f16" + ], + "data": "0x00000000000000000000000000000000000000000000000006f05b59d3b20000", + "blockNumber": 12679108, + "transactionHash": "0xa36e9385cb7e6935b58b306835920b72dfbc07438b929254435dd8ecc20feebe", + "transactionIndex": 33, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 63, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000020000000000000000000000000000000000000200200000000000000000000000000000002000000000000000000000000000000800000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000800000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0xa36e9385cb7e6935b58b306835920b72dfbc07438b929254435dd8ecc20feebe", + "transactionIndex": 33, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x18da2aaaaa405a8422fdaed2085dfe4f91677c64", + "callType": "call", + "gas": "0x143da", + "input": "0xa9059cbb00000000000000000000000067af7b67000aac789dacc59b16f5d2de1ff90f1600000000000000000000000000000000000000000000000006f05b59d3b20000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x77b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa36e9385cb7e6935b58b306835920b72dfbc07438b929254435dd8ecc20feebe", + "transactionPosition": 33, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xD11791c23c8AAa5fe796E8C93dE29E90EA5842e8", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x839926a5ad4346cac5ecfdfc6005f88db3c52d882758970544d80ede6628bd7c", + "input": "0x", + "nonce": 14, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 34, + "value": "17810900000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xea8e75834eb92275987fe91a9d2415cf56984afb8aa3bff6dff4c18bd5aecdf9", + "s": "0x2bbc516d0c8ba7890c115ec535f71cb583398fdd0034aa8d77713af330eb14dc", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2851187", + "effectiveGasPrice": "34000000000", + "from": "0xd11791c23c8aaa5fe796e8c93de29e90ea5842e8", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x839926a5ad4346cac5ecfdfc6005f88db3c52d882758970544d80ede6628bd7c", + "transactionIndex": 34, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd11791c23c8aaa5fe796e8c93de29e90ea5842e8", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3f46eb4fa14800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x839926a5ad4346cac5ecfdfc6005f88db3c52d882758970544d80ede6628bd7c", + "transactionPosition": 34, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0A0Ec3B29c78a7f325d211C97DC57575D6A55a74", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xd7224ba03ae6403ca57753424195b0d4459dcfe8d9e9763728046b6c2e999095", + "input": "0x", + "nonce": 319, + "to": "0x0A0Ec3B29c78a7f325d211C97DC57575D6A55a74", + "transactionIndex": 35, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xd4aa3df155c9043f6913cc2902fb997a1430445a0ee1ac40205c57604c0686b7", + "s": "0x5f40998e9e37e085ca5c68e8e3769c810cbdb3b51b296b97d70bbff06aef701f", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2872187", + "effectiveGasPrice": "34000000000", + "from": "0x0a0ec3b29c78a7f325d211c97dc57575d6a55a74", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x0a0ec3b29c78a7f325d211c97dc57575d6a55a74", + "transactionHash": "0xd7224ba03ae6403ca57753424195b0d4459dcfe8d9e9763728046b6c2e999095", + "transactionIndex": 35, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0a0ec3b29c78a7f325d211c97dc57575d6a55a74", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x0a0ec3b29c78a7f325d211c97dc57575d6a55a74", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd7224ba03ae6403ca57753424195b0d4459dcfe8d9e9763728046b6c2e999095", + "transactionPosition": 35, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9AA65464b4cFbe3Dc2BDB3dF412AeE2B3De86687", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xdf4c755c53653b8c188c4dc154718f5707eecbc05e51a72a4f4055db6388f144", + "input": "0x", + "nonce": 35737, + "to": "0x619d4A6Bb70E5e806372826B6389DBC38D0EEf4b", + "transactionIndex": 36, + "value": "392837480000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x9b06ac295442a94b0cc0f96404bb55a3c88b2ef25207282aeaaef821678cf0fd", + "s": "0x423b86596a4ee7c74a6427c66ef75f206e1eb9e8f66ceccc6e0f511cbb5bd0f6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2893187", + "effectiveGasPrice": "34000000000", + "from": "0x9aa65464b4cfbe3dc2bdb3df412aee2b3de86687", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x619d4a6bb70e5e806372826b6389dbc38d0eef4b", + "transactionHash": "0xdf4c755c53653b8c188c4dc154718f5707eecbc05e51a72a4f4055db6388f144", + "transactionIndex": 36, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9aa65464b4cfbe3dc2bdb3df412aee2b3de86687", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x619d4a6bb70e5e806372826b6389dbc38d0eef4b", + "value": "0x573a39b51dc1000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xdf4c755c53653b8c188c4dc154718f5707eecbc05e51a72a4f4055db6388f144", + "transactionPosition": 36, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x400878aaE1bE642b17520CD82456EBbe500927a1", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x682d9e2462e17bdd8c9724529b7f4d8d72e3c6a841240c20d69fd39ed499c7fa", + "input": "0x", + "nonce": 4, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 37, + "value": "25447835000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x42e313aa83591c37249e05a2d0321b5ae438a124878d304664f0a3839d388cf8", + "s": "0x246e846d7711813c554904448719de0e97ae86e324646334ab717506ce575d74", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2914187", + "effectiveGasPrice": "34000000000", + "from": "0x400878aae1be642b17520cd82456ebbe500927a1", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x682d9e2462e17bdd8c9724529b7f4d8d72e3c6a841240c20d69fd39ed499c7fa", + "transactionIndex": 37, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x400878aae1be642b17520cd82456ebbe500927a1", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x5a68abcd7a4e00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x682d9e2462e17bdd8c9724529b7f4d8d72e3c6a841240c20d69fd39ed499c7fa", + "transactionPosition": 37, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x00269FCCbE3Ff66296b0663529312c33858bFDCf", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xeac25ce1a09caf1af7ee87be7d10149e0fa2e6c5ea7052ef6319bb40c1beeff9", + "input": "0x", + "nonce": 183, + "to": "0xB446E4703FC346680b1ab1fc3b228a620287F79C", + "transactionIndex": 38, + "value": "1650000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x66f0f3303161b6acff6ad0c5cd1c698529d4cd6cf2cd4c416f81ff103248c70", + "s": "0x774057b0eb2f372e0e249f88978b1a8bb48b41f149bba326702470a5aef8704a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2935187", + "effectiveGasPrice": "34000000000", + "from": "0x00269fccbe3ff66296b0663529312c33858bfdcf", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xb446e4703fc346680b1ab1fc3b228a620287f79c", + "transactionHash": "0xeac25ce1a09caf1af7ee87be7d10149e0fa2e6c5ea7052ef6319bb40c1beeff9", + "transactionIndex": 38, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x00269fccbe3ff66296b0663529312c33858bfdcf", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xb446e4703fc346680b1ab1fc3b228a620287f79c", + "value": "0x16e5fa4207650000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xeac25ce1a09caf1af7ee87be7d10149e0fa2e6c5ea7052ef6319bb40c1beeff9", + "transactionPosition": 38, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xC88F7666330b4b511358b7742dC2a3234710e7B1", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x7c1d683f32b3303c5e49df935abc49679e111b4a9a136981a1ca1f2eb662e4cf", + "input": "0x", + "nonce": 649179, + "to": "0xA797C26E715B1E47b03e929cB97645aDBcfCb587", + "transactionIndex": 39, + "value": "150000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xf48c75558cbe42eb1f65a9f77809468ce42d69c3e0383d6134d10c6aab994bb7", + "s": "0x701faf54b4882c0418277d83577e65ccdb44066f5ec163f7e5f771c412788016", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "2956187", + "effectiveGasPrice": "34000000000", + "from": "0xc88f7666330b4b511358b7742dc2a3234710e7b1", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa797c26e715b1e47b03e929cb97645adbcfcb587", + "transactionHash": "0x7c1d683f32b3303c5e49df935abc49679e111b4a9a136981a1ca1f2eb662e4cf", + "transactionIndex": 39, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xc88f7666330b4b511358b7742dc2a3234710e7b1", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa797c26e715b1e47b03e929cb97645adbcfcb587", + "value": "0x214e8348c4f0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x7c1d683f32b3303c5e49df935abc49679e111b4a9a136981a1ca1f2eb662e4cf", + "transactionPosition": 39, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x27c11b31Ea0db2c5D013Fc0748BA4B2544FDF2FF", + "gas": 46208, + "gasPrice": "34000000000", + "hash": "0x1ad7467487c5d8848af3576a64aa98d566b712b00808176d76b7f0e6cc7e8575", + "input": "0x095ea7b3000000000000000000000000331af2e331bd619defaa5dac6c038f53fcf9f785ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 362, + "to": "0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF", + "transactionIndex": 40, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xdcc623f771f6ab88f8a71d0e7b79f66e1874ef83f3ad79213b874e80813f6dbf", + "s": "0xbf8f3fa1ecbae5fa1a37a4d026cd6a38246bc9a53039bc0997450f9826af910", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3002395", + "effectiveGasPrice": "34000000000", + "from": "0x27c11b31ea0db2c5d013fc0748ba4b2544fdf2ff", + "gasUsed": "46208", + "logs": [ + { + "address": "0xcA3d75aC011BF5aD07a98d02f18225F9bD9A6BDF", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000027c11b31ea0db2c5d013fc0748ba4b2544fdf2ff", + "0x000000000000000000000000331af2e331bd619defaa5dac6c038f53fcf9f785" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x1ad7467487c5d8848af3576a64aa98d566b712b00808176d76b7f0e6cc7e8575", + "transactionIndex": 40, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 64, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed _owner,address indexed _spender,uint256 _value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "_owner", + "type": "address", + "decoded": "0x27c11b31ea0db2c5d013fc0748ba4b2544fdf2ff" + }, + { + "indexed": true, + "name": "_spender", + "type": "address", + "decoded": "0x331af2e331bd619defaa5dac6c038f53fcf9f785" + }, + { + "indexed": false, + "name": "_value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000008020000004000000000000000000000000000000000000000000000000000000000000000000020000000000000010000000000000000000000000000000000200000000000000000000000000100100000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "transactionHash": "0x1ad7467487c5d8848af3576a64aa98d566b712b00808176d76b7f0e6cc7e8575", + "transactionIndex": 40, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x27c11b31ea0db2c5d013fc0748ba4b2544fdf2ff", + "callType": "call", + "gas": "0x5ec8", + "input": "0x095ea7b3000000000000000000000000331af2e331bd619defaa5dac6c038f53fcf9f785ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5ec8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1ad7467487c5d8848af3576a64aa98d566b712b00808176d76b7f0e6cc7e8575", + "transactionPosition": 40, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address _spender,uint256 _value)", + "name": "approve", + "decoded": [ + { + "name": "_spender", + "type": "address", + "decoded": "0x331af2e331bd619defaa5dac6c038f53fcf9f785" + }, + { + "name": "_value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa5188b7Af326cdF6ee958B0792E425cdEe549809", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x2be7773430b169bf42a6472557b7ea93c437cda9b589e8f3cb37ab15a56d1453", + "input": "0x", + "nonce": 10, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 41, + "value": "17154128000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x551ce24bf1aaffcb01ed12ba5d5568c20b1516acbc63c4038a590e1254e35338", + "s": "0x671fbae7d9ac56fd620a78a9df9775ab5eea745ffdd601f0e3cf0566db572496", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3023395", + "effectiveGasPrice": "34000000000", + "from": "0xa5188b7af326cdf6ee958b0792e425cdee549809", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x2be7773430b169bf42a6472557b7ea93c437cda9b589e8f3cb37ab15a56d1453", + "transactionIndex": 41, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa5188b7af326cdf6ee958b0792e425cdee549809", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3cf196a9df2000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2be7773430b169bf42a6472557b7ea93c437cda9b589e8f3cb37ab15a56d1453", + "transactionPosition": 41, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4DC85a47960338E3AD4a9504f879F2BBEdE36690", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x483378ffa699d9b50f5a110cbf43a6463f2bfd6d087bb0475131b96f53a255ba", + "input": "0x", + "nonce": 4, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 42, + "value": "34413489000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x59523ca5653a1e5817581c17f476fdf3c0145eff95270aaa3af347deea38fe65", + "s": "0x6b8585fd5eb1d4243b5664647fecd9f65d1a9a1d0fd9ed086d1057f832e2076f", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3044395", + "effectiveGasPrice": "34000000000", + "from": "0x4dc85a47960338e3ad4a9504f879f2bbede36690", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x483378ffa699d9b50f5a110cbf43a6463f2bfd6d087bb0475131b96f53a255ba", + "transactionIndex": 42, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4dc85a47960338e3ad4a9504f879f2bbede36690", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x7a42e2cb53aa00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x483378ffa699d9b50f5a110cbf43a6463f2bfd6d087bb0475131b96f53a255ba", + "transactionPosition": 42, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6C6b712C0F717C3A8476628467b0eaEACFf0C193", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x727fc7da3df15b99fa1a181584d9ec07e35ba51b25e2091e4b7b4116fa8290a9", + "input": "0x", + "nonce": 50, + "to": "0x58d9A3f4091C4f28b7790b1E952F18db2b39d4a6", + "transactionIndex": 43, + "value": "1284746000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x86b2f720be507e45b10b5a83c56b255b48d5e1cf2610d01b2aed78eae65ed1b2", + "s": "0x2bac39b8dc783482fcf49628a76696ae2b633d4aed633f062ab7140d4614b1e0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3065395", + "effectiveGasPrice": "34000000000", + "from": "0x6c6b712c0f717c3a8476628467b0eaeacff0c193", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x58d9a3f4091c4f28b7790b1e952f18db2b39d4a6", + "transactionHash": "0x727fc7da3df15b99fa1a181584d9ec07e35ba51b25e2091e4b7b4116fa8290a9", + "transactionIndex": 43, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6c6b712c0f717c3a8476628467b0eaeacff0c193", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x58d9a3f4091c4f28b7790b1e952f18db2b39d4a6", + "value": "0x11d455ae1c9aa000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x727fc7da3df15b99fa1a181584d9ec07e35ba51b25e2091e4b7b4116fa8290a9", + "transactionPosition": 43, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x86D3E894b5CDb6a80affFd35eD348868fb98DD3f", + "gas": 100000, + "gasPrice": "34000000000", + "hash": "0x20c5c32bc5e84972dbeb064d1bbf435e5da4011ffd741fd57cabd174059101fa", + "input": "0x", + "nonce": 53934, + "to": "0xdBEa9864C16f6207786e2b8BAB499aeeDE6b34D5", + "transactionIndex": 44, + "value": "483400170414000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xca8cbc2bd22ee88dfd97fa286c6d278536b387b1bcd7b4bdae9fa7e6d928ae58", + "s": "0x660f4f6fd9e399780b298f651b5d5b1674f4e5e0c853ec7bd7dc3b0f77fef7ec", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3086395", + "effectiveGasPrice": "34000000000", + "from": "0x86d3e894b5cdb6a80afffd35ed348868fb98dd3f", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xdbea9864c16f6207786e2b8bab499aeede6b34d5", + "transactionHash": "0x20c5c32bc5e84972dbeb064d1bbf435e5da4011ffd741fd57cabd174059101fa", + "transactionIndex": 44, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x86d3e894b5cdb6a80afffd35ed348868fb98dd3f", + "callType": "call", + "gas": "0x13498", + "input": "0x", + "to": "0xdbea9864c16f6207786e2b8bab499aeede6b34d5", + "value": "0x6b561e4d1e3c780" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x20c5c32bc5e84972dbeb064d1bbf435e5da4011ffd741fd57cabd174059101fa", + "transactionPosition": 44, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4e9c89B6f8eC167cc390D4386d6ddB70281ccC68", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x1d83ed21fcedd943158681bda8e977c8ea16414172b2d813bfae4937ec4340d6", + "input": "0x", + "nonce": 2, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 45, + "value": "14270801000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7f6301159e8fd085f04fe432bf8bfe8821fca35b82df7c0ae35dd2271901c53d", + "s": "0x6914202731b0ba719560427b797f3a8d9e3103539aa84ec5418d894cb8168120", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3107395", + "effectiveGasPrice": "34000000000", + "from": "0x4e9c89b6f8ec167cc390d4386d6ddb70281ccc68", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x1d83ed21fcedd943158681bda8e977c8ea16414172b2d813bfae4937ec4340d6", + "transactionIndex": 45, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4e9c89b6f8ec167cc390d4386d6ddb70281ccc68", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x32b337c843ea00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1d83ed21fcedd943158681bda8e977c8ea16414172b2d813bfae4937ec4340d6", + "transactionPosition": 45, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x1aF7D575C4D9f3E673f1cC5e93a6B931dC6caD24", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x240c0f07c25fa771fd11fb84808c43624d01f2b19fc173350aa13ce514fa79ea", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 46, + "value": "17543224000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xf0abefa02770b6c008ae814997edae1aa34333a3af9e622f729789e5436eb814", + "s": "0x742624338256d526d505f5948829d529144b33c74d2c3d88952859efb750d846", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3128395", + "effectiveGasPrice": "34000000000", + "from": "0x1af7d575c4d9f3e673f1cc5e93a6b931dc6cad24", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x240c0f07c25fa771fd11fb84808c43624d01f2b19fc173350aa13ce514fa79ea", + "transactionIndex": 46, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x1af7d575c4d9f3e673f1cc5e93a6b931dc6cad24", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3e537822bc3000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x240c0f07c25fa771fd11fb84808c43624d01f2b19fc173350aa13ce514fa79ea", + "transactionPosition": 46, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9A934E88b5BAb8cC715a4aB7E94F67551ae3709b", + "gas": 215170, + "gasPrice": "34000000000", + "hash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "input": "0x38ed1739000000000000000000000000000000000000000000000050ef458d6c9a8b6a1500000000000000000000000000000000000000000000005b40070756dd45b31b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b0000000000000000000000000000000000000000000000000000000060d0d8f50000000000000000000000000000000000000000000000000000000000000003000000000000000000000000f1a91c7d44768070f711c68f33a7ca25c8d30268000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "nonce": 187, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 47, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x90f51b0eab7b73ecaa22fa98e8bbcac2997951e6db5b8d682041b2ad5c8e860b", + "s": "0x30fd25e301a2e68a42f949fa45067534da9975f3132345b8caff6cc5750a7ca7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3294968", + "effectiveGasPrice": "34000000000", + "from": "0x9a934e88b5bab8cc715a4ab7e94f67551ae3709b", + "gasUsed": "166573", + "logs": [ + { + "address": "0xf1a91C7d44768070F711c68f33A7CA25c8D30268", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b", + "0x000000000000000000000000984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3" + ], + "data": "0x000000000000000000000000000000000000000000000050ef458d6c9a8b6a15", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 65, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x9a934e88b5bab8cc715a4ab7e94f67551ae3709b" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1492980868142810753557" + } + ] + } + }, + { + "address": "0xf1a91C7d44768070F711c68f33A7CA25c8D30268", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffff8cb5ec7c26295d257ea", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 66, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x9a934e88b5bab8cc715a4ab7e94f67551ae3709b" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564005430170833007613728746" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "0x000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11" + ], + "data": "0x0000000000000000000000000000000000000000000000000c44a0f88101037c", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 67, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x984A3eAB3Cf2Fc2b4ca6E4A3768624a8272fe2a3", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000003b6c147aa7dd77324500000000000000000000000000000000000000000001872896c72d5aa87f958a", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 68, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x984A3eAB3Cf2Fc2b4ca6E4A3768624a8272fe2a3", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050ef458d6c9a8b6a150000000000000000000000000000000000000000000000000c44a0f88101037c0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 69, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "0x0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b" + ], + "data": "0x00000000000000000000000000000000000000000000005b881ccee9aaefd2f8", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 70, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "address": "0xA478c2975Ab1Ea89e8196811F51A7B7Ade33eB11", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000001de6e4ae093a5fc42332da0000000000000000000000000000000000000000000003fef674f3a44cdb41fe", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 71, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xA478c2975Ab1Ea89e8196811F51A7B7Ade33eB11", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c44a0f88101037c00000000000000000000000000000000000000000000005b881ccee9aaefd2f80000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 72, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000400000000000002080010000002000000000000000010010000000000000000000000000000000000000000002000000080000000800000000200000000000000200000000000008000000200000000000000000040000000000000010000000000080000000000080000000000000000000000000000010000000000000000100100000004000000000000000000000000000080000004000000000020000000000000000000000000000000000000000000000000200000000000000000002000000000000000020400000000002000000001040000004001020000010200000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionIndex": 47, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9a934e88b5bab8cc715a4ab7e94f67551ae3709b", + "callType": "call", + "gas": "0x2ecda", + "input": "0x38ed1739000000000000000000000000000000000000000000000050ef458d6c9a8b6a1500000000000000000000000000000000000000000000005b40070756dd45b31b00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b0000000000000000000000000000000000000000000000000000000060d0d8f50000000000000000000000000000000000000000000000000000000000000003000000000000000000000000f1a91c7d44768070f711c68f33a7ca25c8d30268000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x27f7d", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000050ef458d6c9a8b6a150000000000000000000000000000000000000000000000000c44a0f88101037c00000000000000000000000000000000000000000000005b881ccee9aaefd2f8" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2cebf", + "input": "0x0902f1ac", + "to": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000003b78591ba05e7835c10000000000000000000000000000000000000000000186d7a7819fee0df42b750000000000000000000000000000000000000000000000000000000060d0cc68" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2b283", + "input": "0x0902f1ac", + "to": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000001de740362609496f1305d20000000000000000000000000000000000000000000003feea3052abcbda3e820000000000000000000000000000000000000000000000000000000060d0d1fe" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x29466", + "input": "0x23b872dd0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b000000000000000000000000984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3000000000000000000000000000000000000000000000050ef458d6c9a8b6a15", + "to": "0xf1a91c7d44768070f711c68f33a7ca25c8d30268", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6351", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x22745", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000c44a0f88101037c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb1100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbad1", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "callType": "call", + "gas": "0x1eb3a", + "input": "0xa9059cbb000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb110000000000000000000000000000000000000000000000000c44a0f88101037c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "callType": "staticcall", + "gas": "0x1b758", + "input": "0x70a08231000000000000000000000000984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000003b6c147aa7dd773245" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "callType": "staticcall", + "gas": "0x1b3b5", + "input": "0x70a08231000000000000000000000000984a3eab3cf2fc2b4ca6e4a3768624a8272fe2a3", + "to": "0xf1a91c7d44768070f711c68f33a7ca25c8d30268", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25e", + "output": "0x00000000000000000000000000000000000000000001872896c72d5aa87f958a" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x16820", + "input": "0x022c0d9f00000000000000000000000000000000000000000000005b881ccee9aaefd2f800000000000000000000000000000000000000000000000000000000000000000000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfe6d", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "callType": "call", + "gas": "0x12f12", + "input": "0xa9059cbb0000000000000000000000009a934e88b5bab8cc715a4ab7e94f67551ae3709b00000000000000000000000000000000000000000000005b881ccee9aaefd2f8", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x75de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "callType": "staticcall", + "gas": "0xb89e", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25a", + "output": "0x0000000000000000000000000000000000000000001de6e4ae093a5fc42332da" + }, + "subtraces": 0, + "traceAddress": [4, 1], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + }, + { + "action": { + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "callType": "staticcall", + "gas": "0xb4b8", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000003fef674f3a44cdb41fe" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x69023f29b9c95b421b3fc765c9a1d5e2aba2ba3bc4a8cb13e42d2dbf3c9f4bb3", + "transactionPosition": 47, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "57980410363" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "634167886137269527" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x62359ed7505efc61ff1d56fef82158ccaffa23d7" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299195" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x294803520A1E7B671C105C8a3D94836f40B2b557", + "gas": 175806, + "gasPrice": "34000000000", + "hash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "input": "0x18cbafe50000000000000000000000000000000000000000000000056bc760811e28642000000000000000000000000000000000000000000000000008fd12bcb5d324e700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000294803520a1e7b671c105c8a3d94836f40b2b5570000000000000000000000000000000000000000000000000000000060d0d90900000000000000000000000000000000000000000000000000000000000000020000000000000000000000003ee6e46f52c475c52040b934745501f2a0cea252000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 1989, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 48, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x8596b006517a5af1e1d06fae9b447c75e29483af0506c70b9b8513ed74b066a", + "s": "0xef9ebc011165dfe5289bbe0e0d3ade45af062f00d091b48085b9515768050a6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3401891", + "effectiveGasPrice": "34000000000", + "from": "0x294803520a1e7b671c105c8a3d94836f40b2b557", + "gasUsed": "106923", + "logs": [ + { + "address": "0x3eE6E46f52c475c52040b934745501F2A0cEa252", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000294803520a1e7b671c105c8a3d94836f40b2b557", + "0x000000000000000000000000dfe56501901e58c175e4ff381b4cf6b39d3bea22" + ], + "data": "0x0000000000000000000000000000000000000000000000056bc760811e286420", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 73, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x294803520a1e7b671c105c8a3d94836f40b2b557" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "100000002558644479008" + } + ] + } + }, + { + "address": "0x3eE6E46f52c475c52040b934745501F2A0cEa252", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000294803520a1e7b671c105c8a3d94836f40b2b557", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffa94389f7ee1d79bdf", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 74, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x294803520a1e7b671c105c8a3d94836f40b2b557" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039357584005354485160927" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000dfe56501901e58c175e4ff381b4cf6b39d3bea22", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000009702079588419f3", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 75, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xDfe56501901E58C175e4Ff381B4Cf6b39d3beA22", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000033da2efb5b79ae61a6d0000000000000000000000000000000000000000000000059f477f67d4ec5393", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 76, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xDfe56501901E58C175e4Ff381B4Cf6b39d3beA22", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000056bc760811e2864200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009702079588419f3", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 77, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000009702079588419f3", + "blockNumber": 12679108, + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 78, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000200000000010000000000000000000000000000000000000000100002000000080000000000000000200000000000000000000000000008000000600000000000480000000000000000000000000000002000040080001000004000000000000000040000000010000000040000000000004000004000000000000000000000000000080000004000000000020000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000001000000002000020000010200000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionIndex": 48, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x294803520a1e7b671c105c8a3d94836f40b2b557", + "callType": "call", + "gas": "0x25492", + "input": "0x18cbafe50000000000000000000000000000000000000000000000056bc760811e28642000000000000000000000000000000000000000000000000008fd12bcb5d324e700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000294803520a1e7b671c105c8a3d94836f40b2b5570000000000000000000000000000000000000000000000000000000060d0d90900000000000000000000000000000000000000000000000000000000000000020000000000000000000000003ee6e46f52c475c52040b934745501f2a0cea252000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1dac3", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000056bc760811e28642000000000000000000000000000000000000000000000000009702079588419f3" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x23899", + "input": "0x0902f1ac", + "to": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000338372855367cbdb64d000000000000000000000000000000000000000000000005a8b79fe12d706d860000000000000000000000000000000000000000000000000000000060d088fa" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x21a90", + "input": "0x23b872dd000000000000000000000000294803520a1e7b671c105c8a3d94836f40b2b557000000000000000000000000dfe56501901e58c175e4ff381b4cf6b39d3bea220000000000000000000000000000000000000000000000056bc760811e286420", + "to": "0x3ee6e46f52c475c52040b934745501f2a0cea252", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5e28", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b54f", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009702079588419f30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfe9f", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22", + "callType": "call", + "gas": "0x17aee", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000009702079588419f3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22", + "callType": "staticcall", + "gas": "0x1055e", + "input": "0x70a08231000000000000000000000000dfe56501901e58c175e4ff381b4cf6b39d3bea22", + "to": "0x3ee6e46f52c475c52040b934745501f2a0cea252", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x360", + "output": "0x00000000000000000000000000000000000000000000033da2efb5b79ae61a6d" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0xdfe56501901e58c175e4ff381b4cf6b39d3bea22", + "callType": "staticcall", + "gas": "0x10076", + "input": "0x70a08231000000000000000000000000dfe56501901e58c175e4ff381b4cf6b39d3bea22", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000059f477f67d4ec5393" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xb8b0", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000009702079588419f3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x9702079588419f3" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x79a8", + "input": "0x", + "to": "0x294803520a1e7b671c105c8a3d94836f40b2b557", + "value": "0x9702079588419f3" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x3b3e42657de8546016f757d8cf9e205b8a4d72d7c81f6bb6d63ee309bad627b7", + "transactionPosition": 48, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETH(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETH(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETH", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "2258436987" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "487696653644355917" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4c59E1B80ca11215c2a53b39651825663048a7ED", + "gas": 206095, + "gasPrice": "34000000000", + "hash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "input": "0x38ed17390000000000000000000000000000000000000000000000c4ba7df0bbe49400000000000000000000000000000000000000000000000000000000000056025a8d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed0000000000000000000000000000000000000000000000000000000060d0d2790000000000000000000000000000000000000000000000000000000000000003000000000000000000000000f938424f7210f31df2aee3011291b658f872e91e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "nonce": 6460, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 49, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xde1f8919e244878c33277c2c5395b4276ed5e9d36027ba8f66c311e7e4073089", + "s": "0x4c899b01f9caa3a2fb834e3e8da5eae38a047e14d78ff97551ea23d92f98a5e9", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3560942", + "effectiveGasPrice": "34000000000", + "from": "0x4c59e1b80ca11215c2a53b39651825663048a7ed", + "gasUsed": "159051", + "logs": [ + { + "address": "0xF938424F7210f31dF2Aee3011291b658f872e91e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed", + "0x0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63" + ], + "data": "0x0000000000000000000000000000000000000000000000c4ba7df0bbe4940000", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 79, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0c2445bec45c443c58f44f8e0a5796960e052d63" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xfa7c324cb1d3b0128feaa246c93417829bc23809" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "3511638901136150306297" + } + ] + } + }, + { + "address": "0xF938424F7210f31dF2Aee3011291b658f872e91e", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffb412e84f3d37576a2350", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 80, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x4c59e1b80ca11215c2a53b39651825663048a7ed" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640563680906512368794723820368" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc" + ], + "data": "0x0000000000000000000000000000000000000000000000000ab1390d4942591e", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 81, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x0C2445BEc45c443c58f44f8e0a5796960E052D63", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000001baef80cada88ee9e100000000000000000000000000000000000000000001fc9789ef448a5a89489b", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 82, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x0C2445BEc45c443c58f44f8e0a5796960E052D63", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4ba7df0bbe49400000000000000000000000000000000000000000000000000000ab1390d4942591e0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 83, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "0x0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000057b655e7", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 84, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000000004e9c8db6953a00000000000000000000000000000000000000000000098de684aacea361c608", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 85, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab1390d4942591e0000000000000000000000000000000000000000000000000000000057b655e70000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 86, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x10204000010080000000010080000000000000000000000000010000000000000000000000000000000000000000000002000000080000000000000000200000000000000000000008200008000001600000000000000000000000004000000000000000000000000000000000000000000000000000000000000010000000000000000000000000084000000000000000000000010020080000004000000000020000000000200200000000000000000000000000000010000000000000000000000002008000000000000000000000000000800000001000000000000020000018200000000000000000004000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionIndex": 49, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4c59e1b80ca11215c2a53b39651825663048a7ed", + "callType": "call", + "gas": "0x2c9bb", + "input": "0x38ed17390000000000000000000000000000000000000000000000c4ba7df0bbe49400000000000000000000000000000000000000000000000000000000000056025a8d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed0000000000000000000000000000000000000000000000000000000060d0d2790000000000000000000000000000000000000000000000000000000000000003000000000000000000000000f938424f7210f31df2aee3011291b658f872e91e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2626f", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000c4ba7df0bbe49400000000000000000000000000000000000000000000000000000ab1390d4942591e0000000000000000000000000000000000000000000000000000000057b655e7" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2ac2c", + "input": "0x0902f1ac", + "to": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000001bb9a945baf1d142ff00000000000000000000000000000000000000000001fbd2cf7153ce75f5489b0000000000000000000000000000000000000000000000000000000060d0ceef" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x28ff0", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000000004e9ce56ceb2100000000000000000000000000000000000000000000098ddbd371c15a1f6cea0000000000000000000000000000000000000000000000000000000060d0d25c" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x271d3", + "input": "0x23b872dd0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d630000000000000000000000000000000000000000000000c4ba7df0bbe4940000", + "to": "0xf938424f7210f31df2aee3011291b658f872e91e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x508a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2172f", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000ab1390d4942591e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xba7a", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "call", + "gas": "0x1db65", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000000ab1390d4942591e", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "staticcall", + "gas": "0x1a783", + "input": "0x70a082310000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000001baef80cada88ee9e1" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "staticcall", + "gas": "0x1a3df", + "input": "0x70a082310000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "to": "0xf938424f7210f31df2aee3011291b658f872e91e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x207", + "output": "0x00000000000000000000000000000000000000000001fc9789ef448a5a89489b" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1585f", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000057b655e700000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xf47d", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "call", + "gas": "0x11f90", + "input": "0xa9059cbb0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed0000000000000000000000000000000000000000000000000000000057b655e7", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6925", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [4, 0], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xff36", + "input": "0xa9059cbb0000000000000000000000004c59e1b80ca11215c2a53b39651825663048a7ed0000000000000000000000000000000000000000000000000000000057b655e7", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4cac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [4, 0, 0], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0xb5a2", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000004e9c8db6953a" + }, + "subtraces": 1, + "traceAddress": [4, 1], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xaff2", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000004e9c8db6953a" + }, + "subtraces": 0, + "traceAddress": [4, 1, 0], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0xaefe", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000098de684aacea361c608" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x862826a167f9fefb8927f9da607cc8c469bc9a5128ef4e518d9ba8c4b4ee3326", + "transactionPosition": 49, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "57980410363" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "634167886137269527" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x62359ed7505efc61ff1d56fef82158ccaffa23d7" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299195" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "input": "0x8803dbee00000000000000000000000000000000000000000000001da72661deaaac0000000000000000000000000000000000000000000000000000148654c8a2fcdc8400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b50000000000000000000000000000000000000000000000000000000060d0e0110000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 33, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 50, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x1febe1b94d1ad095bf8931344a2a721b39a38fba0b359459c9e99f69b558aaf5", + "s": "0x2aa53e60e5821a2c4bd9b3e3cc8a7fb05f4dece626c089bdb4a4390d0917b319", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3681467", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "120525", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x0000000000000000000000000000000000000000000000000dc66592aead2452", + "blockNumber": 12679108, + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionIndex": 50, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 87, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x00000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b5" + ], + "data": "0x00000000000000000000000000000000000000000000001da72661deaaac0000", + "blockNumber": 12679108, + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionIndex": 50, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 88, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000000064fbe209b1daa3c42000000000000000000000000000000000000000000000d82e040469f26d40000", + "blockNumber": 12679108, + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionIndex": 50, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 89, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b5" + ], + "data": "0x0000000000000000000000000000000000000000000000000dc66592aead24520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001da72661deaaac0000", + "blockNumber": 12679108, + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionIndex": 50, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 90, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000080000000000000000800000000002000000080000000000000100000000000000000000000000000008000000200000000010000000000000000000000000000000000040000000000000000000000000000000000000000010000000000000000000000000004008000000800000200000000000080000004000000000000000000000000000008000000000002000000000000000000000000000000000000002002000000200000000000000000000080000001000000000000020000000200000000000000000000000000040000000000000000000000000010000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionIndex": 50, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee00000000000000000000000000000000000000000000001da72661deaaac0000000000000000000000000000000000000000000000000000148654c8a2fcdc8400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b50000000000000000000000000000000000000000000000000000000060d0e0110000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x187a9", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000dc66592aead245200000000000000000000000000000000000000000000001da72661deaaac0000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000641f7bb086efd17f0000000000000000000000000000000000000000000000da08766a87dd18000000000000000000000000000000000000000000000000000000000000060d0d167" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db0000000000000000000000000000000000000000000000000dc66592aead2452", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001da72661deaaac000000000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b500000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1115b", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb00000000000000000000000082fb2f4b37ca02510b2ed67bdfc2701392bb62b500000000000000000000000000000000000000000000001da72661deaaac0000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000064fbe209b1daa3c42" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000d82e040469f26d40000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x4b9e4823df42978ea55c1eb75d02e90c7dac2d26731611331604ced9361ce472", + "transactionPosition": 50, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xe31e3AE230Cc15c6e8c42b5be64E6C2CCB220BDE", + "gas": 80000, + "gasPrice": "34000000000", + "hash": "0x2dc674b6bb60fa49d5fee0049549ee057705df9f4dfc10c0a38c57bf3cdba2db", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb880000000000000000000000000000000000000000000000001bc16d674ec80000", + "nonce": 0, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 51, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xec5cb30821dc686f9ec69103bf4805b773358b13ecaa7620574492c943069fd8", + "s": "0x5c530ceabaa02eb0d8b046ce4ccca16122b9bd3de74587ed98827734f80ea596", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3701642", + "effectiveGasPrice": "34000000000", + "from": "0xe31e3ae230cc15c6e8c42b5be64e6c2ccb220bde", + "gasUsed": "20175", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e31e3ae230cc15c6e8c42b5be64e6c2ccb220bde", + "0x00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88" + ], + "data": "0x0000000000000000000000000000000000000000000000001bc16d674ec80000", + "blockNumber": 12679108, + "transactionHash": "0x2dc674b6bb60fa49d5fee0049549ee057705df9f4dfc10c0a38c57bf3cdba2db", + "transactionIndex": 51, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 91, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000400000000000000010000008000000000000000000000000000000000000000000400000000000000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000200000000000002000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0x2dc674b6bb60fa49d5fee0049549ee057705df9f4dfc10c0a38c57bf3cdba2db", + "transactionIndex": 51, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xe31e3ae230cc15c6e8c42b5be64e6c2ccb220bde", + "callType": "call", + "gas": "0xe400", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb880000000000000000000000000000000000000000000000001bc16d674ec80000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2dc674b6bb60fa49d5fee0049549ee057705df9f4dfc10c0a38c57bf3cdba2db", + "transactionPosition": 51, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x513462d387fBAdda112b827FEeC77894eF169083", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xc8ee2bd89cda1e9250199d45a7678249c50e20c1f7c6cdf562ff446e141f3717", + "input": "0x", + "nonce": 4, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 52, + "value": "17637223000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x54f77dec07c4794b78ec17fe5aa1e718385598532521237408a01a0270c8c693", + "s": "0x236f0608cc280f62f804a30308225c0b23f7340bd3b70b0a1b4b578f4ee9b6bc", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3722642", + "effectiveGasPrice": "34000000000", + "from": "0x513462d387fbadda112b827feec77894ef169083", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xc8ee2bd89cda1e9250199d45a7678249c50e20c1f7c6cdf562ff446e141f3717", + "transactionIndex": 52, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x513462d387fbadda112b827feec77894ef169083", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3ea8f5fbbd4600" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc8ee2bd89cda1e9250199d45a7678249c50e20c1f7c6cdf562ff446e141f3717", + "transactionPosition": 52, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x3119Bd0835993fb3DA89771e7d8E6236c24E9106", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xc890be47acc6a929256382b20dd63fd83e1cde212598248644a3c21c4713ab3f", + "input": "0x", + "nonce": 67, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 53, + "value": "18320693000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x56b2aa1eb3d521976e4e1a36cd9dd0ed93f4c3b499f4dff0ba4ca6fe1440d59d", + "s": "0x76231eaeac5f0d99e3c317ae1c43855b39a65e717d384ec8b3fda91cbf1287d4", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3743642", + "effectiveGasPrice": "34000000000", + "from": "0x3119bd0835993fb3da89771e7d8e6236c24e9106", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xc890be47acc6a929256382b20dd63fd83e1cde212598248644a3c21c4713ab3f", + "transactionIndex": 53, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x3119bd0835993fb3da89771e7d8e6236c24e9106", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x411692be4dd200" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc890be47acc6a929256382b20dd63fd83e1cde212598248644a3c21c4713ab3f", + "transactionPosition": 53, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xf06A0c187aBf7657129a71383faD3B6eAAC44396", + "gas": 80000, + "gasPrice": "34000000000", + "hash": "0xf209649b7a2073a2e836907fd73d726642e618d0aeb4955d74f2d3b20c62eb0f", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000000000000000000000000000058d15e176280000", + "nonce": 0, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 54, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x1a00beee3a90fd9883c2725e971e0945c27db2eef08aa35d5054055bdc7c43fc", + "s": "0x5939f4dcce655db70c99b27c9be75b0ed7f141dff1a7e68dd638df79d0798fab", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3763817", + "effectiveGasPrice": "34000000000", + "from": "0xf06a0c187abf7657129a71383fad3b6eaac44396", + "gasUsed": "20175", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f06a0c187abf7657129a71383fad3b6eaac44396", + "0x00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88" + ], + "data": "0x000000000000000000000000000000000000000000000000058d15e176280000", + "blockNumber": 12679108, + "transactionHash": "0xf209649b7a2073a2e836907fd73d726642e618d0aeb4955d74f2d3b20c62eb0f", + "transactionIndex": 54, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 92, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000400000000000000000000008000001000000000000000000000000000001000000400000000000000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0xf209649b7a2073a2e836907fd73d726642e618d0aeb4955d74f2d3b20c62eb0f", + "transactionIndex": 54, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xf06a0c187abf7657129a71383fad3b6eaac44396", + "callType": "call", + "gas": "0xe400", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000000000000000000000000000058d15e176280000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xf209649b7a2073a2e836907fd73d726642e618d0aeb4955d74f2d3b20c62eb0f", + "transactionPosition": 54, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x5f201C4c1071a476D4f6BD325D9fd8648d657599", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x162b3c7f465f9fb9cb9af748e83bb4f810a81bfd9ce3cfb98c5785ac9d382176", + "input": "0x", + "nonce": 1, + "to": "0xC88F7666330b4b511358b7742dC2a3234710e7B1", + "transactionIndex": 55, + "value": "147984690000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xd85d7913713ffba1ca5d1980fed7e53335d30020927d9cc3c8d855d98fa0831b", + "s": "0x1d17999d980728b3547e40d1f43066c95f380df7c73a8a2dfe0ad252b7226e59", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3784817", + "effectiveGasPrice": "34000000000", + "from": "0x5f201c4c1071a476d4f6bd325d9fd8648d657599", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xc88f7666330b4b511358b7742dc2a3234710e7b1", + "transactionHash": "0x162b3c7f465f9fb9cb9af748e83bb4f810a81bfd9ce3cfb98c5785ac9d382176", + "transactionIndex": 55, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x5f201c4c1071a476d4f6bd325d9fd8648d657599", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xc88f7666330b4b511358b7742dc2a3234710e7b1", + "value": "0x20dbf4a9fa57400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x162b3c7f465f9fb9cb9af748e83bb4f810a81bfd9ce3cfb98c5785ac9d382176", + "transactionPosition": 55, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x7410826b16F8DF09c41752B79432374b9bFa0ad1", + "gas": 246304, + "gasPrice": "34000000000", + "hash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "input": "0x2e17de78000000000000000000000000000000000000000000000182606fc4323b042e85", + "nonce": 292, + "to": "0x7ee680A47953Aff929ACD71C3ED16E9Daa9bd312", + "transactionIndex": 56, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7fd0cc8ed102dedcc21f8e4af1f42ca3ceea79f19b2f8b1d6adf3b21713e0bbf", + "s": "0x44a36573aa2df222b622b176069cdf9cc464b2b4b0628d4f35bb7fbac95a5823", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "3904020", + "effectiveGasPrice": "34000000000", + "from": "0x7410826b16f8df09c41752b79432374b9bfa0ad1", + "gasUsed": "119203", + "logs": [ + { + "address": "0xFF75CEd57419bcaEBe5F05254983b013B0646eF5", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007ee680a47953aff929acd71c3ed16e9daa9bd312", + "0x0000000000000000000000007410826b16f8df09c41752b79432374b9bfa0ad1" + ], + "data": "0x000000000000000000000000000000000000000000000182606fc4323b042e85", + "blockNumber": 12679108, + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionIndex": 56, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 93, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0x7ee680A47953Aff929ACD71C3ED16E9Daa9bd312", + "topics": [ + "0x85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd", + "0x0000000000000000000000007410826b16f8df09c41752b79432374b9bfa0ad1" + ], + "data": "0x000000000000000000000000000000000000000000000182606fc4323b042e85", + "blockNumber": 12679108, + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionIndex": 56, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 94, + "removed": false, + "decoded": { + "signature": "Unstake(address,uint256)", + "signature_with_arg_names": "Unstake(address indexed account,uint256 cookAmount)", + "name": "Unstake", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address", + "decoded": "0x7410826b16f8df09c41752b79432374b9bfa0ad1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "cookAmount", + "type": "uint256", + "decoded": "7127392200921960427141" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000080000004000000000000000000000000000000000000000000000000000100008000000000000000000000000000000000000000000000000000000020000100000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000400020000000000000000000000002000000000000000000000000000000400000000000000000040000000000000480000000000000000000002000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000", + "status": true, + "to": "0x7ee680a47953aff929acd71c3ed16e9daa9bd312", + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionIndex": 56, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x7410826b16f8df09c41752b79432374b9bfa0ad1", + "callType": "call", + "gas": "0x36ee0", + "input": "0x2e17de78000000000000000000000000000000000000000000000182606fc4323b042e85", + "to": "0x7ee680a47953aff929acd71c3ed16e9daa9bd312", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x22e2b", "output": "0x" }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0x7ee680a47953aff929acd71c3ed16e9daa9bd312", + "callType": "staticcall", + "gas": "0x2d910", + "input": "0x70a082310000000000000000000000007ee680a47953aff929acd71c3ed16e9daa9bd312", + "to": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x269b", + "output": "0x0000000000000000000000000000000000000000003810eeaa4f93161888ba4c" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "callType": "delegatecall", + "gas": "0x2b1dd", + "input": "0x70a082310000000000000000000000007ee680a47953aff929acd71c3ed16e9daa9bd312", + "to": "0x0c5778a97e5f143fefdaa251b6b7ac3404c21a85", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2f", + "output": "0x0000000000000000000000000000000000000000003810eeaa4f93161888ba4c" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0x7ee680a47953aff929acd71c3ed16e9daa9bd312", + "callType": "call", + "gas": "0x18549", + "input": "0xa9059cbb0000000000000000000000007410826b16f8df09c41752b79432374b9bfa0ad1000000000000000000000000000000000000000000000182606fc4323b042e85", + "to": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x373c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "callType": "delegatecall", + "gas": "0x17c61", + "input": "0xa9059cbb0000000000000000000000007410826b16f8df09c41752b79432374b9bfa0ad1000000000000000000000000000000000000000000000182606fc4323b042e85", + "to": "0x0c5778a97e5f143fefdaa251b6b7ac3404c21a85", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3431", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0x7ee680a47953aff929acd71c3ed16e9daa9bd312", + "callType": "staticcall", + "gas": "0x14879", + "input": "0x70a082310000000000000000000000007ee680a47953aff929acd71c3ed16e9daa9bd312", + "to": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x567", + "output": "0x000000000000000000000000000000000000000000380f6c49dfcee3dd848bc7" + }, + "subtraces": 1, + "traceAddress": [2], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + }, + { + "action": { + "from": "0xff75ced57419bcaebe5f05254983b013b0646ef5", + "callType": "delegatecall", + "gas": "0x14087", + "input": "0x70a082310000000000000000000000007ee680a47953aff929acd71c3ed16e9daa9bd312", + "to": "0x0c5778a97e5f143fefdaa251b6b7ac3404c21a85", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000380f6c49dfcee3dd848bc7" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0xcfa60254ed73f6f65207820558e3faa57476c114381c7054563193d1709a81be", + "transactionPosition": 56, + "type": "call" + } + ], + "decoded": { + "signature": "unstake(uint256)", + "signature_with_arg_names": "unstake(uint256 cookAmount)", + "name": "unstake", + "decoded": [ + { + "internalType": "uint256", + "name": "cookAmount", + "type": "uint256", + "decoded": "7127392200921960427141" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4355A9699F64146857CE0e5aB2121DAF127988d4", + "gas": 140190, + "gasPrice": "34000000000", + "hash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "input": "0xd9627aa400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000483f426df9e537c000000000000000000000000000000000000000000000000000042f7624dfb5d28c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1faa113cbe53436df28ff0aee54275c13b40975000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed00000000000000000000000000000000000000000000005226bdeed560d0d23a", + "nonce": 68, + "to": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "transactionIndex": 57, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x82943d802f3cfeda6d22f3c82d5f577fa425af08ae7324ba6d2c299b83127929", + "s": "0x4f5b8ab9e40722d32450c058bd3543aa0e1ca054f140edfaecffd95e27504e3d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4022863", + "effectiveGasPrice": "34000000000", + "from": "0x4355a9699f64146857ce0e5ab2121daf127988d4", + "gasUsed": "118843", + "logs": [ + { + "address": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004355a9699f64146857ce0e5ab2121daf127988d4", + "0x000000000000000000000000f55c33d94150d93c2cfb833bcca30be388b14964" + ], + "data": "0x0000000000000000000000000000000000000000000000483f426df9e537c000", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 95, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x4355a9699f64146857ce0e5ab2121daf127988d4" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf55c33d94150d93c2cfb833bcca30be388b14964" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1332723900000000000000" + } + ] + } + }, + { + "address": "0xa1faa113cbE53436Df28FF0aEe54275c13B40975", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000004355a9699f64146857ce0e5ab2121daf127988d4", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffff802013e3bd09b87fff", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 96, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x4355a9699f64146857ce0e5ab2121daf127988d4" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xdef1c0ded9bec7f1a1670819833240f027b25eff" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564037098712207913129639935" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f55c33d94150d93c2cfb833bcca30be388b14964", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0x0000000000000000000000000000000000000000000000000434d881aea9df2f", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 97, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xf55C33D94150d93c2cfb833bcCA30bE388b14964", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000003533e8f2b7f6b09ca7254000000000000000000000000000000000000000000000031b1c96f28e5cbe4fd", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 98, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "97531665517632795169411834" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "50866985723994329717064" + } + ] + } + }, + { + "address": "0xf55C33D94150d93c2cfb833bcCA30bE388b14964", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0x0000000000000000000000000000000000000000000000483f426df9e537c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000434d881aea9df2f", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 99, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xdef1c0ded9bec7f1a1670819833240f027b25eff" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "49562500000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "94745463288769099377" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x74de5d4fcbf63e00296fd95d33236b9794016631" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0x0000000000000000000000000000000000000000000000000434d881aea9df2f", + "blockNumber": 12679108, + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 100, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000004000000000000000000000000004000000000000000000000000000002000000080000000000100000200000000000000000002008000008000000200000000000400000000000000000000000008000000000400000000000000040000000000000040000000010000000000000000000000000002000040000000000000000000000080000004000000000020000000008000000004000000004000000880000000000000000000000000000000002000000000000000000000000000000000000001000000002000000000010200000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionIndex": 57, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4355a9699f64146857ce0e5ab2121daf127988d4", + "callType": "call", + "gas": "0x1c882", + "input": "0xd9627aa400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000483f426df9e537c000000000000000000000000000000000000000000000000000042f7624dfb5d28c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1faa113cbe53436df28ff0aee54275c13b40975000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed00000000000000000000000000000000000000000000005226bdeed560d0d23a", + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x18aff", + "output": "0x0000000000000000000000000000000000000000000000000434d881aea9df2f" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "delegatecall", + "gas": "0x1abee", + "input": "0xd9627aa400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000483f426df9e537c000000000000000000000000000000000000000000000000000042f7624dfb5d28c00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1faa113cbe53436df28ff0aee54275c13b40975000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed00000000000000000000000000000000000000000000005226bdeed560d0d23a", + "to": "0xf9b30557afcf76ea82c04015d80057fa2147dfa9", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x17485", + "output": "0x0000000000000000000000000000000000000000000000000434d881aea9df2f" + }, + "subtraces": 5, + "traceAddress": [0], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x19385", + "input": "0x23b872dd0000000000000000000000004355a9699f64146857ce0e5ab2121daf127988d4000000000000000000000000f55c33d94150d93c2cfb833bcca30be388b149640000000000000000000000000000000000000000000000483f426df9e537c000", + "to": "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4ffc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "staticcall", + "gas": "0x13a55", + "input": "0x0902f1ac", + "to": "0xf55c33d94150d93c2cfb833bcca30be388b14964", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9d5", + "output": "0x0000000000000000000000000000000000000000000352f64fe911712492b254000000000000000000000000000000000000000000000031b5fe47aa9475c42c0000000000000000000000000000000000000000000000000000000060d0cb0e" + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x12eb8", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000434d881aea9df2f000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf55c33d94150d93c2cfb833bcca30be388b14964", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbbfe", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 2], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xf55c33d94150d93c2cfb833bcca30be388b14964", + "callType": "call", + "gas": "0xf606", + "input": "0xa9059cbb000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff0000000000000000000000000000000000000000000000000434d881aea9df2f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xf55c33d94150d93c2cfb833bcca30be388b14964", + "callType": "staticcall", + "gas": "0xc226", + "input": "0x70a08231000000000000000000000000f55c33d94150d93c2cfb833bcca30be388b14964", + "to": "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000003533e8f2b7f6b09ca7254" + }, + "subtraces": 0, + "traceAddress": [0, 2, 1], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xf55c33d94150d93c2cfb833bcca30be388b14964", + "callType": "staticcall", + "gas": "0xbe71", + "input": "0x70a08231000000000000000000000000f55c33d94150d93c2cfb833bcca30be388b14964", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000031b1c96f28e5cbe4fd" + }, + "subtraces": 0, + "traceAddress": [0, 2, 2], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x74c4", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000434d881aea9df2f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x23eb", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 3], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "value": "0x434d881aea9df2f" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x37", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 3, 0], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x3746", + "input": "0x", + "to": "0x4355a9699f64146857ce0e5ab2121daf127988d4", + "value": "0x434d881aea9df2f" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 4], + "transactionHash": "0x5ce81e400bfaf784e7a3b88dc349c1ba293b372e3f24a075b7f4e64d14f6eb33", + "transactionPosition": 57, + "type": "call" + } + ], + "decoded": { + "signature": "sellToUniswap(address[],uint256,uint256,bool)", + "signature_with_arg_names": "sellToUniswap(address[] arg1,uint256 arg2,uint256 arg3,bool arg4)", + "name": "sellToUniswap", + "decoded": [ + { + "internalType": "address[]", + "name": "arg1", + "type": "address[]", + "decoded": [ + "0xa1faa113cbe53436df28ff0aee54275c13b40975", + "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" + ] + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1332723900000000000000" + }, + { + "internalType": "uint256", + "name": "arg3", + "type": "uint256", + "decoded": "301589600801247884" + }, + { + "internalType": "bool", + "name": "arg4", + "type": "bool", + "decoded": true + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x51De43A034f0a7Dbf94a08d9F28401cE111475A7", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xd612f6ada932e2e0f4297abea036b2b7e225f168c9b2f175f0f470978d9e5c24", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 58, + "value": "25644014000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x471a15e27a0cbf6a9366cc63c65138558ae56e55058b1830301183efde6408ee", + "s": "0x3d75c3db02e440a92cbc3861a647f97b56794bcaf1561244a0481ccf6749765a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4043863", + "effectiveGasPrice": "34000000000", + "from": "0x51de43a034f0a7dbf94a08d9f28401ce111475a7", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xd612f6ada932e2e0f4297abea036b2b7e225f168c9b2f175f0f470978d9e5c24", + "transactionIndex": 58, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x51de43a034f0a7dbf94a08d9f28401ce111475a7", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x5b1b184915cc00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd612f6ada932e2e0f4297abea036b2b7e225f168c9b2f175f0f470978d9e5c24", + "transactionPosition": 58, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd725233E2A3773da52Ad60fBC4eAb95Ac28D1441", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x2b6139a30bdecefa59073aa0e7b3b8cc994ed909963bc822f6b053c7ddba4231", + "input": "0x", + "nonce": 9, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 59, + "value": "17948313000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xdf2310c1d3835777ab054bc9d52d5b14cf8b571c988d3722ff7d1825b15a7b94", + "s": "0x2c3660558255a7b0defae8d27fa0f2e14d8a77c78f52b9c862fe7516ab4a2bc4", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4064863", + "effectiveGasPrice": "34000000000", + "from": "0xd725233e2a3773da52ad60fbc4eab95ac28d1441", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x2b6139a30bdecefa59073aa0e7b3b8cc994ed909963bc822f6b053c7ddba4231", + "transactionIndex": 59, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd725233e2a3773da52ad60fbc4eab95ac28d1441", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3fc3e544aeba00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2b6139a30bdecefa59073aa0e7b3b8cc994ed909963bc822f6b053c7ddba4231", + "transactionPosition": 59, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xE76064237ef5E9C0aaEb35f4E5487456010977cC", + "gas": 173155, + "gasPrice": "34000000000", + "hash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "input": "0x7ff36ab50000000000000000000000000000000000000000000004c0dc73f65a9c6109710000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "nonce": 780, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 60, + "value": "400000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2d8e8a17a894ae06ce31b138b62bf07df8499fff0b6269888e43dc91f70f790f", + "s": "0x572e54e16b7d32b61fc069787924ddf961e74f5faa74d42b0dac166739a441c9", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4183678", + "effectiveGasPrice": "34000000000", + "from": "0xe76064237ef5e9c0aaeb35f4e5487456010977cc", + "gasUsed": "118815", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000058d15e176280000", + "blockNumber": 12679108, + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 101, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000078b9524101fb67286338261ddd85e20665e571c1" + ], + "data": "0x000000000000000000000000000000000000000000000000058d15e176280000", + "blockNumber": 12679108, + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 102, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000078b9524101fb67286338261ddd85e20665e571c1", + "0x000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc" + ], + "data": "0x0000000000000000000000000000000000000000000004c6f20905aa6c855cb1", + "blockNumber": 12679108, + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 103, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x78b9524101fb67286338261ddd85e20665e571c1" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xe76064237ef5e9c0aaeb35f4e5487456010977cc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "22559361735334564289713" + } + ] + } + }, + { + "address": "0x78b9524101fb67286338261ddD85E20665e571C1", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000002550f8e070b1c2e4787ee400000000000000000000000000000000000000000000002b40fb2c2c99d119a4", + "blockNumber": 12679108, + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 104, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x78b9524101fb67286338261ddD85E20665e571C1", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000004c6f20905aa6c855cb10000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 105, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000000000000000000000000000000002000000080000000040000000000000200000000008000000000108000000200020000000000000000000008000000000000000000000000000000000000000800000000000000000000010000000000000000000000000004000000000000000000001000000080000004000000000000000000000000000000008000000000000000000000000000000000000000000000002000000000000000000000000800000000004001000000000000020000000204000000000000000000002000000000000000000400000200000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionIndex": 60, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xe76064237ef5e9c0aaeb35f4e5487456010977cc", + "callType": "call", + "gas": "0x24b0b", + "input": "0x7ff36ab50000000000000000000000000000000000000000000004c0dc73f65a9c6109710000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x58d15e176280000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cf73", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000004c6f20905aa6c855cb1" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x22f66", + "input": "0x0902f1ac", + "to": "0x78b9524101fb67286338261ddd85e20665e571c1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000002555bfd279b76d50fddb9500000000000000000000000000000000000000000000002b3b6e164b23a919a40000000000000000000000000000000000000000000000000000000060d0cd52" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1fca6", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x58d15e176280000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x19bbb", + "input": "0xa9059cbb00000000000000000000000078b9524101fb67286338261ddd85e20665e571c1000000000000000000000000000000000000000000000000058d15e176280000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x174bc", + "input": "0x022c0d9f0000000000000000000000000000000000000000000004c6f20905aa6c855cb10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x78b9524101fb67286338261ddd85e20665e571c1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfd46", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x78b9524101fb67286338261ddd85e20665e571c1", + "callType": "call", + "gas": "0x13b7c", + "input": "0xa9059cbb000000000000000000000000e76064237ef5e9c0aaeb35f4e5487456010977cc0000000000000000000000000000000000000000000004c6f20905aa6c855cb1", + "to": "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7527", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x78b9524101fb67286338261ddd85e20665e571c1", + "callType": "staticcall", + "gas": "0xc5bc", + "input": "0x70a0823100000000000000000000000078b9524101fb67286338261ddd85e20665e571c1", + "to": "0x9ed8e7c9604790f7ec589f99b94361d8aab64e5e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000002550f8e070b1c2e4787ee4" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + }, + { + "action": { + "from": "0x78b9524101fb67286338261ddd85e20665e571c1", + "callType": "staticcall", + "gas": "0xc244", + "input": "0x70a0823100000000000000000000000078b9524101fb67286338261ddd85e20665e571c1", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000002b40fb2c2c99d119a4" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x64163be8b9ad1ebec666167117f0cdf5fcfc2b6336d0d76238c26d72e6707ed1", + "transactionPosition": 60, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x578b7bDA4225674A498a289d5D508cFC1Dcbe848", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x25b4a42e9167a83f4e0b3487aa130309d71b23770f91742c3bc46687096cde70", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 61, + "value": "15927524000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x68efc2ef1f1e52bd37d57074b4ad546baccb1354b6c168086b43362f21e84708", + "s": "0x68faddce44538c162488df5d88d7734b18a07d3dddb982d9e8028ed106710f15", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4204678", + "effectiveGasPrice": "34000000000", + "from": "0x578b7bda4225674a498a289d5d508cfc1dcbe848", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x25b4a42e9167a83f4e0b3487aa130309d71b23770f91742c3bc46687096cde70", + "transactionIndex": 61, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x578b7bda4225674a498a289d5d508cfc1dcbe848", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3895ffaa2be800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x25b4a42e9167a83f4e0b3487aa130309d71b23770f91742c3bc46687096cde70", + "transactionPosition": 61, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x1CffbebA15fC1e17bEcdc3B59ff88343dc9931a4", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x78c6c007ee5c7a8f8ac7e29040dad072a2af9e3474ec06f7a77f84e6f8520d90", + "input": "0x", + "nonce": 25, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 62, + "value": "17761071000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x5aaf2c74180762af004b68bea02e90345db60f30cd2d9e54a75951747f8561d9", + "s": "0xc088171f338431c74c8a9fde1a681cf2c4d418b92a0bcfec693caffbb140d65", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4225678", + "effectiveGasPrice": "34000000000", + "from": "0x1cffbeba15fc1e17becdc3b59ff88343dc9931a4", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x78c6c007ee5c7a8f8ac7e29040dad072a2af9e3474ec06f7a77f84e6f8520d90", + "transactionIndex": 62, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x1cffbeba15fc1e17becdc3b59ff88343dc9931a4", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3f199997c91600" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x78c6c007ee5c7a8f8ac7e29040dad072a2af9e3474ec06f7a77f84e6f8520d90", + "transactionPosition": 62, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xB4Edc17262157CEa2407C1A631b1Bb4763F09B20", + "gas": 65140, + "gasPrice": "34000000000", + "hash": "0x73bbe703dd15dfbd7131d573b137bb5b74f4f2480d493fbf2dc9992b4119d8a7", + "input": "0xa9059cbb000000000000000000000000841ac934d69abb17afc327809dbf175e1a9e9a3d00000000000000000000000000000000000000000000004a1ae712894b860000", + "nonce": 17, + "to": "0x408e41876cCCDC0F92210600ef50372656052a38", + "transactionIndex": 63, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2d67acd6148fc6ffb01f58eacc37769c8bfdbdf60bdc28c2b66d5caaffd0051", + "s": "0x755da58b42d040a3cfaa4ebca9e5f77f46f99284411f333482edd414a8db53e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4264961", + "effectiveGasPrice": "34000000000", + "from": "0xb4edc17262157cea2407c1a631b1bb4763f09b20", + "gasUsed": "39283", + "logs": [ + { + "address": "0x408e41876cCCDC0F92210600ef50372656052a38", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b4edc17262157cea2407c1a631b1bb4763f09b20", + "0x000000000000000000000000841ac934d69abb17afc327809dbf175e1a9e9a3d" + ], + "data": "0x00000000000000000000000000000000000000000000004a1ae712894b860000", + "blockNumber": 12679108, + "transactionHash": "0x73bbe703dd15dfbd7131d573b137bb5b74f4f2480d493fbf2dc9992b4119d8a7", + "transactionIndex": 63, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 106, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xb4edc17262157cea2407c1a631b1bb4763f09b20" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x841ac934d69abb17afc327809dbf175e1a9e9a3d" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "1366997600000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040200000000000000000000000000000000000000020000000008000000000000000000000000000000000000000000000000000002000000000000000000000000000008000000000010000000000000000080000000000000000000000000000000000000000000000000000000080000000000000000000000010000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000", + "status": true, + "to": "0x408e41876cccdc0f92210600ef50372656052a38", + "transactionHash": "0x73bbe703dd15dfbd7131d573b137bb5b74f4f2480d493fbf2dc9992b4119d8a7", + "transactionIndex": 63, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb4edc17262157cea2407c1a631b1bb4763f09b20", + "callType": "call", + "gas": "0xa9e8", + "input": "0xa9059cbb000000000000000000000000841ac934d69abb17afc327809dbf175e1a9e9a3d00000000000000000000000000000000000000000000004a1ae712894b860000", + "to": "0x408e41876cccdc0f92210600ef50372656052a38", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7f7f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x73bbe703dd15dfbd7131d573b137bb5b74f4f2480d493fbf2dc9992b4119d8a7", + "transactionPosition": 63, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x841ac934d69abb17afc327809dbf175e1a9e9a3d" + }, + { + "name": "_value", + "type": "uint256", + "decoded": "1366997600000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x939F405ae3E32ec1e0BD626386E8C955C26504aA", + "gas": 99226, + "gasPrice": "34000000000", + "hash": "0xfc375cdbf91079e5105c25ee05b78c74efc765f70e6a1ed13cb6165ce1431780", + "input": "0xa9059cbb000000000000000000000000b26b0d037d7fb51f8658323c3903e711f47b6da500000000000000000000000000000000000000000000000000000000ee6b2800", + "nonce": 181, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 64, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x706aaed9851e7f5269eed60d50e062528392d5a76da4f3d61ebb7a509c8aebcc", + "s": "0x416adc0afb5590d24a20444abc75a6e333c252e8370108f4b4872be27411dee9", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4330574", + "effectiveGasPrice": "34000000000", + "from": "0x939f405ae3e32ec1e0bd626386e8c955c26504aa", + "gasUsed": "65613", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000939f405ae3e32ec1e0bd626386e8c955c26504aa", + "0x000000000000000000000000b26b0d037d7fb51f8658323c3903e711f47b6da5" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000ee6b2800", + "blockNumber": 12679108, + "transactionHash": "0xfc375cdbf91079e5105c25ee05b78c74efc765f70e6a1ed13cb6165ce1431780", + "transactionIndex": 64, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 107, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000200000000000000000000080000000800000000000000000000000000000000000000000000000000000000000000008000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000040000000000000000000100010000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0xfc375cdbf91079e5105c25ee05b78c74efc765f70e6a1ed13cb6165ce1431780", + "transactionIndex": 64, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x939f405ae3e32ec1e0bd626386e8c955c26504aa", + "callType": "call", + "gas": "0x12f3e", + "input": "0xa9059cbb000000000000000000000000b26b0d037d7fb51f8658323c3903e711f47b6da500000000000000000000000000000000000000000000000000000000ee6b2800", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xfc375cdbf91079e5105c25ee05b78c74efc765f70e6a1ed13cb6165ce1431780", + "transactionPosition": 64, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x10ea6", + "input": "0xa9059cbb000000000000000000000000b26b0d037d7fb51f8658323c3903e711f47b6da500000000000000000000000000000000000000000000000000000000ee6b2800", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xfc375cdbf91079e5105c25ee05b78c74efc765f70e6a1ed13cb6165ce1431780", + "transactionPosition": 64, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x340d693ED55d7bA167D184ea76Ea2Fd092a35BDc", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x18079e3f93c6238c92fb51e997c44406b8e3dd406f0f334ebd1d64f45c092a83", + "input": "0x", + "nonce": 635601, + "to": "0x5c7ECAA0f0A68449B64ed1131B6F0A8bbF4d1b76", + "transactionIndex": 65, + "value": "11364472576136855", + "type": 0, + "v": "0x1b", + "r": "0xd42b0fc25c47952e5e488bde872021019f682f94708784613640a9568235d153", + "s": "0x226977d307709f3e4c08dee289099f572289796891900825d4efec9cbd9d3ca", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4351574", + "effectiveGasPrice": "34000000000", + "from": "0x340d693ed55d7ba167d184ea76ea2fd092a35bdc", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5c7ecaa0f0a68449b64ed1131b6f0a8bbf4d1b76", + "transactionHash": "0x18079e3f93c6238c92fb51e997c44406b8e3dd406f0f334ebd1d64f45c092a83", + "transactionIndex": 65, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x340d693ed55d7ba167d184ea76ea2fd092a35bdc", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x5c7ecaa0f0a68449b64ed1131b6f0a8bbf4d1b76", + "value": "0x285fed76f5d697" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x18079e3f93c6238c92fb51e997c44406b8e3dd406f0f334ebd1d64f45c092a83", + "transactionPosition": 65, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x587f17C713BB743B5cB8fF014351c1d24D413873", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x22e6470d92df79edb40cb7ded68d2823c0d3afa2429f62043fd376115f35956d", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 66, + "value": "16466160000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3a72b884557046a19d6a54930c046537de1e6ccbdab47fd7cabb848615f5bc34", + "s": "0x65ce3974c1f4779281ae3f72f9429c5f92771773d282066bcd17a4c0ec7fb8aa", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4372574", + "effectiveGasPrice": "34000000000", + "from": "0x587f17c713bb743b5cb8ff014351c1d24d413873", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x22e6470d92df79edb40cb7ded68d2823c0d3afa2429f62043fd376115f35956d", + "transactionIndex": 66, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x587f17c713bb743b5cb8ff014351c1d24d413873", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3a7fe2a19d6000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x22e6470d92df79edb40cb7ded68d2823c0d3afa2429f62043fd376115f35956d", + "transactionPosition": 66, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x23B15063FA1Fa90E9F62b994a3cDB5e3201f4984", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x4f61d41c62d054c1db21aa3eb7a09006cff35b5ef9ff73f4c53e271aad8e23d4", + "input": "0x", + "nonce": 10, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 67, + "value": "15708465000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfd73031bb17a30a996e5fe1c679d8324dd8c90e10fcb9f3d7b9c85b4a0a1b9ea", + "s": "0x7ad2a3f80e9a59d29fc9ebff17510808d8aef81464d803dd9b4fc80eed767e7b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4393574", + "effectiveGasPrice": "34000000000", + "from": "0x23b15063fa1fa90e9f62b994a3cdb5e3201f4984", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x4f61d41c62d054c1db21aa3eb7a09006cff35b5ef9ff73f4c53e271aad8e23d4", + "transactionIndex": 67, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x23b15063fa1fa90e9f62b994a3cdb5e3201f4984", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x37cec4044aaa00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x4f61d41c62d054c1db21aa3eb7a09006cff35b5ef9ff73f4c53e271aad8e23d4", + "transactionPosition": 67, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x7F524Ed334318e57b79743b3b9e1BC0460b8AD88", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xff6e5c7027be116a6a652dac3ddc174e4b8f3860219d367cce00a6a928f7f7ed", + "input": "0x", + "nonce": 21, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 68, + "value": "18228702000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x473036e59f7af786d0d0d3d0c9a3ec8b34c5ec8fbc99e4997269b658c23b2c73", + "s": "0x1b35f4e52d8547cd1c80f57e6a215e352cd2a0145853a20f144ba8d5637d5d5b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4414574", + "effectiveGasPrice": "34000000000", + "from": "0x7f524ed334318e57b79743b3b9e1bc0460b8ad88", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xff6e5c7027be116a6a652dac3ddc174e4b8f3860219d367cce00a6a928f7f7ed", + "transactionIndex": 68, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x7f524ed334318e57b79743b3b9e1bc0460b8ad88", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x40c2e86b6d2c00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xff6e5c7027be116a6a652dac3ddc174e4b8f3860219d367cce00a6a928f7f7ed", + "transactionPosition": 68, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x589B3621dD9A15Cb1511Cf57B9843Bbf8881B486", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xe528d1fe6f4c867af8fa37a6376e5d52a9fe45864adc3ec05ca19a3beb1103d7", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 69, + "value": "16517299000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xc14114a4b35ba5689df6d4085b7f1462abb0aaa929c4df8629715e93667184ed", + "s": "0x41d64872fed6357e7efd6cffcb6718c9ef4dc674c6ea31c0985e96060ea6daa7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4435574", + "effectiveGasPrice": "34000000000", + "from": "0x589b3621dd9a15cb1511cf57b9843bbf8881b486", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xe528d1fe6f4c867af8fa37a6376e5d52a9fe45864adc3ec05ca19a3beb1103d7", + "transactionIndex": 69, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x589b3621dd9a15cb1511cf57b9843bbf8881b486", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3aae655b8b3e00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe528d1fe6f4c867af8fa37a6376e5d52a9fe45864adc3ec05ca19a3beb1103d7", + "transactionPosition": 69, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "input": "0x8803dbee000000000000000000000000000000000000000000000003a1cfd104cf2c0000000000000000000000000000000000000000000000000000027ec72e4eb3492700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a20000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 34, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 70, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xafcf2caa9f1d8e68908af90390c6347cbeb7ea251211463f469af842fbbd96f6", + "s": "0x174e9e20cd395ff2060280ac1739502be5e1afa1fbae03c4c923769c9eceaa51", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4545683", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "110109", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x00000000000000000000000000000000000000000000000001b41b7951e627d2", + "blockNumber": 12679108, + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionIndex": 70, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 108, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a2" + ], + "data": "0x000000000000000000000000000000000000000000000003a1cfd104cf2c0000", + "blockNumber": 12679108, + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionIndex": 70, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 109, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000651723c146f906414000000000000000000000000000000000000000000000d7f3e70759a57a80000", + "blockNumber": 12679108, + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionIndex": 70, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 110, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a2" + ], + "data": "0x00000000000000000000000000000000000000000000000001b41b7951e627d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a1cfd104cf2c0000", + "blockNumber": 12679108, + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionIndex": 70, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 111, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000080000000000000000800000000002001000080000000000000000000000000000000000000000000008000000200000000010000000000000000000000000000000000040000000000000000000000000000000000000000010008000000000000000000000004008000000000000200000000000080000004000000000000000000000000000008000000000002000000000000000000000000000000000000002002000000000000000000000000000080000001000000000000020000000200000000000000000000000000040000000000000000000000000014000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionIndex": 70, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee000000000000000000000000000000000000000000000003a1cfd104cf2c0000000000000000000000000000000000000000000000000000027ec72e4eb3492700000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a20000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15ef9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000001b41b7951e627d2000000000000000000000000000000000000000000000003a1cfd104cf2c0000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000000064fbe209b1daa3c42000000000000000000000000000000000000000000000d82e040469f26d400000000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db00000000000000000000000000000000000000000000000001b41b7951e627d2", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a1cfd104cf2c0000000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe8ab", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb000000000000000000000000d628f7c481c7dd87f674870bec5d7a311fb1d9a2000000000000000000000000000000000000000000000003a1cfd104cf2c0000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000651723c146f906414" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000d7f3e70759a57a80000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x6ebb15ffc40a87599fd2ecf3a3a50fcf8726f2167765a849ed24423d0d7f31df", + "transactionPosition": 70, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x820E060349Bc877A526BaD4BAe4978B1653711FF", + "gas": 97000, + "gasPrice": "34000000000", + "hash": "0xcd28e90761130f32f7e50664de3c6c3632f1cb36f67ca201cd398ee9708ca8c4", + "input": "0xa9059cbb0000000000000000000000005a6911f5cf77e57a2639a5c8ce766d697e8c407f0000000000000000000000000000000000000000000000000000000007f0edb0", + "nonce": 73475, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 71, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x9d4f3395d869ff9c72f8df3c9cf312f4cb1e3dba057689b1542f4a391fb2f62d", + "s": "0x478cc80d19009688059d5f6f3f917247bf80313aff3dfcc869968b2c49563ffa", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4591792", + "effectiveGasPrice": "34000000000", + "from": "0x820e060349bc877a526bad4bae4978b1653711ff", + "gasUsed": "46109", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000820e060349bc877a526bad4bae4978b1653711ff", + "0x0000000000000000000000005a6911f5cf77e57a2639a5c8ce766d697e8c407f" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000007f0edb0", + "blockNumber": 12679108, + "transactionHash": "0xcd28e90761130f32f7e50664de3c6c3632f1cb36f67ca201cd398ee9708ca8c4", + "transactionIndex": 71, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 112, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000010000000000200000000000000000000000000000000000000000000008000000000000000000000000010000000000000000000000000000000000000000000000000000000000040000000010000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000080000000004000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0xcd28e90761130f32f7e50664de3c6c3632f1cb36f67ca201cd398ee9708ca8c4", + "transactionIndex": 71, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x820e060349bc877a526bad4bae4978b1653711ff", + "callType": "call", + "gas": "0x12680", + "input": "0xa9059cbb0000000000000000000000005a6911f5cf77e57a2639a5c8ce766d697e8c407f0000000000000000000000000000000000000000000000000000000007f0edb0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcd28e90761130f32f7e50664de3c6c3632f1cb36f67ca201cd398ee9708ca8c4", + "transactionPosition": 71, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0d072BE4Bb74155DEE80790c83cc62682c31d7a7", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x491132a1f37fff8a97b922f60bb0d9fa41efe0f43721186cef31247b2c75982f", + "input": "0x", + "nonce": 9, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 72, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7c02bde15ea6eaad94d28dc06ad88a257df4a3c47bbe8be8a704c5710cc47a13", + "s": "0x23e12fdb4a0503781b8c91bd2b4e37a2354a1b11bd4a769a928ae9ae62242f2a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4612792", + "effectiveGasPrice": "34000000000", + "from": "0x0d072be4bb74155dee80790c83cc62682c31d7a7", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x491132a1f37fff8a97b922f60bb0d9fa41efe0f43721186cef31247b2c75982f", + "transactionIndex": 72, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0d072be4bb74155dee80790c83cc62682c31d7a7", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x491132a1f37fff8a97b922f60bb0d9fa41efe0f43721186cef31247b2c75982f", + "transactionPosition": 72, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x58C5AC28A37448bE50a5F1885E3aAC74aE64e462", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x5b0fd6d9dfec01df4be780b9ff143fc089bbde4e61627eedef6870228e8f5645", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 73, + "value": "17481678000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x5f8bbf661e09578fcad115a135bc7b73fa5de2c7fce55a08691bb01aae21d443", + "s": "0x7dfc8a0c653b035d528e38f1c6bff406f5f072430817d37568002fe5a57e9656", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4633792", + "effectiveGasPrice": "34000000000", + "from": "0x58c5ac28a37448be50a5f1885e3aac74ae64e462", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x5b0fd6d9dfec01df4be780b9ff143fc089bbde4e61627eedef6870228e8f5645", + "transactionIndex": 73, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x58c5ac28a37448be50a5f1885e3aac74ae64e462", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3e1b7e57448c00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5b0fd6d9dfec01df4be780b9ff143fc089bbde4e61627eedef6870228e8f5645", + "transactionPosition": 73, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x3B72Aa626cc42587314cc116Cc74F7467E65A2E1", + "gas": 43962, + "gasPrice": "34000000000", + "hash": "0x3db8179ff598c613df18d3585bfee6e7dc2d0948de9419a72cbad5e8a6af4994", + "input": "0x095ea7b30000000000000000000000004f32ab778e85c4ad0cead54f8f82f5ee74d4690400000000000000000000000000000000000000000000003635c9adc5dea00000", + "nonce": 3, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 74, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x1028dd482455d3448eeebb3369d71cc36459106f603455c22f98c97408ed7ba1", + "s": "0x3e3856727933b79792690b6754b54e6fb9f5d47da17ccf17e6b62e25b24fe5fe", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4663100", + "effectiveGasPrice": "34000000000", + "from": "0x3b72aa626cc42587314cc116cc74f7467e65a2e1", + "gasUsed": "29308", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000003b72aa626cc42587314cc116cc74f7467e65a2e1", + "0x0000000000000000000000004f32ab778e85c4ad0cead54f8f82f5ee74d46904" + ], + "data": "0x00000000000000000000000000000000000000000000003635c9adc5dea00000", + "blockNumber": 12679108, + "transactionHash": "0x3db8179ff598c613df18d3585bfee6e7dc2d0948de9419a72cbad5e8a6af4994", + "transactionIndex": 74, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 113, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0x475295cbf3f2e18d6276d5301b483c3a592c65dd" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "1980000000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000000000000000000000000000000000000000000000200000000000000000000000200000000000000000000000000000000000200000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000010000000000000000000000008000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0x3db8179ff598c613df18d3585bfee6e7dc2d0948de9419a72cbad5e8a6af4994", + "transactionIndex": 74, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x3b72aa626cc42587314cc116cc74f7467e65a2e1", + "callType": "call", + "gas": "0x572e", + "input": "0x095ea7b30000000000000000000000004f32ab778e85c4ad0cead54f8f82f5ee74d4690400000000000000000000000000000000000000000000003635c9adc5dea00000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1df0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3db8179ff598c613df18d3585bfee6e7dc2d0948de9419a72cbad5e8a6af4994", + "transactionPosition": 74, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "name": "spender", + "type": "address", + "decoded": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "1000000000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xeC968fEDBb725775ac2847d18FdE8aaAD20C6FC6", + "gas": 79410, + "gasPrice": "34000000000", + "hash": "0x3e08a418a4f9b4f4ab90676c6f43a7395d0704515aab4c594a70188a5a2eecb5", + "input": "0xa9059cbb0000000000000000000000000b2317f0c3314f92fdbdaf8f4af5c014f971d7b6000000000000000000000000000000000000000000000000000000087325dd5d", + "nonce": 19, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 75, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xadca102123f74e2d03090e7432dd07cbfea767ea92773c686a5e8b118f125d6d", + "s": "0x7dbf088bdad804a254bc8dca24367a002e2ee30e5ae9893cf6656c758c007f07", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4713737", + "effectiveGasPrice": "34000000000", + "from": "0xec968fedbb725775ac2847d18fde8aaad20c6fc6", + "gasUsed": "50637", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ec968fedbb725775ac2847d18fde8aaad20c6fc6", + "0x0000000000000000000000000b2317f0c3314f92fdbdaf8f4af5c014f971d7b6" + ], + "data": "0x000000000000000000000000000000000000000000000000000000087325dd5d", + "blockNumber": 12679108, + "transactionHash": "0x3e08a418a4f9b4f4ab90676c6f43a7395d0704515aab4c594a70188a5a2eecb5", + "transactionIndex": 75, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 114, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000008000008000000000001000000000008000000000000000000000000000000000000000000000000000400000000000000000010000000000000000000000000000000000000000000000000010000000000000000000000000000000000200000000000100000000000000000000000000000000000000000000002000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0x3e08a418a4f9b4f4ab90676c6f43a7395d0704515aab4c594a70188a5a2eecb5", + "transactionIndex": 75, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xec968fedbb725775ac2847d18fde8aaad20c6fc6", + "callType": "call", + "gas": "0xe1be", + "input": "0xa9059cbb0000000000000000000000000b2317f0c3314f92fdbdaf8f4af5c014f971d7b6000000000000000000000000000000000000000000000000000000087325dd5d", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x3e08a418a4f9b4f4ab90676c6f43a7395d0704515aab4c594a70188a5a2eecb5", + "transactionPosition": 75, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xc25c", + "input": "0xa9059cbb0000000000000000000000000b2317f0c3314f92fdbdaf8f4af5c014f971d7b6000000000000000000000000000000000000000000000000000000087325dd5d", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x3e08a418a4f9b4f4ab90676c6f43a7395d0704515aab4c594a70188a5a2eecb5", + "transactionPosition": 75, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x591f51e5b83694a8c7E2D1eAcB2Fe893a859bA7C", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x945b33b483a0b06f1f7e8f101b175bd0c07f54494c1411b559f7e6e34a6371ce", + "input": "0x", + "nonce": 8, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 76, + "value": "13574162000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x5d173434cf7df32339a315c97056857a3982302db3ad47e1abbd9ca03b415a19", + "s": "0x2bd10591c1cfcf01dcec81a6efe67df3f3c8424aec1006974b4e9b0d2d262072", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4734737", + "effectiveGasPrice": "34000000000", + "from": "0x591f51e5b83694a8c7e2d1eacb2fe893a859ba7c", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x945b33b483a0b06f1f7e8f101b175bd0c07f54494c1411b559f7e6e34a6371ce", + "transactionIndex": 76, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x591f51e5b83694a8c7e2d1eacb2fe893a859ba7c", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3039a0e0223400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x945b33b483a0b06f1f7e8f101b175bd0c07f54494c1411b559f7e6e34a6371ce", + "transactionPosition": 76, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xD98A2AB075B89B4329d2909EF1B927Fc28ca9B6A", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xce404f37fed068fd5881cbfd91a60688f0097e12007b7b06ed9c5b41c2724ab0", + "input": "0x", + "nonce": 23, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 77, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x6b0558ea52624eb1646956f1be58db346e3701d5c7ff8145a96f8e6f5c5dd22e", + "s": "0x2d64d85963d293c39b0178ff3ba5f303e20907f826609cf7f50d3c7c78be52e2", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4755737", + "effectiveGasPrice": "34000000000", + "from": "0xd98a2ab075b89b4329d2909ef1b927fc28ca9b6a", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xce404f37fed068fd5881cbfd91a60688f0097e12007b7b06ed9c5b41c2724ab0", + "transactionIndex": 77, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd98a2ab075b89b4329d2909ef1b927fc28ca9b6a", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xce404f37fed068fd5881cbfd91a60688f0097e12007b7b06ed9c5b41c2724ab0", + "transactionPosition": 77, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xB8A42C85E07a27e6C7d10828fF2BCc3Ae2d3eC1D", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x20a1e377c221f131394275fa56895b5fa1b2cdcbb36bd1dc6def5a1e4ff7285c", + "input": "0x", + "nonce": 0, + "to": "0xc072c61805a2bee734e40A2612f1071043519A81", + "transactionIndex": 78, + "value": "2580000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x99c4da350d72460836747a6e0a0802096c186f526ef55045e88ed0742508f745", + "s": "0x203155b067b02a9ce32a8d8de5733f797093f2325e252390e103639f1ad28545", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4776737", + "effectiveGasPrice": "34000000000", + "from": "0xb8a42c85e07a27e6c7d10828ff2bcc3ae2d3ec1d", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xc072c61805a2bee734e40a2612f1071043519a81", + "transactionHash": "0x20a1e377c221f131394275fa56895b5fa1b2cdcbb36bd1dc6def5a1e4ff7285c", + "transactionIndex": 78, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb8a42c85e07a27e6c7d10828ff2bcc3ae2d3ec1d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xc072c61805a2bee734e40a2612f1071043519a81", + "value": "0x23ce0054a0820000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x20a1e377c221f131394275fa56895b5fa1b2cdcbb36bd1dc6def5a1e4ff7285c", + "transactionPosition": 78, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "input": "0x8803dbee00000000000000000000000000000000000000000000001fee045b5821140000000000000000000000000000000000000000000000000000161d7f91e1f2458e00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e10000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 35, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 79, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x633e8cec010d49aa5a8d042d21ff3e4ae8da23a4c8bf69cda551666c346ad56c", + "s": "0x70f6bcfa7967cd1f0c7d41824a3f290acdd04fd8912438d3666bf861125203cc", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4886846", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "110109", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x0000000000000000000000000000000000000000000000000f21ad7958bf817f", + "blockNumber": 12679108, + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionIndex": 79, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 115, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x0000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e1" + ], + "data": "0x00000000000000000000000000000000000000000000001fee045b5821140000", + "blockNumber": 12679108, + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionIndex": 79, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 116, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000000066093e98dc84fe593000000000000000000000000000000000000000000000d5f506c1a4236940000", + "blockNumber": 12679108, + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionIndex": 79, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 117, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e1" + ], + "data": "0x0000000000000000000000000000000000000000000000000f21ad7958bf817f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001fee045b5821140000", + "blockNumber": 12679108, + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionIndex": 79, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 118, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000008000080000000000000000000000000010000000000000000080000000000000000800000000002000000080000000000000000000000000000000000000000000008000000200000000010000000000000000000000000000000000040000000000000000000000000000000000000000010000000000000000001000000004008000000000000200000000000080000014000000000000000000000000000008000000000002000000000000000000000000000000000000002002000000000000000000000000000080000001000000000000020000000200000000000000000000000000040000000000000000000000000010000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionIndex": 79, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee00000000000000000000000000000000000000000000001fee045b5821140000000000000000000000000000000000000000000000000000161d7f91e1f2458e00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e10000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15ef9", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000f21ad7958bf817f00000000000000000000000000000000000000000000001fee045b5821140000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000651723c146f906414000000000000000000000000000000000000000000000d7f3e70759a57a800000000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db0000000000000000000000000000000000000000000000000f21ad7958bf817f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001fee045b58211400000000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe8ab", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb0000000000000000000000003ae67a9cfaddac5d8434df5c96c3e42e163f46e100000000000000000000000000000000000000000000001fee045b5821140000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000066093e98dc84fe593" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000d5f506c1a4236940000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0xf9bf11f82d8fa9f2486dd71f35848df2b5457bb77f5f0ab2752d3a4a7ab6c92e", + "transactionPosition": 79, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x59785E1246386c43d18F29C963D4Ee2F4C21b5D7", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x79cf67095d661e0f401a6aedabb1c588f2f6687e51d684d9ec8068adf377ce5b", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 80, + "value": "25775602000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x819193e022a21d4bb6db7ba3c76e62782e7a9cb6399c72a46b349194e06efcd5", + "s": "0x5a5f8507bbc861128b9ef6dc1d48379bff5117256866271add161dc7bb482368", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4907846", + "effectiveGasPrice": "34000000000", + "from": "0x59785e1246386c43d18f29c963d4ee2f4c21b5d7", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x79cf67095d661e0f401a6aedabb1c588f2f6687e51d684d9ec8068adf377ce5b", + "transactionIndex": 80, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x59785e1246386c43d18f29c963d4ee2f4c21b5d7", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x5b92c60114f400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x79cf67095d661e0f401a6aedabb1c588f2f6687e51d684d9ec8068adf377ce5b", + "transactionPosition": 80, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x65466A1aDFefd1BAe087AB530510e83B8A2681B5", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x665031851364a26e06af71da75bf206ee75396b377c2cad957178586579f1feb", + "input": "0x", + "nonce": 6, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 81, + "value": "17917204000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x52073cab196e10bea518094615cf796420e0a25963529ded652e55094f1b0927", + "s": "0x3238647028f27fc7b962a46eb13b73d2cacc363bd349b322f39775edae71534e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4928846", + "effectiveGasPrice": "34000000000", + "from": "0x65466a1adfefd1bae087ab530510e83b8a2681b5", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x665031851364a26e06af71da75bf206ee75396b377c2cad957178586579f1feb", + "transactionIndex": 81, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x65466a1adfefd1bae087ab530510e83b8a2681b5", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3fa79a23c9c800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x665031851364a26e06af71da75bf206ee75396b377c2cad957178586579f1feb", + "transactionPosition": 81, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6A533721d0Eda3F7ae63F9A7Ba3C3b6Cb3FDebcb", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x836054ec308d8eae396c8a8ac2c52d482ed1f95776f3cf12310a65570e1eec21", + "input": "0x", + "nonce": 38, + "to": "0x6A533721d0Eda3F7ae63F9A7Ba3C3b6Cb3FDebcb", + "transactionIndex": 82, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x5bdc9446071b73f686635d170a0c80bcba04c242fc8893451d793f1bd1e05d", + "s": "0x125cbadd51b210bc27bc179e4aeabc77ca1e05ad231d04a7c9c1517d45b440d3", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4949846", + "effectiveGasPrice": "34000000000", + "from": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "transactionHash": "0x836054ec308d8eae396c8a8ac2c52d482ed1f95776f3cf12310a65570e1eec21", + "transactionIndex": 82, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x836054ec308d8eae396c8a8ac2c52d482ed1f95776f3cf12310a65570e1eec21", + "transactionPosition": 82, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xf04251F130d8baaCcD81EafAA1F92C0EE6f1e5EB", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x5aa6b3f016e59503d4f6bd8963b3d94c5069a7583a1c3e34be79bbd36f2e0e56", + "input": "0x", + "nonce": 0, + "to": "0xD6441Af7BF68e1f84a553F153F85018ff33451F7", + "transactionIndex": 83, + "value": "27476000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x47adc2a6cdd77e400d2aafc0a00154f29d4d6ac08718968bf8af2d1471fe525d", + "s": "0x3522fea2c570e4f0614539905104fb17a94811d8da11e81a402d29adf6e11160", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4970846", + "effectiveGasPrice": "34000000000", + "from": "0xf04251f130d8baaccd81eafaa1f92c0ee6f1e5eb", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xd6441af7bf68e1f84a553f153f85018ff33451f7", + "transactionHash": "0x5aa6b3f016e59503d4f6bd8963b3d94c5069a7583a1c3e34be79bbd36f2e0e56", + "transactionIndex": 83, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xf04251f130d8baaccd81eafaa1f92c0ee6f1e5eb", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xd6441af7bf68e1f84a553f153f85018ff33451f7", + "value": "0x17d4e5c6d08a20000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5aa6b3f016e59503d4f6bd8963b3d94c5069a7583a1c3e34be79bbd36f2e0e56", + "transactionPosition": 83, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x051F8B48aFd9053CF272cEDC484ac3aa80F7dd8C", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xf72341024b4666a725cd59e16d081daed2fcde34f89ea41b07076ee832a1180d", + "input": "0x", + "nonce": 5, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 84, + "value": "17792192000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe3eb9da061a0b3c4ffe5cc389cb7f04ccd7b966288261f1eda2d1c5f689bd696", + "s": "0x268c027187d54e3829df1b77bfbaa0869edb3e5fba840f9f509d0731f9ea85ae", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "4991846", + "effectiveGasPrice": "34000000000", + "from": "0x051f8b48afd9053cf272cedc484ac3aa80f7dd8c", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xf72341024b4666a725cd59e16d081daed2fcde34f89ea41b07076ee832a1180d", + "transactionIndex": 84, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x051f8b48afd9053cf272cedc484ac3aa80f7dd8c", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x3f35e783ef8000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xf72341024b4666a725cd59e16d081daed2fcde34f89ea41b07076ee832a1180d", + "transactionPosition": 84, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x5c289982e7fE5B212127C40D986BfDD5513A9107", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x9d807b143052b01d4cf21e9def21d8f4485518e2b69a3b71635a063be826895f", + "input": "0x", + "nonce": 2, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 85, + "value": "24344588000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x4f2620545138723cee76e42eadce63fdd74615b2602b1b603e4b8dbd493b1bee", + "s": "0x1df08cefee574ece973da506de5246c84e52c168f0f2f782e1aed8d098f12ae8", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5012846", + "effectiveGasPrice": "34000000000", + "from": "0x5c289982e7fe5b212127c40d986bfdd5513a9107", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x9d807b143052b01d4cf21e9def21d8f4485518e2b69a3b71635a063be826895f", + "transactionIndex": 85, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x5c289982e7fe5b212127c40d986bfdd5513a9107", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x567d4617f17800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x9d807b143052b01d4cf21e9def21d8f4485518e2b69a3b71635a063be826895f", + "transactionPosition": 85, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "input": "0x8803dbee00000000000000000000000000000000000000000000003240b5948b231c000000000000000000000000000000000000000000000000000022fddb326d7d778800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000057757e3d981446d585af0d9ae4d7df6d646478060000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 36, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 86, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xaffc10de531efb01be56713ae389c054cb218212e734e45951e59a66bd24da7", + "s": "0x45569592eedb58f8c3b34331ece85683317ee419d9b4532fe24f74869bc3f9c1", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5122955", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "110109", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x0000000000000000000000000000000000000000000000001865510a0f717be0", + "blockNumber": 12679108, + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionIndex": 86, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 119, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x00000000000000000000000057757e3d981446d585af0d9ae4d7df6d64647806" + ], + "data": "0x00000000000000000000000000000000000000000000003240b5948b231c0000", + "blockNumber": 12679108, + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionIndex": 86, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 120, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000678f93a97d7c16173000000000000000000000000000000000000000000000d2d0fb685b713780000", + "blockNumber": 12679108, + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionIndex": 86, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 121, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000057757e3d981446d585af0d9ae4d7df6d64647806" + ], + "data": "0x0000000000000000000000000000000000000000000000001865510a0f717be00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003240b5948b231c0000", + "blockNumber": 12679108, + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionIndex": 86, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 122, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000080000000000000000800000000002000000080000000000000000000000000000000000400000000008000000200000000010000000000000000000000000000000000040000000000000000000000000004000000000000010000000000000000000000000004008000000000000200000000000080000004010000000000000000000000000008000000000002000000000000000000000000000000000000002002000000000000000000000000000080000001000000000000020000000200000000000000000000000000040000000000000000000000000010000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionIndex": 86, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee00000000000000000000000000000000000000000000003240b5948b231c000000000000000000000000000000000000000000000000000022fddb326d7d778800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000057757e3d981446d585af0d9ae4d7df6d646478060000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15ef9", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000001865510a0f717be000000000000000000000000000000000000000000000003240b5948b231c0000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000000066093e98dc84fe593000000000000000000000000000000000000000000000d5f506c1a42369400000000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db0000000000000000000000000000000000000000000000001865510a0f717be0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003240b5948b231c000000000000000000000000000057757e3d981446d585af0d9ae4d7df6d6464780600000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe8ab", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb00000000000000000000000057757e3d981446d585af0d9ae4d7df6d6464780600000000000000000000000000000000000000000000003240b5948b231c0000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000678f93a97d7c16173" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000d2d0fb685b713780000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x6fea28d5d6eba7ac2e4675ee0010a8c9ffee4719b8d65ae1ca6c369fe58dad05", + "transactionPosition": 86, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x5E357383A81bf09B9863874542d4197Fbc929f0F", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x0d5f02fd5081786e8a435e59148440bd0f12cd29bef566295797df813cef6b34", + "input": "0x", + "nonce": 3, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 87, + "value": "31569768000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xdda4e98f2cad875a6bc893485f488faabb5931c43ba3199399da5ebf42c91fe6", + "s": "0x1e15e8f6078d5301332ab0eed51123f79da436876494f387f3820ff823935eca", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5143955", + "effectiveGasPrice": "34000000000", + "from": "0x5e357383a81bf09b9863874542d4197fbc929f0f", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x0d5f02fd5081786e8a435e59148440bd0f12cd29bef566295797df813cef6b34", + "transactionIndex": 87, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x5e357383a81bf09b9863874542d4197fbc929f0f", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x70288967481000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0d5f02fd5081786e8a435e59148440bd0f12cd29bef566295797df813cef6b34", + "transactionPosition": 87, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xb4086a829a7465B78ac81F9c991E1F86b8CdA2db", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xe054e21beffc402f62e5a9208dff5272aff18380c632556e81511dc9ce15c5d5", + "input": "0x", + "nonce": 12, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 88, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x866d12061fded2e7a0c7539ef6906727d3c11a42fead8215faaddd6340bc1225", + "s": "0x57c3be6ec1fb31d711f5d414d20be8b1afed1de2487b7fe392df28d03fe5ca48", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5164955", + "effectiveGasPrice": "34000000000", + "from": "0xb4086a829a7465b78ac81f9c991e1f86b8cda2db", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0xe054e21beffc402f62e5a9208dff5272aff18380c632556e81511dc9ce15c5d5", + "transactionIndex": 88, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb4086a829a7465b78ac81f9c991e1f86b8cda2db", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe054e21beffc402f62e5a9208dff5272aff18380c632556e81511dc9ce15c5d5", + "transactionPosition": 88, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x5E98435d03f76da5D621008C7d4B492080CBB989", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x5b91a9241229724dd53f4694ac4916ddc6490660fbde4146f073a7d2829cffa6", + "input": "0x", + "nonce": 1, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 89, + "value": "18206075000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe3cf305553599e2a9df493779016c9774e694ed5513d97a7036620f1f12cfcc8", + "s": "0x5c462b164c5e689e7e33445f31aa53b6aa4038b963fab77a1be27a810df1feeb", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5185955", + "effectiveGasPrice": "34000000000", + "from": "0x5e98435d03f76da5d621008c7d4b492080cbb989", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x5b91a9241229724dd53f4694ac4916ddc6490660fbde4146f073a7d2829cffa6", + "transactionIndex": 89, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x5e98435d03f76da5d621008c7d4b492080cbb989", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x40ae5429210e00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5b91a9241229724dd53f4694ac4916ddc6490660fbde4146f073a7d2829cffa6", + "transactionPosition": 89, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x1a77827CcFA6f48D516C65Bd219f9080e3C181c9", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x31b35429fee823e7ef5d0a9950236f529994da7f27cda903943fa1ab81b82932", + "input": "0x", + "nonce": 11, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 90, + "value": "19286000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2022ccdb77db0955e4ae965659aec70a835962458b041fc3553654bd502f874", + "s": "0x1638c6f635bb4ffb47db5cbdff6d09d2c1586c042738d9c53a71d92302d3e5f0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5206955", + "effectiveGasPrice": "34000000000", + "from": "0x1a77827ccfa6f48d516c65bd219f9080e3c181c9", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x31b35429fee823e7ef5d0a9950236f529994da7f27cda903943fa1ab81b82932", + "transactionIndex": 90, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x1a77827ccfa6f48d516c65bd219f9080e3c181c9", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x448483cb236000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x31b35429fee823e7ef5d0a9950236f529994da7f27cda903943fa1ab81b82932", + "transactionPosition": 90, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9725f46E124F370C46D311A1e856956A2341aa70", + "gas": 54013, + "gasPrice": "34000000000", + "hash": "0x29e8d63eb503d77e3aa3c39b372debf1f31a3a793eb385c7906a1c0fa6a5bf49", + "input": "0x095ea7b3000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 407, + "to": "0xe516D78d784C77D479977BE58905B3f2b1111126", + "transactionIndex": 91, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xcaab5a74c116bbe84671902eb6f52a099a56a0ac85670a96a0ddddb2d8f4628e", + "s": "0x1f6ba6bf0a0976c8068ec9cc2813d8a03dd5f21606574f90026659e916c76bc6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5260968", + "effectiveGasPrice": "34000000000", + "from": "0x9725f46e124f370c46d311a1e856956a2341aa70", + "gasUsed": "54013", + "logs": [ + { + "address": "0xe516D78d784C77D479977BE58905B3f2b1111126", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000009725f46e124f370c46d311a1e856956a2341aa70", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x29e8d63eb503d77e3aa3c39b372debf1f31a3a793eb385c7906a1c0fa6a5bf49", + "transactionIndex": 91, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 123, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x9725f46e124f370c46d311a1e856956a2341aa70" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xdef1c0ded9bec7f1a1670819833240f027b25eff" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000010000000000000000008000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000200004000004000000002000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000004000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xe516d78d784c77d479977be58905b3f2b1111126", + "transactionHash": "0x29e8d63eb503d77e3aa3c39b372debf1f31a3a793eb385c7906a1c0fa6a5bf49", + "transactionIndex": 91, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9725f46e124f370c46d311a1e856956a2341aa70", + "callType": "call", + "gas": "0x7d45", + "input": "0x095ea7b3000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xe516d78d784c77d479977be58905b3f2b1111126", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7d45", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x29e8d63eb503d77e3aa3c39b372debf1f31a3a793eb385c7906a1c0fa6a5bf49", + "transactionPosition": 91, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address guy,uint256 wad)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "guy", + "type": "address", + "decoded": "0xdef1c0ded9bec7f1a1670819833240f027b25eff" + }, + { + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFEe34E661188FB6b3b6725657DE0D66310D1cA87", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0xa1d62969dbe5c1c9b6baf788130134be83550fc96d052e0977fe6b68930d292a", + "input": "0x", + "nonce": 5041, + "to": "0x2704Ea516dc25e77C9A9790f501E3493bEa8c144", + "transactionIndex": 92, + "value": "5000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x914839afa00ab13bd79530389cd9828a10b9740f2e2f5271a4ed9365549a4f0", + "s": "0x38998b9973ca98a0685ff0dcfb45a46d00067036f60feb3df2ea6e18e3ecbb9e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5281968", + "effectiveGasPrice": "34000000000", + "from": "0xfee34e661188fb6b3b6725657de0d66310d1ca87", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2704ea516dc25e77c9a9790f501e3493bea8c144", + "transactionHash": "0xa1d62969dbe5c1c9b6baf788130134be83550fc96d052e0977fe6b68930d292a", + "transactionIndex": 92, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfee34e661188fb6b3b6725657de0d66310d1ca87", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x2704ea516dc25e77c9a9790f501e3493bea8c144", + "value": "0x11c37937e08000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa1d62969dbe5c1c9b6baf788130134be83550fc96d052e0977fe6b68930d292a", + "transactionPosition": 92, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xb58CC3543b6545256bC6B7F0d0F9FDdA3fd667a2", + "gas": 201276, + "gasPrice": "34000000000", + "hash": "0xa4f6fd125075eff48302b194ad0d860beea1a3994913f48a5cf4ede50dbcdb13", + "input": "0xa9059cbb000000000000000000000000587ab3a66ae57534eeee4ba7d5e11e926efa83440000000000000000000000000000000000000000000000177d85e42c18440000", + "nonce": 6, + "to": "0x357731b60b19B62a4aE133FB4BF44d14D42fD525", + "transactionIndex": 93, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x8b9a38f8e77407f9bcc939b2b8bfebb7f669632f36eabee5dbab7988dfba8091", + "s": "0x1ede4ec586825b0d56a7f8bbd9a19e9c6ab6f974471456e3b7336ded1cfbc3cc", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5416152", + "effectiveGasPrice": "34000000000", + "from": "0xb58cc3543b6545256bc6b7f0d0f9fdda3fd667a2", + "gasUsed": "134184", + "logs": [ + { + "address": "0x357731b60b19B62a4aE133FB4BF44d14D42fD525", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b58cc3543b6545256bc6b7f0d0f9fdda3fd667a2", + "0x000000000000000000000000587ab3a66ae57534eeee4ba7d5e11e926efa8344" + ], + "data": "0x0000000000000000000000000000000000000000000000177d85e42c18440000", + "blockNumber": 12679108, + "transactionHash": "0xa4f6fd125075eff48302b194ad0d860beea1a3994913f48a5cf4ede50dbcdb13", + "transactionIndex": 93, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 124, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xb58cc3543b6545256bc6b7f0d0f9fdda3fd667a2" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x587ab3a66ae57534eeee4ba7d5e11e926efa8344" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "433320000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000001000000000000008000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000004000000000000000004000000000000000000000000000000000000000000000000000000010000000000000000000000100000000000000000000000000000000002000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000040000000000000000000000000", + "status": true, + "to": "0x357731b60b19b62a4ae133fb4bf44d14d42fd525", + "transactionHash": "0xa4f6fd125075eff48302b194ad0d860beea1a3994913f48a5cf4ede50dbcdb13", + "transactionIndex": 93, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb58cc3543b6545256bc6b7f0d0f9fdda3fd667a2", + "callType": "call", + "gas": "0x2bdb0", + "input": "0xa9059cbb000000000000000000000000587ab3a66ae57534eeee4ba7d5e11e926efa83440000000000000000000000000000000000000000000000177d85e42c18440000", + "to": "0x357731b60b19b62a4ae133fb4bf44d14d42fd525", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1b79c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa4f6fd125075eff48302b194ad0d860beea1a3994913f48a5cf4ede50dbcdb13", + "transactionPosition": 93, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0x587ab3a66ae57534eeee4ba7d5e11e926efa8344" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "433320000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x65782290Bd230F53f5A7E444C21D740374eAC398", + "gas": 500000, + "gasPrice": "34000000000", + "hash": "0xbbf231aeaee2c0c9255f48a8ba992909b935d1337288e058f1d71b3feec2239b", + "input": "0x811dd34d00c177c31119111508a2f99f1117f9d2f8e6111a1117f7b3f661000000000000", + "nonce": 15416, + "to": "0x75e58a2e1391A22110D72EbD2B059a80126a6b92", + "transactionIndex": 94, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x718dd8c23a7c5a1810ffa764abbffd0937058cdaa966550ea42dffa5eaea6227", + "s": "0x52e33d226a6b7053cf8f311b09f6d8213e9b017c94f63c4279467f777badef34", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5445418", + "effectiveGasPrice": "34000000000", + "from": "0x65782290bd230f53f5a7e444c21d740374eac398", + "gasUsed": "29266", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x75e58a2e1391a22110d72ebd2b059a80126a6b92", + "transactionHash": "0xbbf231aeaee2c0c9255f48a8ba992909b935d1337288e058f1d71b3feec2239b", + "transactionIndex": 94, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x65782290bd230f53f5a7e444c21d740374eac398", + "callType": "call", + "gas": "0x74d2c", + "input": "0x811dd34d00c177c31119111508a2f99f1117f9d2f8e6111a1117f7b3f661000000000000", + "to": "0x75e58a2e1391a22110d72ebd2b059a80126a6b92", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1e5e", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xbbf231aeaee2c0c9255f48a8ba992909b935d1337288e058f1d71b3feec2239b", + "transactionPosition": 94, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "input": "0x8803dbee000000000000000000000000000000000000000000000028d1f9666f5d2400000000000000000000000000000000000000000000000000001c5889ec0465f9a400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf65400000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 37, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 95, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x2a6cd10ac2fbe26cad7fb606cf3e9beff7f03b3f93d4c3f66ca2d41a3e539653", + "s": "0xb54588db8ca788ca419767b843f90d6c4e58fdd4738bc3a23e9489b16c8475d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5555527", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "110109", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x000000000000000000000000000000000000000000000000145bf009892fb361", + "blockNumber": 12679108, + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionIndex": 95, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 125, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x0000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf6540" + ], + "data": "0x000000000000000000000000000000000000000000000028d1f9666f5d240000", + "blockNumber": 12679108, + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionIndex": 95, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 126, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000000068d552aa160f114d4000000000000000000000000000000000000000000000d043dbd1f47b6540000", + "blockNumber": 12679108, + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionIndex": 95, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 127, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf6540" + ], + "data": "0x000000000000000000000000000000000000000000000000145bf009892fb36100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028d1f9666f5d240000", + "blockNumber": 12679108, + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionIndex": 95, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 128, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000040000000000000010000000000000000080000000000000000800000000002000000080000000000000000400000000000000000000000000008000000200000000010000000000000000000000000000000000040000000000000000000000000000000000000000010000000000000000000000000004008000000000000200000000000080000004000000000000000000000000000008000000000002000000000000000000000000000000000000002002000000000000000000000000000080000001008000000000020000000200000000000000000000000000040000000000000000000000000010000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionIndex": 95, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee000000000000000000000000000000000000000000000028d1f9666f5d2400000000000000000000000000000000000000000000000000001c5889ec0465f9a400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf65400000000000000000000000000000000000000000000000000000000060d0e01b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15ef9", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000145bf009892fb361000000000000000000000000000000000000000000000028d1f9666f5d240000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000678f93a97d7c16173000000000000000000000000000000000000000000000d2d0fb685b7137800000000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db000000000000000000000000000000000000000000000000145bf009892fb361", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000028d1f9666f5d2400000000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf654000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe8ab", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb0000000000000000000000002c21fa2903d4f8839e8fd6b041c2adf19dbf6540000000000000000000000000000000000000000000000028d1f9666f5d240000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000068d552aa160f114d4" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000d043dbd1f47b6540000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0xa8b12b1a4b1bf1e6f2f152e9d263042a9551b7337034990287a7bce5e08c3884", + "transactionPosition": 95, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6A533721d0Eda3F7ae63F9A7Ba3C3b6Cb3FDebcb", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x697176533fe0f1a706ae50ec1fb7eebade781d76d557bba4c227610f5019a42d", + "input": "0x", + "nonce": 39, + "to": "0x6A533721d0Eda3F7ae63F9A7Ba3C3b6Cb3FDebcb", + "transactionIndex": 96, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x87fec92d9277f62c10d99cd82daefe82b87d3cf8fad81a98055d17af5cdf1d30", + "s": "0x327d15c99fd613c7ff96c0805fb663b520a70dfce4c54aac5e6c1f7a7dfdc13d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5576527", + "effectiveGasPrice": "34000000000", + "from": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "transactionHash": "0x697176533fe0f1a706ae50ec1fb7eebade781d76d557bba4c227610f5019a42d", + "transactionIndex": 96, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x6a533721d0eda3f7ae63f9a7ba3c3b6cb3fdebcb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x697176533fe0f1a706ae50ec1fb7eebade781d76d557bba4c227610f5019a42d", + "transactionPosition": 96, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xA20C7A1E333c54223847F7A77A77c984cBc21a3E", + "gas": 65206, + "gasPrice": "34000000000", + "hash": "0x8e0ac9dc50047531e3d15e4f473038413bfb93ff4c2ba1612c436f0e7abbf682", + "input": "0xa9059cbb000000000000000000000000f06fd8310e7fcdbba112a9317f2a54cc5f8c70cc000000000000000000000000000000000000000000000000002099fa66c80800", + "nonce": 1, + "to": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "transactionIndex": 97, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x36729f92c072b4dc59b4bcddb475fc4a4dc5617c025ea261394dd5d9cce2ce6", + "s": "0x7c98dbe3f9b7a06454676cc827502b7735f8aa4d28bf278651679a2ff6e243f6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5615865", + "effectiveGasPrice": "34000000000", + "from": "0xa20c7a1e333c54223847f7a77a77c984cbc21a3e", + "gasUsed": "39338", + "logs": [ + { + "address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a20c7a1e333c54223847f7a77a77c984cbc21a3e", + "0x000000000000000000000000f06fd8310e7fcdbba112a9317f2a54cc5f8c70cc" + ], + "data": "0x000000000000000000000000000000000000000000000000002099fa66c80800", + "blockNumber": 12679108, + "transactionHash": "0x8e0ac9dc50047531e3d15e4f473038413bfb93ff4c2ba1612c436f0e7abbf682", + "transactionIndex": 97, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 129, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xa20c7a1e333c54223847f7a77a77c984cbc21a3e" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xf06fd8310e7fcdbba112a9317f2a54cc5f8c70cc" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "9176500000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000008000000000000020000000000000000000000000000000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000400000002000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000", + "status": true, + "to": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "transactionHash": "0x8e0ac9dc50047531e3d15e4f473038413bfb93ff4c2ba1612c436f0e7abbf682", + "transactionIndex": 97, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa20c7a1e333c54223847f7a77a77c984cbc21a3e", + "callType": "call", + "gas": "0xaa36", + "input": "0xa9059cbb000000000000000000000000f06fd8310e7fcdbba112a9317f2a54cc5f8c70cc000000000000000000000000000000000000000000000000002099fa66c80800", + "to": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7fc2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8e0ac9dc50047531e3d15e4f473038413bfb93ff4c2ba1612c436f0e7abbf682", + "transactionPosition": 97, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address dst,uint256 wad)", + "name": "transfer", + "decoded": [ + { + "name": "dst", + "type": "address", + "decoded": "0xf06fd8310e7fcdbba112a9317f2a54cc5f8c70cc" + }, + { "name": "wad", "type": "uint256", "decoded": "9176500000000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x214949a0c64A7565293E40fD15eb3C905cDBD11a", + "gas": 233830, + "gasPrice": "34000000000", + "hash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "input": "0x7ff36ab500000000000000000000000000000000000000000651e1316b7c5068c2352d8b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a0000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000015874d65e649880c2614e7a480cb7c9a55787ff6", + "nonce": 27, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 98, + "value": "90000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x41369ed34f98d457381db3ff975bdddab2e2f57b7a960d10ade1445fa04641f5", + "s": "0x5eabb653a1e2df8dc8f2f7e84d92abe482a18d6848dca394cebd51f633b48666", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5784453", + "effectiveGasPrice": "34000000000", + "from": "0x214949a0c64a7565293e40fd15eb3c905cdbd11a", + "gasUsed": "168588", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000013fbe85edc90000", + "blockNumber": 12679108, + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 130, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f" + ], + "data": "0x000000000000000000000000000000000000000000000000013fbe85edc90000", + "blockNumber": 12679108, + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 131, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x15874d65e649880c2614e7a480cb7c9A55787FF6", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "0x000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a" + ], + "data": "0x00000000000000000000000000000000000000000670f16528bc8cef7aface94", + "blockNumber": 12679108, + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 132, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xb6CA52c7916ad7960C12Dc489FD93E5Af7cA257f", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000f361ab4b26f22c6ce360837dd300000000000000000000000000000000000000000000002e1db3d72760826f0f", + "blockNumber": 12679108, + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 133, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xb6CA52c7916ad7960C12Dc489FD93E5Af7cA257f", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000000000000000000006929847e06cce816dd0e7b00000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 134, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000000000000000080000000200000002000000080000000000080000000000000000000000000000000008000000200000000000000000000000008000000000000000000000000000000000000000000000100000000000000010000000000000000000000000004000000000000000000001000020080010004020000000000000000000000040000000000000000000000000000000000000000000000000000002000000000000000000000000000010800000001000000000002020000000200000000000000000000000000000000000000000400000080000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionIndex": 98, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x214949a0c64a7565293e40fd15eb3c905cdbd11a", + "callType": "call", + "gas": "0x337f6", + "input": "0x7ff36ab500000000000000000000000000000000000000000651e1316b7c5068c2352d8b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a0000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000015874d65e649880c2614e7a480cb7c9a55787ff6", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x13fbe85edc90000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x291c8", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000000000000000000006929847e06cce816dd0e7b0" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3189e", + "input": "0x0902f1ac", + "to": "0xb6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000f3683de36ed2993b64ce54658300000000000000000000000000000000000000000000002e1c7418a172b96f0f0000000000000000000000000000000000000000000000000000000060d0d1dc" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2e5dd", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x13fbe85edc90000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x284f3", + "input": "0xa9059cbb000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f000000000000000000000000000000000000000000000000013fbe85edc90000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x25df3", + "input": "0x022c0d9f000000000000000000000000000000000000000006929847e06cce816dd0e7b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1bf9b", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0xb6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "callType": "call", + "gas": "0x2210e", + "input": "0xa9059cbb000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a000000000000000000000000000000000000000006929847e06cce816dd0e7b0", + "to": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x131c6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [3, 0], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", + "callType": "delegatecall", + "gas": "0x1fc7f", + "input": "0xa9059cbb000000000000000000000000214949a0c64a7565293e40fd15eb3c905cdbd11a000000000000000000000000000000000000000006929847e06cce816dd0e7b0", + "to": "0x284c2bed39bfd462ce65edd2d86725849a953bb4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x11520", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0, 0], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0xb6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "callType": "staticcall", + "gas": "0xf1a2", + "input": "0x70a08231000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "to": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7a0", + "output": "0x00000000000000000000000000000000000000f361ab4b26f22c6ce360837dd3" + }, + "subtraces": 1, + "traceAddress": [3, 1], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0x15874d65e649880c2614e7a480cb7c9a55787ff6", + "callType": "delegatecall", + "gas": "0xead2", + "input": "0x70a08231000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "to": "0x284c2bed39bfd462ce65edd2d86725849a953bb4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x461", + "output": "0x00000000000000000000000000000000000000f361ab4b26f22c6ce360837dd3" + }, + "subtraces": 0, + "traceAddress": [3, 1, 0], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + }, + { + "action": { + "from": "0xb6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "callType": "staticcall", + "gas": "0xe88b", + "input": "0x70a08231000000000000000000000000b6ca52c7916ad7960c12dc489fd93e5af7ca257f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000002e1db3d72760826f0f" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x264fde0ca3cfdf49e758409f7606c00e88224f9d3276119ab8f450d0c9aef620", + "transactionPosition": 98, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x604C711e8526F37662563764f67A826B357E524D", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x81108fb0959b14899296073e2d4507c462c99538d98cfbfec4f5881b142760fd", + "input": "0x", + "nonce": 2, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 99, + "value": "24278881000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3257169fb6604fcc50db1920785042d7c8ddb209fa8dc33435c53add78cf0727", + "s": "0x26366dce4688637f93a0f0283db1b00479b0831f7ab579bca2570d2825596052", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5805453", + "effectiveGasPrice": "34000000000", + "from": "0x604c711e8526f37662563764f67a826b357e524d", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x81108fb0959b14899296073e2d4507c462c99538d98cfbfec4f5881b142760fd", + "transactionIndex": 99, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x604c711e8526f37662563764f67a826b357e524d", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x5641837d8c8a00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x81108fb0959b14899296073e2d4507c462c99538d98cfbfec4f5881b142760fd", + "transactionPosition": 99, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xEd4C59C9796a395aF62A4740Bd96233B910dE686", + "gas": 21000, + "gasPrice": "34000000000", + "hash": "0x1c880e5d6901547af8ab5431b033bb82916065fee17f1eeb21b2d21021bdd009", + "input": "0x", + "nonce": 53, + "to": "0xa1D8d972560C2f8144AF871Db508F0B0B10a3fBf", + "transactionIndex": 100, + "value": "15584113000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x38dc71a1f4ac51bb084a1d58de5ed41583d35b521108ae78d9a9a7441b2ec07b", + "s": "0x2d8f250d2641e5ae7a29464c35db41f449bdddd6903edfeeef80311fedb8b2ae", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5826453", + "effectiveGasPrice": "34000000000", + "from": "0xed4c59c9796a395af62a4740bd96233b910de686", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "transactionHash": "0x1c880e5d6901547af8ab5431b033bb82916065fee17f1eeb21b2d21021bdd009", + "transactionIndex": 100, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xed4c59c9796a395af62a4740bd96233b910de686", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa1d8d972560c2f8144af871db508f0b0b10a3fbf", + "value": "0x375dab0f812a00" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1c880e5d6901547af8ab5431b033bb82916065fee17f1eeb21b2d21021bdd009", + "transactionPosition": 100, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x80DBaf6310B3eB84b42Ef64c92479D8CEda4984f", + "gas": 138804, + "gasPrice": "34000000000", + "hash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "input": "0x8803dbee00000000000000000000000000000000000000000000000d8d726b7177a8000000000000000000000000000000000000000000000000000009564dfe76ecd5f400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae0000000000000000000000000000000000000000000000000000000060d0e03e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "nonce": 38, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 101, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xa0568571e5b845908ce695aa750ccd8a37b0b8d55f8786587d32d82cb18e2318", + "s": "0x228f7e7dc30ff6ab8c236316449e72664f447ae54c6a5e6c9840f1c30507ebfe", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5936562", + "effectiveGasPrice": "34000000000", + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "gasUsed": "110109", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db" + ], + "data": "0x00000000000000000000000000000000000000000000000006dece2f85f78c87", + "blockNumber": 12679108, + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionIndex": 101, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 135, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF51e0Ec94819A954d1B206367EAf6BBb7150378A", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "0x000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + ], + "data": "0x00000000000000000000000000000000000000000000000d8d726b7177a80000", + "blockNumber": 12679108, + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionIndex": 101, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 136, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x90b6791f637e1a5e6c1480682732685f1ce102db" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000000069433f8d0e6e8a15b000000000000000000000000000000000000000000000cf6b04ab3d63eac0000", + "blockNumber": 12679108, + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionIndex": 101, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 137, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x90b6791F637E1A5e6C1480682732685F1CE102Db", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + ], + "data": "0x00000000000000000000000000000000000000000000000006dece2f85f78c870000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d8d726b7177a80000", + "blockNumber": 12679108, + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionIndex": 101, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 138, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000080000000000000000800000000002000200080000000000000000000000000000000000000000000008000004200000000010000000000000000400000000000000000040000000000000000000000000000000000000000010000000000000000000000000004008000000000000200000000000080000004000000000000000000000000000008000000000002000000000000000000000000000000000000002002000000000000000000000000000080000001000000000000020000000200000000000000000000000000040000000000000000000000000010000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionIndex": 101, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x80dbaf6310b3eb84b42ef64c92479d8ceda4984f", + "callType": "call", + "gas": "0x1c420", + "input": "0x8803dbee00000000000000000000000000000000000000000000000d8d726b7177a8000000000000000000000000000000000000000000000000000009564dfe76ecd5f400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae0000000000000000000000000000000000000000000000000000000060d0e03e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f51e0ec94819a954d1b206367eaf6bbb7150378a", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x15ef9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000006dece2f85f78c8700000000000000000000000000000000000000000000000d8d726b7177a80000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1aaee", + "input": "0x0902f1ac", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000000068d552aa160f114d4000000000000000000000000000000000000000000000d043dbd1f47b65400000000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18cb6", + "input": "0x23b872dd00000000000000000000000080dbaf6310b3eb84b42ef64c92479d8ceda4984f00000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db00000000000000000000000000000000000000000000000006dece2f85f78c87", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14a5e", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d8d726b7177a80000000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe8ab", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "call", + "gas": "0x111a8", + "input": "0xa9059cbb000000000000000000000000f7f8e8461dd7d27a2b1c439372d171e38e6d71ae00000000000000000000000000000000000000000000000d8d726b7177a80000", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8909", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x886a", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000069433f8d0e6e8a15b" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + }, + { + "action": { + "from": "0x90b6791f637e1a5e6c1480682732685f1ce102db", + "callType": "staticcall", + "gas": "0x84c7", + "input": "0x70a0823100000000000000000000000090b6791f637e1a5e6c1480682732685f1ce102db", + "to": "0xf51e0ec94819a954d1b206367eaf6bbb7150378a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x21d", + "output": "0x000000000000000000000000000000000000000000000cf6b04ab3d63eac0000" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x6913b470ffd1309ac49b85f1a2d7e2cb9a38161fe44826778a101a0365f525f4", + "transactionPosition": 101, + "type": "call" + } + ], + "decoded": { + "signature": "swapTokensForExactTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapTokensForExactTokens(uint256 amountOut,uint256 amountInMax,address[] path,address to,uint256 deadline)", + "name": "swapTokensForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "250000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountInMax", + "type": "uint256", + "decoded": "672810949650732532" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xf51e0ec94819a954d1b206367eaf6bbb7150378a" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xf7f8e8461dd7d27a2b1c439372d171e38e6d71ae" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624301630" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x3B794929566e3Ba0f25e4263e1987828b5c87161", + "gas": 50000, + "gasPrice": "33800000000", + "hash": "0x05ebda64b0794c531ed24bd8d8505797287afe24218a0860781222bb7bcc7c1f", + "input": "0x", + "nonce": 41447, + "to": "0x63c3C7702A48Fd91A56d04CF1C91d4aef4809a1D", + "transactionIndex": 102, + "value": "247480581616193237", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xf0319ae93e1cab801301e7bb198c136779c9f2212633f554b2c088399f592cfe", + "s": "0x7f17c3a567a63e1fd129b174f6e5c0de280df77c2f81c0549c1900ffbc0aa364", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5957562", + "effectiveGasPrice": "33800000000", + "from": "0x3b794929566e3ba0f25e4263e1987828b5c87161", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x63c3c7702a48fd91a56d04cf1c91d4aef4809a1d", + "transactionHash": "0x05ebda64b0794c531ed24bd8d8505797287afe24218a0860781222bb7bcc7c1f", + "transactionIndex": 102, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x3b794929566e3ba0f25e4263e1987828b5c87161", + "callType": "call", + "gas": "0x7148", + "input": "0x", + "to": "0x63c3c7702a48fd91a56d04cf1c91d4aef4809a1d", + "value": "0x36f3a471c0a4ed5" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x05ebda64b0794c531ed24bd8d8505797287afe24218a0860781222bb7bcc7c1f", + "transactionPosition": 102, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x912fD21d7a69678227fE6d08C64222Db41477bA0", + "gas": 50000, + "gasPrice": "33800000000", + "hash": "0x0349de5b46d2b472df0bb9773881283fe3843431a63bad4b9c4a71effa2a37cf", + "input": "0x", + "nonce": 565520, + "to": "0xF2E1821a55377010B541279e59b803041858F78b", + "transactionIndex": 103, + "value": "46417208333333335", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x4caf0d3c1a35a1215c32a00d635221a15975bc7686bd43b8ab67a93aaf93aa1d", + "s": "0x74808ce022c453d0bb2a44b334010983a13f47416cd0ddfaf1c5041157e18445", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5978562", + "effectiveGasPrice": "33800000000", + "from": "0x912fd21d7a69678227fe6d08c64222db41477ba0", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xf2e1821a55377010b541279e59b803041858f78b", + "transactionHash": "0x0349de5b46d2b472df0bb9773881283fe3843431a63bad4b9c4a71effa2a37cf", + "transactionIndex": 103, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x912fd21d7a69678227fe6d08c64222db41477ba0", + "callType": "call", + "gas": "0x7148", + "input": "0x", + "to": "0xf2e1821a55377010b541279e59b803041858f78b", + "value": "0xa4e8347e2c7357" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0349de5b46d2b472df0bb9773881283fe3843431a63bad4b9c4a71effa2a37cf", + "transactionPosition": 103, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x912fD21d7a69678227fE6d08C64222Db41477bA0", + "gas": 50000, + "gasPrice": "33800000000", + "hash": "0x238a9cc03531a6ba405feb68cd69ca87b478b3e82a9a205d33d7c6c324585a37", + "input": "0x", + "nonce": 565521, + "to": "0xD8eeC39A6fD1f17086a18aaf83d87305Da06B444", + "transactionIndex": 104, + "value": "24766135065303363", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe3f488a586332e103da2318c990343d4b8f3a241e21e5c684a86a643e696d679", + "s": "0x6ad474340b237a23d6a2a4fb77a430693a5dd850f69728f6461fffdf0416b24c", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "5999562", + "effectiveGasPrice": "33800000000", + "from": "0x912fd21d7a69678227fe6d08c64222db41477ba0", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xd8eec39a6fd1f17086a18aaf83d87305da06b444", + "transactionHash": "0x238a9cc03531a6ba405feb68cd69ca87b478b3e82a9a205d33d7c6c324585a37", + "transactionIndex": 104, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x912fd21d7a69678227fe6d08c64222db41477ba0", + "callType": "call", + "gas": "0x7148", + "input": "0x", + "to": "0xd8eec39a6fd1f17086a18aaf83d87305da06b444", + "value": "0x57fcab2b06d943" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x238a9cc03531a6ba405feb68cd69ca87b478b3e82a9a205d33d7c6c324585a37", + "transactionPosition": 104, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x66144a455d090089bd806A952270d5A3DAa2407E", + "gas": 44755, + "gasPrice": "33750000000", + "hash": "0xeb5314b907285f86b63e616a0ca54e27f87fa8a0f350a7295a94b9384d47f961", + "input": "0xa9059cbb0000000000000000000000003199e8053f73d7f61a4f3b53c2b71330dc1378fb00000000000000000000000000000000000000000000003635c9adc5dea00000", + "nonce": 8, + "to": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C", + "transactionIndex": 105, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x30c0470cee3a2414c9f47ff778b8de6bc149cad21da5b9cb9277f4dad97ce69f", + "s": "0x131cfb4334c989bbf7fe6f6e13256635f27a8a93dc0492d0662cd24f78b8dddf", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6036858", + "effectiveGasPrice": "33750000000", + "from": "0x66144a455d090089bd806a952270d5a3daa2407e", + "gasUsed": "37296", + "logs": [ + { + "address": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000066144a455d090089bd806a952270d5a3daa2407e", + "0x0000000000000000000000003199e8053f73d7f61a4f3b53c2b71330dc1378fb" + ], + "data": "0x00000000000000000000000000000000000000000000003635c9adc5dea00000", + "blockNumber": 12679108, + "transactionHash": "0xeb5314b907285f86b63e616a0ca54e27f87fa8a0f350a7295a94b9384d47f961", + "transactionIndex": 105, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 139, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed _from,address indexed _to,uint256 _value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "_from", + "type": "address", + "decoded": "0x66144a455d090089bd806a952270d5a3daa2407e" + }, + { + "indexed": true, + "name": "_to", + "type": "address", + "decoded": "0x3199e8053f73d7f61a4f3b53c2b71330dc1378fb" + }, + { + "indexed": false, + "name": "_value", + "type": "uint256", + "decoded": "1000000000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000020000000000000000020000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000008000000000000000000000000000000000200000000008000000000000000000000001000000000000000000000000010000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000100000000000000000000000000000000000000000000000000010000000000000000000000000000000000", + "status": true, + "to": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", + "transactionHash": "0xeb5314b907285f86b63e616a0ca54e27f87fa8a0f350a7295a94b9384d47f961", + "transactionIndex": 105, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x66144a455d090089bd806a952270d5a3daa2407e", + "callType": "call", + "gas": "0x5a47", + "input": "0xa9059cbb0000000000000000000000003199e8053f73d7f61a4f3b53c2b71330dc1378fb00000000000000000000000000000000000000000000003635c9adc5dea00000", + "to": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3d24", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xeb5314b907285f86b63e616a0ca54e27f87fa8a0f350a7295a94b9384d47f961", + "transactionPosition": 105, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x3199e8053f73d7f61a4f3b53c2b71330dc1378fb" + }, + { + "name": "_value", + "type": "uint256", + "decoded": "1000000000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x48940EB9efbD841c68371f137B7635E120d5DfB9", + "gas": 21000, + "gasPrice": "33750000000", + "hash": "0xd968081ac3fc884b2af92e21b6b494208e8afaddf98df3ae156d385a2e6eb6df", + "input": "0x", + "nonce": 11, + "to": "0x2Bc812C70dCd634A07Ce4fb9cD9bA4319Fd9898D", + "transactionIndex": 106, + "value": "260003775595373717", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe7a91890a91c724419618ceb22c631b63b18842030e082b1277afc933bbef4fb", + "s": "0x3ff55db74ebe5a969a6edaafb979b2a98682aabb43ece0f72a98983e70eddcd3", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6057858", + "effectiveGasPrice": "33750000000", + "from": "0x48940eb9efbd841c68371f137b7635e120d5dfb9", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2bc812c70dcd634a07ce4fb9cd9ba4319fd9898d", + "transactionHash": "0xd968081ac3fc884b2af92e21b6b494208e8afaddf98df3ae156d385a2e6eb6df", + "transactionIndex": 106, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x48940eb9efbd841c68371f137b7635e120d5dfb9", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x2bc812c70dcd634a07ce4fb9cd9ba4319fd9898d", + "value": "0x39bb80e6c9f6495" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd968081ac3fc884b2af92e21b6b494208e8afaddf98df3ae156d385a2e6eb6df", + "transactionPosition": 106, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xEc651130719Cc42121aBEC8f28EB79321e8Daa1c", + "gas": 75865, + "gasPrice": "33750000000", + "hash": "0x1d881a4b21ca1346f236bfd28180819f9256da75d425f37f248ac51161588dd7", + "input": "0xa9059cbb000000000000000000000000891d579ba8234f86cc88abdc9c94e61b54461d7f0000000000000000000000000000000000000000000000000000000ccb467580", + "nonce": 39, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 107, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7196393ca154ebd6157ced3e3fb839cb2b421a615b1343b82eb9f85a3f3d8431", + "s": "0x4a16423f03e59475768f812700c1c702c768b7482b6124bab412bf07589b6121", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6121079", + "effectiveGasPrice": "33750000000", + "from": "0xec651130719cc42121abec8f28eb79321e8daa1c", + "gasUsed": "63221", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ec651130719cc42121abec8f28eb79321e8daa1c", + "0x000000000000000000000000891d579ba8234f86cc88abdc9c94e61b54461d7f" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000ccb467580", + "blockNumber": 12679108, + "transactionHash": "0x1d881a4b21ca1346f236bfd28180819f9256da75d425f37f248ac51161588dd7", + "transactionIndex": 107, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 140, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000008000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000004010000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000080000000000000000080000000000000000000000000000002000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0x1d881a4b21ca1346f236bfd28180819f9256da75d425f37f248ac51161588dd7", + "transactionIndex": 107, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xec651130719cc42121abec8f28eb79321e8daa1c", + "callType": "call", + "gas": "0xd3e5", + "input": "0xa9059cbb000000000000000000000000891d579ba8234f86cc88abdc9c94e61b54461d7f0000000000000000000000000000000000000000000000000000000ccb467580", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1d881a4b21ca1346f236bfd28180819f9256da75d425f37f248ac51161588dd7", + "transactionPosition": 107, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x3f0Fc69670374AFF6d662d2C8104faf2f0d35FC0", + "gas": 65156, + "gasPrice": "33750000000", + "hash": "0xa3529b9be51f0c70c119be8eda5c95a6c79a46d06d5d4f0cd86401d5777c1e5e", + "input": "0xa9059cbb00000000000000000000000005394b17c946d04a845f5ad624713546adba07120000000000000000000000000000000000000000000000103f0be2f2953f0000", + "nonce": 3, + "to": "0xdd974D5C2e2928deA5F71b9825b8b646686BD200", + "transactionIndex": 108, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x650a7bce9ea27e6f600a59c269379bc877e8080ccfafaeba4db5152acec950fb", + "s": "0x4e4c5b69b5e2754dfa7bc479be33f6cf19583ac3f37245433400eb77222674da", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6160376", + "effectiveGasPrice": "33750000000", + "from": "0x3f0fc69670374aff6d662d2c8104faf2f0d35fc0", + "gasUsed": "39297", + "logs": [ + { + "address": "0xdd974D5C2e2928deA5F71b9825b8b646686BD200", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000003f0fc69670374aff6d662d2c8104faf2f0d35fc0", + "0x00000000000000000000000005394b17c946d04a845f5ad624713546adba0712" + ], + "data": "0x0000000000000000000000000000000000000000000000103f0be2f2953f0000", + "blockNumber": 12679108, + "transactionHash": "0xa3529b9be51f0c70c119be8eda5c95a6c79a46d06d5d4f0cd86401d5777c1e5e", + "transactionIndex": 108, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 141, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed _from,address indexed _to,uint256 _value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "_from", + "type": "address", + "decoded": "0x3f0fc69670374aff6d662d2c8104faf2f0d35fc0" + }, + { + "indexed": true, + "name": "_to", + "type": "address", + "decoded": "0x05394b17c946d04a845f5ad624713546adba0712" + }, + { + "indexed": false, + "name": "_value", + "type": "uint256", + "decoded": "299690879360000000000" + } + ] + } + } + ], + "logsBloom": "0x00020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000010000000000000000000000000000000000000000000000000080000000000000000000000000000010000000001000010000000000000000000000000000000000800000000000002000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000004000000000000000", + "status": true, + "to": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", + "transactionHash": "0xa3529b9be51f0c70c119be8eda5c95a6c79a46d06d5d4f0cd86401d5777c1e5e", + "transactionIndex": 108, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x3f0fc69670374aff6d662d2c8104faf2f0d35fc0", + "callType": "call", + "gas": "0xa9f8", + "input": "0xa9059cbb00000000000000000000000005394b17c946d04a845f5ad624713546adba07120000000000000000000000000000000000000000000000103f0be2f2953f0000", + "to": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7f8d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa3529b9be51f0c70c119be8eda5c95a6c79a46d06d5d4f0cd86401d5777c1e5e", + "transactionPosition": 108, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x05394b17c946d04a845f5ad624713546adba0712" + }, + { + "name": "_value", + "type": "uint256", + "decoded": "299690879360000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x82cf1E13E1003E1f772eD1C5cE6617F0ae59cfc7", + "gas": 55316, + "gasPrice": "33750000000", + "hash": "0x68f1d176baf35b31626b4efb141f733a5e9ea7caf0956197c6643c762d056a72", + "input": "0xa9059cbb0000000000000000000000003a033ee45ab4bed473694d33093ad547754fbb2d0000000000000000000000000000000000000000000000000000000005f5e100", + "nonce": 8, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 109, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xedd33957c667fc93d49540b12d9d975c2b4fe0b6dae4fa22a80c0490320834cc", + "s": "0x1d12d06650b1506bce83819bad5578d2dd3e7995ec342f95929bced4a6d9995c", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6206473", + "effectiveGasPrice": "33750000000", + "from": "0x82cf1e13e1003e1f772ed1c5ce6617f0ae59cfc7", + "gasUsed": "46097", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000082cf1e13e1003e1f772ed1c5ce6617f0ae59cfc7", + "0x0000000000000000000000003a033ee45ab4bed473694d33093ad547754fbb2d" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000005f5e100", + "blockNumber": 12679108, + "transactionHash": "0x68f1d176baf35b31626b4efb141f733a5e9ea7caf0956197c6643c762d056a72", + "transactionIndex": 109, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 142, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000010000000000002000000000000000000002000000000000000000080000000000000100000000000000000000000000080000000000000000000000020000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0x68f1d176baf35b31626b4efb141f733a5e9ea7caf0956197c6643c762d056a72", + "transactionIndex": 109, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x82cf1e13e1003e1f772ed1c5ce6617f0ae59cfc7", + "callType": "call", + "gas": "0x83b8", + "input": "0xa9059cbb0000000000000000000000003a033ee45ab4bed473694d33093ad547754fbb2d0000000000000000000000000000000000000000000000000000000005f5e100", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x68f1d176baf35b31626b4efb141f733a5e9ea7caf0956197c6643c762d056a72", + "transactionPosition": 109, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x3e22F79A2fd93a5EA10563214022B7Aa22b89b5e", + "gas": 75865, + "gasPrice": "33750000000", + "hash": "0x1ccb41d6cdf7d868e47a951be234be206c8dd9fa8c1fd3b415402afaa52743fd", + "input": "0xa9059cbb000000000000000000000000cc84a4773e0dc405706462d288b7ff208e3ffcef0000000000000000000000000000000000000000000000000000000137e93e40", + "nonce": 7, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 110, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x73eefce4404a72470200a58f4994486d0d26e946b35cac141d28a11b5e4d787", + "s": "0x6a47cc232884f364065306e009d304ea58c8029bd1a6a8be60c275731cf01f14", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6269694", + "effectiveGasPrice": "33750000000", + "from": "0x3e22f79a2fd93a5ea10563214022b7aa22b89b5e", + "gasUsed": "63221", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000003e22f79a2fd93a5ea10563214022b7aa22b89b5e", + "0x000000000000000000000000cc84a4773e0dc405706462d288b7ff208e3ffcef" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000137e93e40", + "blockNumber": 12679108, + "transactionHash": "0x1ccb41d6cdf7d868e47a951be234be206c8dd9fa8c1fd3b415402afaa52743fd", + "transactionIndex": 110, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 143, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000020000000000000000000000000000000000000000000008000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000001000008000010000000000000000000000100000000000000000000000000080000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0x1ccb41d6cdf7d868e47a951be234be206c8dd9fa8c1fd3b415402afaa52743fd", + "transactionIndex": 110, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x3e22f79a2fd93a5ea10563214022b7aa22b89b5e", + "callType": "call", + "gas": "0xd3e5", + "input": "0xa9059cbb000000000000000000000000cc84a4773e0dc405706462d288b7ff208e3ffcef0000000000000000000000000000000000000000000000000000000137e93e40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1ccb41d6cdf7d868e47a951be234be206c8dd9fa8c1fd3b415402afaa52743fd", + "transactionPosition": 110, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xB2F50eA0E761a49b5A4373295C948b0a174bD9b6", + "gas": 21000, + "gasPrice": "33750000000", + "hash": "0xc059f4997820ea8146fb7bf6efa625a0aa81e5c091e4d6070fc74c49f279ba32", + "input": "0x", + "nonce": 0, + "to": "0x296FD682CFB84c0203CCc21cEc58530595DFCA23", + "transactionIndex": 111, + "value": "99291250000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x154e77fc6b245d1f63905511e50b4d0a5cc4bcc5a319f26ea29d6ae205e05b4c", + "s": "0x4c8b21c1a410f947d7905b93b7b751bd0afc6274d38a19f3b054e5b4e949bab1", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6290694", + "effectiveGasPrice": "33750000000", + "from": "0xb2f50ea0e761a49b5a4373295c948b0a174bd9b6", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x296fd682cfb84c0203ccc21cec58530595dfca23", + "transactionHash": "0xc059f4997820ea8146fb7bf6efa625a0aa81e5c091e4d6070fc74c49f279ba32", + "transactionIndex": 111, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb2f50ea0e761a49b5a4373295c948b0a174bd9b6", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x296fd682cfb84c0203ccc21cec58530595dfca23", + "value": "0x160c0dda58df400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc059f4997820ea8146fb7bf6efa625a0aa81e5c091e4d6070fc74c49f279ba32", + "transactionPosition": 111, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xC915551c82A3f68fE4B037a8f08A9e8809656C9f", + "gas": 21000, + "gasPrice": "33750000000", + "hash": "0x27546fb06ccb17f8eca4ea3ad9f1365e61197f36b4a67371b6542fc32b01aace", + "input": "0x", + "nonce": 22, + "to": "0x5E0F29211737a898110A3e466403B38c5F1A5d42", + "transactionIndex": 112, + "value": "8191119543787913", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x5030044e6c3a7d1c9b0a85e6c7e7f272a33125cd58bd59f17d4e2a9c3a9b8c37", + "s": "0x6b6370d389afd7b37d6da5f586cc6e39fd91cc08adb81d1399d6fe3690d47295", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6311694", + "effectiveGasPrice": "33750000000", + "from": "0xc915551c82a3f68fe4b037a8f08a9e8809656c9f", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x5e0f29211737a898110a3e466403b38c5f1a5d42", + "transactionHash": "0x27546fb06ccb17f8eca4ea3ad9f1365e61197f36b4a67371b6542fc32b01aace", + "transactionIndex": 112, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xc915551c82a3f68fe4b037a8f08a9e8809656c9f", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x5e0f29211737a898110a3e466403b38c5f1a5d42", + "value": "0x1d19c7a2b86189" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x27546fb06ccb17f8eca4ea3ad9f1365e61197f36b4a67371b6542fc32b01aace", + "transactionPosition": 112, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x4D22739335D54496c03e7FCD5dCE70603211C24a", + "gas": 80000, + "gasPrice": "33500002608", + "hash": "0x0aa9f358abd334bd789df26ca5ba3a42416ec32373b4bdee5b1a1f71accfb01d", + "input": "0xa9059cbb0000000000000000000000000211f3cedbef3143223d3acf0e589747933e85270000000000000000000000000000000000000000000000022b1c8c1227a00000", + "nonce": 10, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 113, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x1c2c99e1d04e5db8dc43c848466e694653b405650995d3bde4f8ca7395de3da9", + "s": "0x23af11a417e025bdc87f8d5bc35f4ce86a0b1bc2d25d3c2dd2adf764d03d3249", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6331881", + "effectiveGasPrice": "33500002608", + "from": "0x4d22739335d54496c03e7fcd5dce70603211c24a", + "gasUsed": "20187", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004d22739335d54496c03e7fcd5dce70603211c24a", + "0x0000000000000000000000000211f3cedbef3143223d3acf0e589747933e8527" + ], + "data": "0x0000000000000000000000000000000000000000000000022b1c8c1227a00000", + "blockNumber": 12679108, + "transactionHash": "0x0aa9f358abd334bd789df26ca5ba3a42416ec32373b4bdee5b1a1f71accfb01d", + "transactionIndex": 113, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 144, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000020000000100000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000010000000000000000000000000000000000000000000008004000000000000000000000000000000000000000000000000000000800000000000000000000000002000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0x0aa9f358abd334bd789df26ca5ba3a42416ec32373b4bdee5b1a1f71accfb01d", + "transactionIndex": 113, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x4d22739335d54496c03e7fcd5dce70603211c24a", + "callType": "call", + "gas": "0xe3f4", + "input": "0xa9059cbb0000000000000000000000000211f3cedbef3143223d3acf0e589747933e85270000000000000000000000000000000000000000000000022b1c8c1227a00000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0aa9f358abd334bd789df26ca5ba3a42416ec32373b4bdee5b1a1f71accfb01d", + "transactionPosition": 113, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFF599f17b713007c8053421Bb5Ed492cFD8601AC", + "gas": 80000, + "gasPrice": "33500002608", + "hash": "0x47d55452f349670646678ab0559f9d4d798a1561e5ee5cfc4e9f746d68c96bdb", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb8800000000000000000000000000000000000000000000000017979cfe362a0000", + "nonce": 7, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 114, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x9dab2c16fa208cf4ae7e423afc48a91d97977bd4ccc501021e3c9c79bd79e5ad", + "s": "0x488ee31ba228df20bf8fe3151eba041e0f66129472b0b1f6495b728b29be95b0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6352056", + "effectiveGasPrice": "33500002608", + "from": "0xff599f17b713007c8053421bb5ed492cfd8601ac", + "gasUsed": "20175", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ff599f17b713007c8053421bb5ed492cfd8601ac", + "0x00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88" + ], + "data": "0x00000000000000000000000000000000000000000000000017979cfe362a0000", + "blockNumber": 12679108, + "transactionHash": "0x47d55452f349670646678ab0559f9d4d798a1561e5ee5cfc4e9f746d68c96bdb", + "transactionIndex": 114, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 145, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x01008000000000000000000000000000000000000000000000000000000000200000000000000000000000000800000000000000000000000000000020000000400000000000000000000008000000000000000000000000000000000000000000400000000000000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0x47d55452f349670646678ab0559f9d4d798a1561e5ee5cfc4e9f746d68c96bdb", + "transactionIndex": 114, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xff599f17b713007c8053421bb5ed492cfd8601ac", + "callType": "call", + "gas": "0xe400", + "input": "0xa9059cbb00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb8800000000000000000000000000000000000000000000000017979cfe362a0000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x47d55452f349670646678ab0559f9d4d798a1561e5ee5cfc4e9f746d68c96bdb", + "transactionPosition": 114, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x75e89d5979E4f6Fba9F97c104c2F0AFB3F1dcB88", + "gas": 50000, + "gasPrice": "33500000000", + "hash": "0xb05e27ac9281732457ce542dbb806280bc8707373f7bfe8a32c95733c2eb422b", + "input": "0x", + "nonce": 1314287, + "to": "0x4A10Dd65D650B33e31eddfBB7E4345A6c5971CeE", + "transactionIndex": 115, + "value": "5000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xb0663c5eff1c765ff808d2f6632e1966692490b72e61060cfb2d564be486df0d", + "s": "0x3ab41c7eebe16d1ee774e3474eca921a009316bca6afacee2c03b8f18b1bfafb", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6373056", + "effectiveGasPrice": "33500000000", + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x4a10dd65d650b33e31eddfbb7e4345a6c5971cee", + "transactionHash": "0xb05e27ac9281732457ce542dbb806280bc8707373f7bfe8a32c95733c2eb422b", + "transactionIndex": 115, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "callType": "call", + "gas": "0x7148", + "input": "0x", + "to": "0x4a10dd65d650b33e31eddfbb7e4345a6c5971cee", + "value": "0x11c37937e08000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xb05e27ac9281732457ce542dbb806280bc8707373f7bfe8a32c95733c2eb422b", + "transactionPosition": 115, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x75e89d5979E4f6Fba9F97c104c2F0AFB3F1dcB88", + "gas": 50000, + "gasPrice": "33500000000", + "hash": "0x1a32ef9572edbc99490e56fafcc9f9af4e44b498f80e13ccae2bc7a4b50bf3b1", + "input": "0x", + "nonce": 1314288, + "to": "0xe2145F8c907c6aA4756215B7bE8A11D9f76aE887", + "transactionIndex": 116, + "value": "5000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe73217f415fb030119cdb0fefae1207639d78978d85fcfd983928a8ce4eec88e", + "s": "0x6fef61b595e5f7a6c5896e49a51a12eef62a36cd54f1b6ac6d14a0e468b6dc75", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6394056", + "effectiveGasPrice": "33500000000", + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xe2145f8c907c6aa4756215b7be8a11d9f76ae887", + "transactionHash": "0x1a32ef9572edbc99490e56fafcc9f9af4e44b498f80e13ccae2bc7a4b50bf3b1", + "transactionIndex": 116, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "callType": "call", + "gas": "0x7148", + "input": "0x", + "to": "0xe2145f8c907c6aa4756215b7be8a11d9f76ae887", + "value": "0x11c37937e08000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1a32ef9572edbc99490e56fafcc9f9af4e44b498f80e13ccae2bc7a4b50bf3b1", + "transactionPosition": 116, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x75e89d5979E4f6Fba9F97c104c2F0AFB3F1dcB88", + "gas": 80000, + "gasPrice": "34000000000", + "hash": "0x1555f0b00eedc7d60a81bc4e445464210956c1bde22338b5b201d673269d26c8", + "input": "0xa9059cbb000000000000000000000000128af0c2e700c0ddd96ce9b0f74812c6f71a64f90000000000000000000000000000000000000000000000000ec586b542265000", + "nonce": 1314289, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 117, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfc4ab48e4a0a1ca9d4dd1ec0ed1431afbb33a4275d9f18deacbd6125931df9fc", + "s": "0x77344ae6c548b29716133708e3d55a088bbe174b7369d8f76882fcb519c319b7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6429231", + "effectiveGasPrice": "34000000000", + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "gasUsed": "35175", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "0x000000000000000000000000128af0c2e700c0ddd96ce9b0f74812c6f71a64f9" + ], + "data": "0x0000000000000000000000000000000000000000000000000ec586b542265000", + "blockNumber": 12679108, + "transactionHash": "0x1555f0b00eedc7d60a81bc4e445464210956c1bde22338b5b201d673269d26c8", + "transactionIndex": 117, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 146, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000000000100000000000000000000000000000000000200001000000000000000000000000000000000000000000000000000000000002400000000000000000000008000000000000000000000000000000000000000000400000000000000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0x1555f0b00eedc7d60a81bc4e445464210956c1bde22338b5b201d673269d26c8", + "transactionIndex": 117, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88", + "callType": "call", + "gas": "0xe400", + "input": "0xa9059cbb000000000000000000000000128af0c2e700c0ddd96ce9b0f74812c6f71a64f90000000000000000000000000000000000000000000000000ec586b542265000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34e7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1555f0b00eedc7d60a81bc4e445464210956c1bde22338b5b201d673269d26c8", + "transactionPosition": 117, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x40fEc832b0fF29A082e95678176e1CC66805F8De", + "gas": 219680, + "gasPrice": "33000000000", + "hash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "input": "0x7c025200000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d854062600000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000000000000000000000000001fbd4135cf975b3620000000000000000000000000000000000000000000000000dfd00a756c8928800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000440800000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000104128acb08000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d85406260000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000001fbd4135cf975b36200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000164b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000002800000000000000000000000000000028000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000242e1a7d4d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a4b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 2197, + "to": "0x11111112542D85B3EF69AE05771c2dCCff4fAa26", + "transactionIndex": 118, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xdea6d10584fe397d974d204fd6caf203d886abd6ffa851e9bebdd4261e574454", + "s": "0x63fa68c58643b1500e1a2ed75aee996d0bfd4fedf2b45fc66ba09617f0ea9d59", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6581605", + "effectiveGasPrice": "33000000000", + "from": "0x40fec832b0ff29a082e95678176e1cc66805f8de", + "gasUsed": "152374", + "logs": [ + { + "address": "0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626" + ], + "data": "0x000000000000000000000000000000000000000000000001fbd4135cf975b362", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 147, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de", + "0x00000000000000000000000011111112542d85b3ef69ae05771c2dccff4faa26" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffff2a82010f68503f0c1", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 148, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xcf7058370dc4376536a58e09d619b5ff2969516c" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "42707710576" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626" + ], + "data": "0x0000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 149, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626", + "0x000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff" + ], + "data": "0x000000000000000000000000000000000000000000000001fbd4135cf975b362", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 150, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xebdAb3e7787501CAd4159D87561AEe0687A852fF", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626" + ], + "data": "0x000000000000000000000000000000000000000000000001fbd4135cf975b362fffffffffffffffffffffffffffffffffffffffffffffffff1ded361506bb46400000000000000000000000000000000000000002ac3b2ac3298ae723cb4cb7700000000000000000000000000000000000000000000002e4000a894dd0056afffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7430", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 151, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626" + ], + "data": "0x0000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 152, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + }, + { + "address": "0x11111112542D85B3EF69AE05771c2dCCff4fAa26", + "topics": [ + "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8" + ], + "data": "0x00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de0000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000000000000000000000000001fbd4135cf975b3620000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "blockNumber": 12679108, + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 153, + "removed": false, + "decoded": { + "signature": "Swapped(address,address,address,address,uint256,uint256)", + "signature_with_arg_names": "Swapped(address sender,address srcToken,address dstToken,address dstReceiver,uint256 spentAmount,uint256 returnAmount)", + "name": "Swapped", + "decoded": [ + { + "indexed": false, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x40fec832b0ff29a082e95678176e1cc66805f8de" + }, + { + "indexed": false, + "internalType": "contract IERC20", + "name": "srcToken", + "type": "address", + "decoded": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651" + }, + { + "indexed": false, + "internalType": "contract IERC20", + "name": "dstToken", + "type": "address", + "decoded": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" + }, + { + "indexed": false, + "internalType": "address", + "name": "dstReceiver", + "type": "address", + "decoded": "0x40fec832b0ff29a082e95678176e1cc66805f8de" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "spentAmount", + "type": "uint256", + "decoded": "36592894162335282018" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "returnAmount", + "type": "uint256", + "decoded": "1018144050824629148" + } + ] + } + } + ], + "logsBloom": "0x00000000000000800000000000000000000000000000000000000000280000000000000000000400000000000001000002020000080020000000000000200000000000000000000800000008000000000000000000400000000000000000000000000000000000000000000000000000200000020080044200000010000800000000000000008000000400000000000000000000000000000042000010400000020000000000000000000000000000000000000000000000000000000000000000000002000000010000000000001000080000000000000001000082000000004010200000000000000000000000000000000000010000000000000000000000", + "status": true, + "to": "0x11111112542d85b3ef69ae05771c2dccff4faa26", + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionIndex": 118, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x40fec832b0ff29a082e95678176e1cc66805f8de", + "callType": "call", + "gas": "0x2d474", + "input": "0x7c025200000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d854062600000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000000000000000000000000001fbd4135cf975b3620000000000000000000000000000000000000000000000000dfd00a756c8928800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000440800000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000104128acb08000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d85406260000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000001fbd4135cf975b36200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000164b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000002800000000000000000000000000000028000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000242e1a7d4d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a4b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x11111112542d85b3ef69ae05771c2dccff4faa26", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x260ce", + "output": "0x0000000000000000000000000000000000000000000000000e212c9eaf944b9c000000000000000000000000000000000000000000000000000000000000742a" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", + "callType": "call", + "gas": "0x2b443", + "input": "0x23b872dd00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626000000000000000000000000000000000000000000000001fbd4135cf975b362", + "to": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6369", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "callType": "delegatecall", + "gas": "0x2966b", + "input": "0x23b872dd00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626000000000000000000000000000000000000000000000001fbd4135cf975b362", + "to": "0x9f45f195232c9561a38c994d6895d3466f468b27", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4fe8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", + "callType": "call", + "gas": "0x23208", + "input": "0xd9c4535700000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000440800000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000104128acb08000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d85406260000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000001fbd4135cf975b36200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000164b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000002800000000000000000000000000000028000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000242e1a7d4d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a4b3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1bb0b", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0x21ab2", + "input": "0x128acb08000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d85406260000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000001fbd4135cf975b36200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0xebdab3e7787501cad4159d87561aee0687a852ff", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x14a82", + "output": "0x000000000000000000000000000000000000000000000001fbd4135cf975b362fffffffffffffffffffffffffffffffffffffffffffffffff1ded361506bb464" + }, + "subtraces": 4, + "traceAddress": [1, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xebdab3e7787501cad4159d87561aee0687a852ff", + "callType": "call", + "gas": "0x188f8", + "input": "0xa9059cbb000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d85406260000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xebdab3e7787501cad4159d87561aee0687a852ff", + "callType": "staticcall", + "gas": "0x1125b", + "input": "0x70a08231000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff", + "to": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xbfc", + "output": "0x00000000000000000000000000000000000000000000001c315ee974179def7a" + }, + "subtraces": 1, + "traceAddress": [1, 0, 1], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "callType": "delegatecall", + "gas": "0x10c61", + "input": "0x70a08231000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff", + "to": "0x9f45f195232c9561a38c994d6895d3466f468b27", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa18", + "output": "0x00000000000000000000000000000000000000000000001c315ee974179def7a" + }, + "subtraces": 0, + "traceAddress": [1, 0, 1, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xebdab3e7787501cad4159d87561aee0687a852ff", + "callType": "call", + "gas": "0x10391", + "input": "0xfa461e33000000000000000000000000000000000000000000000001fbd4135cf975b362fffffffffffffffffffffffffffffffffffffffffffffffff1ded361506bb464000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2251", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 2], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0xf8b2", + "input": "0xa9059cbb000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff000000000000000000000000000000000000000000000001fbd4135cf975b362", + "to": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x19b6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [1, 0, 2, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "callType": "delegatecall", + "gas": "0xf31c", + "input": "0xa9059cbb000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff000000000000000000000000000000000000000000000001fbd4135cf975b362", + "to": "0x9f45f195232c9561a38c994d6895d3466f468b27", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x17cf", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 0, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xebdab3e7787501cad4159d87561aee0687a852ff", + "callType": "staticcall", + "gas": "0xdf50", + "input": "0x70a08231000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff", + "to": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x42c", + "output": "0x00000000000000000000000000000000000000000000001e2d32fcd11113a2dc" + }, + "subtraces": 1, + "traceAddress": [1, 0, 3], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0x1571ed0bed4d987fe2b498ddbae7dfa19519f651", + "callType": "delegatecall", + "gas": "0xda22", + "input": "0x70a08231000000000000000000000000ebdab3e7787501cad4159d87561aee0687a852ff", + "to": "0x9f45f195232c9561a38c994d6895d3466f468b27", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x248", + "output": "0x00000000000000000000000000000000000000000000001e2d32fcd11113a2dc" + }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0xd1aa", + "input": "0xb3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000002800000000000000000000000000000028000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000242e1a7d4d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x31d4", "output": "0x" }, + "subtraces": 2, + "traceAddress": [1, 1], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "staticcall", + "gas": "0xc834", + "input": "0x70a08231000000000000000000000000fd3dfb524b2da40c8a6d703c62be36b5d8540626", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000e212c9eaf944b9c" + }, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0xc155", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2403", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 1, 1], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0xe212c9eaf944b9c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4f", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 1, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0x9d3b", + "input": "0xb3af37c000000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000064d1660f99000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2809", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 2], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0x90d6", + "input": "0xd1660f99000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000040fec832b0ff29a082e95678176e1cc66805f8de0000000000000000000000000000000000000000000000000e212c9eaf944b9c", + "to": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1d63", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 2, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + }, + { + "action": { + "from": "0xfd3dfb524b2da40c8a6d703c62be36b5d8540626", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x40fec832b0ff29a082e95678176e1cc66805f8de", + "value": "0xe212c9eaf944b9c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 2, 0, 0], + "transactionHash": "0x658c8106bbad919b9b3d21b8384bdaddfa7cdda57f51aa612db3908a19e0a5f1", + "transactionPosition": 118, + "type": "call" + } + ], + "decoded": { + "signature": "SwapWithJunionOnYoutubeXD_oninrjpouzas()", + "signature_with_arg_names": "SwapWithJunionOnYoutubeXD_oninrjpouzas()", + "name": "SwapWithJunionOnYoutubeXD_oninrjpouzas", + "decoded": [] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x79428986271022ebC8460D4FF6E31AC0970c1ff6", + "gas": 21000, + "gasPrice": "33000000000", + "hash": "0x85960134c5dbe5d74b63e8d6549bc892df3a608c7dbfc0a40ce0ff188a24364d", + "input": "0x", + "nonce": 14, + "to": "0x83CdfB743C6d4665ad9096304FE00eaDBda8bea5", + "transactionIndex": 119, + "value": "74722317445585480", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x6f5b4dd7d272aa1496ab21eb3474e1a13343223d1c19093f8d71a2292f39aeed", + "s": "0x48ea8f85f31ea071d242fb4dbdc43391f0f73dfd0f4577ef84cf9aa7cf20c6f4", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6602605", + "effectiveGasPrice": "33000000000", + "from": "0x79428986271022ebc8460d4ff6e31ac0970c1ff6", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x83cdfb743c6d4665ad9096304fe00eadbda8bea5", + "transactionHash": "0x85960134c5dbe5d74b63e8d6549bc892df3a608c7dbfc0a40ce0ff188a24364d", + "transactionIndex": 119, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x79428986271022ebc8460d4ff6e31ac0970c1ff6", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x83cdfb743c6d4665ad9096304fe00eadbda8bea5", + "value": "0x109778d44235a48" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x85960134c5dbe5d74b63e8d6549bc892df3a608c7dbfc0a40ce0ff188a24364d", + "transactionPosition": 119, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xaAD2AcdDA7934ee7ba031383d38cA7c1B027e065", + "gas": 94192, + "gasPrice": "33000000000", + "hash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "input": "0x1249c58b", + "nonce": 33, + "to": "0xa58e822De1517aAE7114714fB354Ee853Cd35780", + "transactionIndex": 120, + "value": "1150000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x18567f8e38b89917b5fa3a3a98e5210431e71aee00c126524f9ea8ecbb018c4a", + "s": "0x306eaf136bf2fed32cb42a5b981323ed516355abc1c39e146218ec66dd79fdff", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6660476", + "effectiveGasPrice": "33000000000", + "from": "0xaad2acdda7934ee7ba031383d38ca7c1b027e065", + "gasUsed": "57871", + "logs": [ + { + "address": "0xa58e822De1517aAE7114714fB354Ee853Cd35780", + "topics": [ + "0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f" + ], + "data": "0x000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e0650000000000000000000000000000000000000000000000000ff59ee833b300000000000000000000000000000000000000000000000000000ff59ee833b30000", + "blockNumber": 12679108, + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionIndex": 120, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 154, + "removed": false, + "decoded": { + "signature": "Mint(address,uint256,uint256)", + "signature_with_arg_names": "Mint(address minter,uint256 mintAmount,uint256 mintTokens)", + "name": "Mint", + "decoded": [ + { + "indexed": false, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0xaad2acdda7934ee7ba031383d38ca7c1b027e065" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintAmount", + "type": "uint256", + "decoded": "1150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintTokens", + "type": "uint256", + "decoded": "1150000000000000000" + } + ] + } + }, + { + "address": "0xa58e822De1517aAE7114714fB354Ee853Cd35780", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a58e822de1517aae7114714fb354ee853cd35780", + "0x000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e065" + ], + "data": "0x0000000000000000000000000000000000000000000000000ff59ee833b30000", + "blockNumber": 12679108, + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionIndex": 120, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 155, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xa58e822de1517aae7114714fb354ee853cd35780" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xaad2acdda7934ee7ba031383d38ca7c1b027e065" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "1150000000000000000" + } + ] + } + } + ], + "logsBloom": "0x40000000000000000000000000000000000000000000000000000010000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000008000000000000000000000000000000000000004000000400000000008000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000400000000000000000000000000000000000000003000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800", + "status": true, + "to": "0xa58e822de1517aae7114714fb354ee853cd35780", + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionIndex": 120, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xaad2acdda7934ee7ba031383d38ca7c1b027e065", + "callType": "call", + "gas": "0x11da8", + "input": "0x1249c58b", + "to": "0xa58e822de1517aae7114714fb354ee853cd35780", + "value": "0xff59ee833b30000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ab7", + "output": "0x0000000000000000000000000000000000000000000000000ff59ee833b30000" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionPosition": 120, + "type": "call" + }, + { + "action": { + "from": "0xa58e822de1517aae7114714fb354ee853cd35780", + "callType": "call", + "gas": "0xf13b", + "input": "0x4ef4c3e1000000000000000000000000a58e822de1517aae7114714fb354ee853cd35780000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e0650000000000000000000000000000000000000000000000000ff59ee833b30000", + "to": "0xbb7d94a423f4978545ecf73161f0678e8afd1a92", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x30b1", + "output": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionPosition": 120, + "type": "call" + }, + { + "action": { + "from": "0xbb7d94a423f4978545ecf73161f0678e8afd1a92", + "callType": "delegatecall", + "gas": "0xda33", + "input": "0x4ef4c3e1000000000000000000000000a58e822de1517aae7114714fb354ee853cd35780000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e0650000000000000000000000000000000000000000000000000ff59ee833b30000", + "to": "0xd819d96f9d28ea85c1dd78e66d7241134e8d4ab4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1c60", + "output": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionPosition": 120, + "type": "call" + }, + { + "action": { + "from": "0xa58e822de1517aae7114714fb354ee853cd35780", + "callType": "call", + "gas": "0x8626", + "input": "0x41c728b9000000000000000000000000a58e822de1517aae7114714fb354ee853cd35780000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e0650000000000000000000000000000000000000000000000000ff59ee833b300000000000000000000000000000000000000000000000000000ff59ee833b30000", + "to": "0xbb7d94a423f4978545ecf73161f0678e8afd1a92", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3e3", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionPosition": 120, + "type": "call" + }, + { + "action": { + "from": "0xbb7d94a423f4978545ecf73161f0678e8afd1a92", + "callType": "delegatecall", + "gas": "0x8212", + "input": "0x41c728b9000000000000000000000000a58e822de1517aae7114714fb354ee853cd35780000000000000000000000000aad2acdda7934ee7ba031383d38ca7c1b027e0650000000000000000000000000000000000000000000000000ff59ee833b300000000000000000000000000000000000000000000000000000ff59ee833b30000", + "to": "0xd819d96f9d28ea85c1dd78e66d7241134e8d4ab4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x17e", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xe8ce0e41fd8db8a602ebe39c3d0aca2feb59621d38e87bf598f342489e75e828", + "transactionPosition": 120, + "type": "call" + } + ], + "decoded": { + "signature": "mint()", + "signature_with_arg_names": "mint()", + "name": "mint", + "decoded": [] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xad6EE7C40d7D80a6c404E82e77Cde5c5088E98a5", + "gas": 99262, + "gasPrice": "33000000000", + "hash": "0x4c73601990933b5887e6dbce5fedb3660197f6ccdbcc536e868882b70b340f53", + "input": "0xa9059cbb000000000000000000000000f8e092f75be688e89e55cc0df14c930f38efcaca0000000000000000000000000000000000000000000000000000000e7c6c1440", + "nonce": 2219, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 121, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xe55b3fa36c1cdf6775c7ece9215a451882663db10c4dc3b78596e6747958cc67", + "s": "0x670e02b662fbc86813310944cd2a0059688767ec4cd388bd051324a575849437", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6726113", + "effectiveGasPrice": "33000000000", + "from": "0xad6ee7c40d7d80a6c404e82e77cde5c5088e98a5", + "gasUsed": "65637", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ad6ee7c40d7d80a6c404e82e77cde5c5088e98a5", + "0x000000000000000000000000f8e092f75be688e89e55cc0df14c930f38efcaca" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000e7c6c1440", + "blockNumber": 12679108, + "transactionHash": "0x4c73601990933b5887e6dbce5fedb3660197f6ccdbcc536e868882b70b340f53", + "transactionIndex": 121, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 156, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000008000008000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000010000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000002000000000000000000000000000000001800000020000000000000200000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0x4c73601990933b5887e6dbce5fedb3660197f6ccdbcc536e868882b70b340f53", + "transactionIndex": 121, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xad6ee7c40d7d80a6c404e82e77cde5c5088e98a5", + "callType": "call", + "gas": "0x12f4a", + "input": "0xa9059cbb000000000000000000000000f8e092f75be688e89e55cc0df14c930f38efcaca0000000000000000000000000000000000000000000000000000000e7c6c1440", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x4c73601990933b5887e6dbce5fedb3660197f6ccdbcc536e868882b70b340f53", + "transactionPosition": 121, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x10eb2", + "input": "0xa9059cbb000000000000000000000000f8e092f75be688e89e55cc0df14c930f38efcaca0000000000000000000000000000000000000000000000000000000e7c6c1440", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4c73601990933b5887e6dbce5fedb3660197f6ccdbcc536e868882b70b340f53", + "transactionPosition": 121, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8ccf5c620B4aFF4a9aDB61D5b482d7aC534E8e7B", + "gas": 223121, + "gasPrice": "33000000000", + "hash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "input": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000c307846656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000018de76816d80000000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000128d9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a00000000000000000000000000000000000000000000000012", + "nonce": 10, + "to": "0x881D40237659C251811CEC9c364ef91dC08D300C", + "transactionIndex": 122, + "value": "50000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xba50483e16e8164b0d2ed4ced4ac0d286bacc34ff5f801177408b5d5357a5446", + "s": "0x24fed501285c708acc2e3fcc007c50f57f47ed94150ec626f1720bcbe00fc2b4", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "6908559", + "effectiveGasPrice": "33000000000", + "from": "0x8ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b", + "gasUsed": "182446", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff" + ], + "data": "0x00000000000000000000000000000000000000000000000000b014d4c6ae2800", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 157, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff", + "0x000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f" + ], + "data": "0x00000000000000000000000000000000000000000000000000b014d4c6ae2800", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 158, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "0x00000000000000000000000074de5d4fcbf63e00296fd95d33236b9794016631" + ], + "data": "0x00000000000000000000000000000000000000000000000522db80e0cee53671", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 159, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "address": "0xC3D03e4F041Fd4cD388c549Ee2A29a9E5075882f", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000050ad222e98b06d79ce52fa000000000000000000000000000000000000000000000ac5813bfb21cc221948", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 160, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "97531665517632795169411834" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "50866985723994329717064" + } + ] + } + }, + { + "address": "0xC3D03e4F041Fd4cD388c549Ee2A29a9E5075882f", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff", + "0x00000000000000000000000074de5d4fcbf63e00296fd95d33236b9794016631" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b014d4c6ae280000000000000000000000000000000000000000000000000522db80e0cee536710000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 161, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xdef1c0ded9bec7f1a1670819833240f027b25eff" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "49562500000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "94745463288769099377" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x74de5d4fcbf63e00296fd95d33236b9794016631" + } + ] + } + }, + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000074de5d4fcbf63e00296fd95d33236b9794016631", + "0x0000000000000000000000008ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b" + ], + "data": "0x00000000000000000000000000000000000000000000000522db80e0cee53671", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 162, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "address": "0x881D40237659C251811CEC9c364ef91dC08D300C", + "topics": [ + "0xbeee1e6e7fe307ddcf84b0a16137a4430ad5e2480fc4f4a8e250ab56ccd7630d", + "0xa8dc30b66c6d4a8aac3d15925bfca09e42cac4a00c50f9949154b045088e2ac2", + "0x0000000000000000000000008ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b" + ], + "data": "0x", + "blockNumber": 12679108, + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 163, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00200000000000001000000080000000000000020000000000000000000000000000010000000000000010020000000002008000080008000000000004000000000000000000002000020008000000200000000000000000200004008000000010000000000000000000000000000040000000000000000000000010000000000000000000000020020000000000000000000001000000080020004008000000000000000000000000004000000000000000000000000000000000000000000000000042000400000000000000000000000002000000001000000000000000000020200000000000000000040000000000000000000800400000000000001000", + "status": true, + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionIndex": 122, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b", + "callType": "call", + "gas": "0x2ffb1", + "input": "0x5f5755290000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000c307846656544796e616d69630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000018de76816d80000000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000128d9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a00000000000000000000000000000000000000000000000012", + "to": "0x881d40237659c251811cec9c364ef91dc08d300c", + "value": "0xb1a2bc2ec50000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2cf5a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x881d40237659c251811cec9c364ef91dc08d300c", + "callType": "call", + "gas": "0x296c7", + "input": "0xe35473350000000000000000000000003d1d55c23dfc759c5ae48500ca88ddf477b3c9e50000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000028492f5f0370000000000000000000000008ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000018de76816d80000000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000128d9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "value": "0xb1a2bc2ec50000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x269be", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "callType": "delegatecall", + "gas": "0x27838", + "input": "0x92f5f0370000000000000000000000008ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000018de76816d80000000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000128d9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a000000000000000000000000000000000000000000000000", + "to": "0x3d1d55c23dfc759c5ae48500ca88ddf477b3c9e5", + "value": "0xb1a2bc2ec50000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x254b1", "output": "0x" }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "callType": "call", + "gas": "0x242d9", + "input": "0xd9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a", + "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "value": "0xb014d4c6ae2800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x193bc", + "output": "0x00000000000000000000000000000000000000000000000522db80e0cee53671" + }, + "subtraces": 1, + "traceAddress": [0, 0, 0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "delegatecall", + "gas": "0x2245b", + "input": "0xd9627aa4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000b014d4c6ae2800000000000000000000000000000000000000000000000005088f6ef0cac1e88d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f869584cd00000000000000000000000011ededebf63bef0ea2d2d071bdf88f71543ec6fb0000000000000000000000000000000000000000000000b126b4da7360d0d21a", + "to": "0xf9b30557afcf76ea82c04015d80057fa2147dfa9", + "value": "0xb014d4c6ae2800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x17d42", + "output": "0x00000000000000000000000000000000000000000000000522db80e0cee53671" + }, + "subtraces": 4, + "traceAddress": [0, 0, 0, 0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x1f155", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xb014d4c6ae2800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1ada", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x1d624", + "input": "0xa9059cbb000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f00000000000000000000000000000000000000000000000000b014d4c6ae2800", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 1], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "staticcall", + "gas": "0x1acd8", + "input": "0x0902f1ac", + "to": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9d5", + "output": "0x00000000000000000000000000000000000000000050ad275174314e48b3896b000000000000000000000000000000000000000000000ac5808be64d0573f1480000000000000000000000000000000000000000000000000000000060d0d201" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 2], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", + "callType": "call", + "gas": "0x1a145", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000522db80e0cee53671000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xffe2", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 0, 0, 0, 3], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "callType": "call", + "gas": "0x166e7", + "input": "0xa9059cbb00000000000000000000000074de5d4fcbf63e00296fd95d33236b979401663100000000000000000000000000000000000000000000000522db80e0cee53671", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x75de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 3, 0], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "callType": "staticcall", + "gas": "0xf062", + "input": "0x70a08231000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25a", + "output": "0x00000000000000000000000000000000000000000050ad222e98b06d79ce52fa" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 3, 1], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "callType": "staticcall", + "gas": "0xec6a", + "input": "0x70a08231000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000ac5813bfb21cc221948" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0, 3, 2], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "callType": "call", + "gas": "0x8fde", + "input": "0x", + "to": "0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb", + "value": "0x18de76816d800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "callType": "staticcall", + "gas": "0x8d49", + "input": "0x70a0823100000000000000000000000074de5d4fcbf63e00296fd95d33236b9794016631", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x25a", + "output": "0x00000000000000000000000000000000000000000000000522db80e0cee53671" + }, + "subtraces": 0, + "traceAddress": [0, 0, 2], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + }, + { + "action": { + "from": "0x74de5d4fcbf63e00296fd95d33236b9794016631", + "callType": "call", + "gas": "0x8639", + "input": "0xa9059cbb0000000000000000000000008ccf5c620b4aff4a9adb61d5b482d7ac534e8e7b00000000000000000000000000000000000000000000000522db80e0cee53671", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x631e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0x04a590f5a1a740dbd3d3c97be551d0e0cd883ebf72e01c1df901aa14cf46d3ce", + "transactionPosition": 122, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xac1819799C52d022460e0598c791A1DE753C1184", + "gas": 258297, + "gasPrice": "33000000000", + "hash": "0xe9d9ed36a91fbef2ce3190c36cdbc12c63ae188e3f8a60698c3cb7edf57ec2d2", + "input": "0xabc6fd0b", + "nonce": 38, + "to": "0xa237Bb9cf4d92FB174AE1b3658e9eBd2c7c241ab", + "transactionIndex": 123, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3c79839627ced5dade70e3cc04af79d9af5f799bf7211f36207bbd11e4aa79a3", + "s": "0x3863c3f85a15871bac9a3f5f95abe27f7d7746c7b1305ad917959166e3ca853e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7080757", + "effectiveGasPrice": "33000000000", + "from": "0xac1819799c52d022460e0598c791a1de753c1184", + "gasUsed": "172198", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa237bb9cf4d92fb174ae1b3658e9ebd2c7c241ab", + "transactionHash": "0xe9d9ed36a91fbef2ce3190c36cdbc12c63ae188e3f8a60698c3cb7edf57ec2d2", + "transactionIndex": 123, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xac1819799c52d022460e0598c791a1de753c1184", + "callType": "call", + "gas": "0x39eb1", + "input": "0xabc6fd0b", + "to": "0xa237bb9cf4d92fb174ae1b3658e9ebd2c7c241ab", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x24e5e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe9d9ed36a91fbef2ce3190c36cdbc12c63ae188e3f8a60698c3cb7edf57ec2d2", + "transactionPosition": 123, + "type": "call" + } + ], + "decoded": { + "signature": "disburse()", + "signature_with_arg_names": "disburse()", + "name": "disburse", + "decoded": [] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x2EBd814652A69245c386c9db723834b5a552367E", + "gas": 78736, + "gasPrice": "33000000000", + "hash": "0x84b2ddcf0c80c412087bd260160570e5de79199474a3b752e56a3f366247419d", + "input": "0xa9059cbb00000000000000000000000060c06887a19a77988916b435b0ab3717ab6d2e2900000000000000000000000000000000000000000000002489a104feb5480000", + "nonce": 633, + "to": "0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71", + "transactionIndex": 124, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xe1e0d02f550d0913aa778d51ecceaaa6cc4fef8cc47888fd258132ce6e1abc00", + "s": "0x35d629a6f35b0c809e11837197422398fb43ceae1e3c0ea27dc1c4d2f6a27d5", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7133248", + "effectiveGasPrice": "33000000000", + "from": "0x2ebd814652a69245c386c9db723834b5a552367e", + "gasUsed": "52491", + "logs": [ + { + "address": "0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002ebd814652a69245c386c9db723834b5a552367e", + "0x00000000000000000000000060c06887a19a77988916b435b0ab3717ab6d2e29" + ], + "data": "0x00000000000000000000000000000000000000000000002489a104feb5480000", + "blockNumber": 12679108, + "transactionHash": "0x84b2ddcf0c80c412087bd260160570e5de79199474a3b752e56a3f366247419d", + "transactionIndex": 124, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 164, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x2ebd814652a69245c386c9db723834b5a552367e" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x60c06887a19a77988916b435b0ab3717ab6d2e29" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "674000000000000000000" + } + ] + } + } + ], + "logsBloom": "0x080000000000000000000000000000000000000000000000000000000000000000100000002000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c0000000000000000000000000000000000000000021000000000000100000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71", + "transactionHash": "0x84b2ddcf0c80c412087bd260160570e5de79199474a3b752e56a3f366247419d", + "transactionIndex": 124, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x2ebd814652a69245c386c9db723834b5a552367e", + "callType": "call", + "gas": "0xdf04", + "input": "0xa9059cbb00000000000000000000000060c06887a19a77988916b435b0ab3717ab6d2e2900000000000000000000000000000000000000000000002489a104feb5480000", + "to": "0xea1ea0972fa092dd463f2968f9bb51cc4c981d71", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x787f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x84b2ddcf0c80c412087bd260160570e5de79199474a3b752e56a3f366247419d", + "transactionPosition": 124, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0x60c06887a19a77988916b435b0ab3717ab6d2e29" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "674000000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xaa73A811A4898ca0E116376BE752B3960D554021", + "gas": 243085, + "gasPrice": "33000000000", + "hash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "input": "0x3805550f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008e8f908e584088f2980b901602871b9ab01dd21e1010bf44dcd308f9a6cd6d8647fa555b6229493156ff4189ff54e1d78b2ad618ebd95d291ce8749b5a327ca0d3652fa01f1563bece2667ca68f98e1eb04f937b9a8a2150d001568dd10f4099b54022bf0161fe9346670e9f1e9d49fbbb7865a97fa1dbe46d3ce14bf16f6f5fe4d570fafeb4d97f1092a76ad5e9d78c0820bfd67d25f7d16dd52abdaea394c9ad7bda287f944b4ee0dd3daa70b3cb5427ab94ed9574732d21addd5d41b6f8a22a069598c54f355a97d2dff366838277ba354ded29b173825c8b0604f3f0236f83e08c37dd598e75eddbca784bb9f4093085406ad39827df8aa55da7fe8710a2443002596eed888bd2c54d369365535b305c3a12c35e3e60ed9d75d7e59f8b454932033e945d4a99073b5358a0ec47d90ab45295bf4ced0bceb547813a8b912f3584cd5c4e3e587141c62ab8730016c0b5748695131b0c3098266cd270cb7f66929c62a53630726828c1bf31783f3b14a8460d04636a071eaf83e6598335de86d05dfc00fda90ea52ea468837104c35a12bb1edd137d8a0fe8a159c89b2a9cd5d1907cb4f3467686d232574716d8e0d4802b93a2c4f4398b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bdb9043cf90439f8f1a00b68bd5824f07694daf8a1129feb535fc72752d9d002f3f5a8b45c83d7dc4011a09fc0fc53c7d4507847ef3ac5369811ecbb7e7dbc53d388724811726a332ccaa0a04d6145cdda0b8839220859ab3b650e99eb69f4a7fd65de9507bfb071811daee6a0ff526b11cb3c20a8d4c12a288a60bae093fc8174b82b96562a3b4f665283160ca0e62af5aa6cd272de8dd8e771fde15ac7751cdb8024aca98f4e3173393ebc8185a03f8fd8555a5f6b47064d499322b0b6788ba0ffe3c41c950455fa2b43ce978cf38080a02215e9f223b89d6bd9019f13550a5d2db226dc2c43909dd40d636a27db0f7e9c8080808080808080f851a079ddcc15d34834dbe40782eedf7fd6ee50e822e800ef3f46c102c84ce9af902aa04845ab9a521d6c036796cae03fcb20fae49b295a42585526a2ed21accf75612f808080808080808080808080808080f902f020b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bd82005080000000000000000000000000000000000000000000000000", + "nonce": 8338, + "to": "0xA0c68C638235ee32657e8f720a23ceC1bFc77C77", + "transactionIndex": 125, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x12c007e084bdcbc0f73e752ffcf329d7d929fa8f5b0f09fc9ccbc0a04ce708d4", + "s": "0x2d7e39e7e61482a869bb45f839a28a6d6e4105bbfb1beae083d2fee37c644a8", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7358865", + "effectiveGasPrice": "33000000000", + "from": "0xaa73a811a4898ca0e116376be752b3960d554021", + "gasUsed": "225617", + "logs": [ + { + "address": "0x8484Ef722627bf18ca5Ae6BcF031c23E6e922B30", + "topics": [ + "0x0fc0eed41f72d3da77d0f53b9594fc7073acd15ee9d7c536819a70a67c57ef3c", + "0x000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021" + ], + "data": "0x00000000000000000000000000000000000000000000000102afddb957f35da9", + "blockNumber": 12679108, + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionIndex": 125, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 165, + "removed": false, + "decoded": { + "signature": "ExitedEther(address,uint256)", + "signature_with_arg_names": "ExitedEther(address indexed exitor,uint256 amount)", + "name": "ExitedEther", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "exitor", + "type": "address", + "decoded": "0xaa73a811a4898ca0e116376be752b3960d554021" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "18640361170824027561" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000800000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000080000000000000000808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000", + "status": true, + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionIndex": 125, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xaa73a811a4898ca0e116376be752b3960d554021", + "callType": "call", + "gas": "0x30269", + "input": "0x3805550f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008e8f908e584088f2980b901602871b9ab01dd21e1010bf44dcd308f9a6cd6d8647fa555b6229493156ff4189ff54e1d78b2ad618ebd95d291ce8749b5a327ca0d3652fa01f1563bece2667ca68f98e1eb04f937b9a8a2150d001568dd10f4099b54022bf0161fe9346670e9f1e9d49fbbb7865a97fa1dbe46d3ce14bf16f6f5fe4d570fafeb4d97f1092a76ad5e9d78c0820bfd67d25f7d16dd52abdaea394c9ad7bda287f944b4ee0dd3daa70b3cb5427ab94ed9574732d21addd5d41b6f8a22a069598c54f355a97d2dff366838277ba354ded29b173825c8b0604f3f0236f83e08c37dd598e75eddbca784bb9f4093085406ad39827df8aa55da7fe8710a2443002596eed888bd2c54d369365535b305c3a12c35e3e60ed9d75d7e59f8b454932033e945d4a99073b5358a0ec47d90ab45295bf4ced0bceb547813a8b912f3584cd5c4e3e587141c62ab8730016c0b5748695131b0c3098266cd270cb7f66929c62a53630726828c1bf31783f3b14a8460d04636a071eaf83e6598335de86d05dfc00fda90ea52ea468837104c35a12bb1edd137d8a0fe8a159c89b2a9cd5d1907cb4f3467686d232574716d8e0d4802b93a2c4f4398b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bdb9043cf90439f8f1a00b68bd5824f07694daf8a1129feb535fc72752d9d002f3f5a8b45c83d7dc4011a09fc0fc53c7d4507847ef3ac5369811ecbb7e7dbc53d388724811726a332ccaa0a04d6145cdda0b8839220859ab3b650e99eb69f4a7fd65de9507bfb071811daee6a0ff526b11cb3c20a8d4c12a288a60bae093fc8174b82b96562a3b4f665283160ca0e62af5aa6cd272de8dd8e771fde15ac7751cdb8024aca98f4e3173393ebc8185a03f8fd8555a5f6b47064d499322b0b6788ba0ffe3c41c950455fa2b43ce978cf38080a02215e9f223b89d6bd9019f13550a5d2db226dc2c43909dd40d636a27db0f7e9c8080808080808080f851a079ddcc15d34834dbe40782eedf7fd6ee50e822e800ef3f46c102c84ce9af902aa04845ab9a521d6c036796cae03fcb20fae49b295a42585526a2ed21accf75612f808080808080808080808080808080f902f020b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bd82005080000000000000000000000000000000000000000000000000", + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2be2d", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "delegatecall", + "gas": "0x2cf0e", + "input": "0x3805550f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008e8f908e584088f2980b901602871b9ab01dd21e1010bf44dcd308f9a6cd6d8647fa555b6229493156ff4189ff54e1d78b2ad618ebd95d291ce8749b5a327ca0d3652fa01f1563bece2667ca68f98e1eb04f937b9a8a2150d001568dd10f4099b54022bf0161fe9346670e9f1e9d49fbbb7865a97fa1dbe46d3ce14bf16f6f5fe4d570fafeb4d97f1092a76ad5e9d78c0820bfd67d25f7d16dd52abdaea394c9ad7bda287f944b4ee0dd3daa70b3cb5427ab94ed9574732d21addd5d41b6f8a22a069598c54f355a97d2dff366838277ba354ded29b173825c8b0604f3f0236f83e08c37dd598e75eddbca784bb9f4093085406ad39827df8aa55da7fe8710a2443002596eed888bd2c54d369365535b305c3a12c35e3e60ed9d75d7e59f8b454932033e945d4a99073b5358a0ec47d90ab45295bf4ced0bceb547813a8b912f3584cd5c4e3e587141c62ab8730016c0b5748695131b0c3098266cd270cb7f66929c62a53630726828c1bf31783f3b14a8460d04636a071eaf83e6598335de86d05dfc00fda90ea52ea468837104c35a12bb1edd137d8a0fe8a159c89b2a9cd5d1907cb4f3467686d232574716d8e0d4802b93a2c4f4398b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bdb9043cf90439f8f1a00b68bd5824f07694daf8a1129feb535fc72752d9d002f3f5a8b45c83d7dc4011a09fc0fc53c7d4507847ef3ac5369811ecbb7e7dbc53d388724811726a332ccaa0a04d6145cdda0b8839220859ab3b650e99eb69f4a7fd65de9507bfb071811daee6a0ff526b11cb3c20a8d4c12a288a60bae093fc8174b82b96562a3b4f665283160ca0e62af5aa6cd272de8dd8e771fde15ac7751cdb8024aca98f4e3173393ebc8185a03f8fd8555a5f6b47064d499322b0b6788ba0ffe3c41c950455fa2b43ce978cf38080a02215e9f223b89d6bd9019f13550a5d2db226dc2c43909dd40d636a27db0f7e9c8080808080808080f851a079ddcc15d34834dbe40782eedf7fd6ee50e822e800ef3f46c102c84ce9af902aa04845ab9a521d6c036796cae03fcb20fae49b295a42585526a2ed21accf75612f808080808080808080808080808080f902f020b902ecf902e901840130cbc4b9010000000000000000000000000000000000000800000000000000000000000040000000000000000000000000000000000000008000000000000000000000000004000000000000000000400008000000800000000000000000000100000000000000080000020000000000000000000800000000000000000080000010000000000000000000000000000000000000000000010000000000000000000000000000200000000000000000000000000000000000000000000000000000000000004000000002000000000001000000000000000000000000000000100000000020000000000000000000000000000000000090000000000000000000000000100000f901ddf89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9f9013d940000000000000000000000000000000000001010f884a04dfe1bbbcf077ddc3e01291eea2d5c70c2b422b415d95645b9adcfd678cb1d63a00000000000000000000000000000000000000000000000000000000000001010a0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000004923de87853e95751a87eafe957a88a564387dacb8a000000000000000000000000000000000000000000000000000001181fd6974000000000000000000000000000000000000000000000000000021590fa7707c0000000000000000000000000000000000000000000000000001d9365b4c7d53bd0000000000000000000000000000000000000000000000000021478daa07080000000000000000000000000000000000000000000000000001d947dd49e6c7bd82005080000000000000000000000000000000000000000000000000", + "to": "0x296ac8fb39279bbcff6edc9fddf1d2f4aea1631b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2a784", "output": "0x" }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "staticcall", + "gas": "0xdcac", + "input": "0x41539d4a00000000000000000000000000000000000000000000000000000000088f2980", + "to": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2afe", + "output": "0xdf8c92552ecf462f637e6dc7ff3063c5943b9284ca701089923632c48a1772330000000000000000000000000000000000000000000000000000000000f3a9a30000000000000000000000000000000000000000000000000000000000f3b1a20000000000000000000000000000000000000000000000000000000060d049dd0000000000000000000000007b5000af8ab69fd59eb0d4f5762bff57c9c04385" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "call", + "gas": "0x91f3", + "input": "0x8274664f000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009df89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9000000", + "to": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x6c80", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + }, + { + "action": { + "from": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "callType": "delegatecall", + "gas": "0x602a", + "input": "0x8274664f000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009df89b947ceb23fd6bc0add59e62ac25578270cff1b9f619f863a0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa0000000000000000000000000aa73a811a4898ca0e116376be752b3960d554021a00000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000102afddb957f35da9000000", + "to": "0x499a865ac595e6167482d2bd5a224876bab85ab4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5769", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 0], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + }, + { + "action": { + "from": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xaa73a811a4898ca0e116376be752b3960d554021", + "value": "0x102afddb957f35da9" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 0, 0], + "transactionHash": "0x1d4553c6fb4d5aba81f8329bb255e15306b467ff6de6d1fe0557a9acf5228953", + "transactionPosition": 125, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x85793fD8d419680bCA1109b0349F5125156c21d0", + "gas": 99244, + "gasPrice": "33000000000", + "hash": "0xa5f6ac21fdc23072ae20d240ed0d42706053ecfab15a77f03e331c543e736219", + "input": "0xa9059cbb000000000000000000000000570a648d1f6b980e276b4685c56cdb569ebd85110000000000000000000000000000000000000000000000000000000004f64b50", + "nonce": 301, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 126, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xd8f8fbaca0afdb5d79bd49b1df0661b07f8bc8191e1a00da0620fa367b1ca31d", + "s": "0x1708de4d162eb397ff7e76edab3bf1aea2525d60ccd73d1af7c77b5f33c782f", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7424490", + "effectiveGasPrice": "33000000000", + "from": "0x85793fd8d419680bca1109b0349f5125156c21d0", + "gasUsed": "65625", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000085793fd8d419680bca1109b0349f5125156c21d0", + "0x000000000000000000000000570a648d1f6b980e276b4685c56cdb569ebd8511" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000004f64b50", + "blockNumber": 12679108, + "transactionHash": "0xa5f6ac21fdc23072ae20d240ed0d42706053ecfab15a77f03e331c543e736219", + "transactionIndex": 126, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 166, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000020000000000000020000100000000000000000008000008000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000010000000000000000000000000000000000000000000000000010008000000000000000000000000000000200000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0xa5f6ac21fdc23072ae20d240ed0d42706053ecfab15a77f03e331c543e736219", + "transactionIndex": 126, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x85793fd8d419680bca1109b0349f5125156c21d0", + "callType": "call", + "gas": "0x12f44", + "input": "0xa9059cbb000000000000000000000000570a648d1f6b980e276b4685c56cdb569ebd85110000000000000000000000000000000000000000000000000000000004f64b50", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xa5f6ac21fdc23072ae20d240ed0d42706053ecfab15a77f03e331c543e736219", + "transactionPosition": 126, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x10eac", + "input": "0xa9059cbb000000000000000000000000570a648d1f6b980e276b4685c56cdb569ebd85110000000000000000000000000000000000000000000000000000000004f64b50", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xa5f6ac21fdc23072ae20d240ed0d42706053ecfab15a77f03e331c543e736219", + "transactionPosition": 126, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9C0d72f2aC26420Cb7EEB155bF401b672840e87b", + "gas": 60760, + "gasPrice": "33000000000", + "hash": "0xd48ad6954cee1252c66d219801cef494de3889bbf628f9e700b428364084d8fc", + "input": "0x095ea7b300000000000000000000000016772a7f4a3ca291c21b8ace76f9332ddffbb5efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 2497, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 127, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2d8e05aa4760f1d6ab571e6c983f416d9bb7ff046d950a4ab3f6eb16790b5258", + "s": "0x5360f59689aeeded990da3c6dac54ba9fc7755829b5ced4a2b8faf9aef1ebbdc", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7484801", + "effectiveGasPrice": "33000000000", + "from": "0x9c0d72f2ac26420cb7eeb155bf401b672840e87b", + "gasUsed": "60311", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000009c0d72f2ac26420cb7eeb155bf401b672840e87b", + "0x00000000000000000000000016772a7f4a3ca291c21b8ace76f9332ddffbb5ef" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0xd48ad6954cee1252c66d219801cef494de3889bbf628f9e700b428364084d8fc", + "transactionIndex": 127, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 167, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xcf7058370dc4376536a58e09d619b5ff2969516c" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "42707710576" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000080000000000000000000000000000000000000000000000002000000000000000000000000000000000000000200000000000000000000008000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000020000000120000004000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0xd48ad6954cee1252c66d219801cef494de3889bbf628f9e700b428364084d8fc", + "transactionIndex": 127, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9c0d72f2ac26420cb7eeb155bf401b672840e87b", + "callType": "call", + "gas": "0x97a0", + "input": "0x095ea7b300000000000000000000000016772a7f4a3ca291c21b8ace76f9332ddffbb5efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x95df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xd48ad6954cee1252c66d219801cef494de3889bbf628f9e700b428364084d8fc", + "transactionPosition": 127, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x7966", + "input": "0x095ea7b300000000000000000000000016772a7f4a3ca291c21b8ace76f9332ddffbb5efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xd48ad6954cee1252c66d219801cef494de3889bbf628f9e700b428364084d8fc", + "transactionPosition": 127, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address arg1,uint256 arg2)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x16772a7f4a3ca291c21b8ace76f9332ddffbb5ef" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xDe6D228ecF106dFAF25c41Cb0292f3c5b53F1DE7", + "gas": 21000, + "gasPrice": "33000000000", + "hash": "0xc0b884a403dbb0b4202b2f7df198c884db44fa397cf6d302737459a92e676aed", + "input": "0x", + "nonce": 0, + "to": "0x606de087c52A1e85E8C8922909f2eFB6F714aB04", + "transactionIndex": 128, + "value": "332535002527673583", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xa2d2dc1d9fbe6113bd2eee7c69dd6975ab2b77f8e8e4fc4bff171788a8d681f8", + "s": "0x3c58dc55efbfffd8b62aa1e3a5e7154693a5b3378f7257b14d21edd18145257b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7505801", + "effectiveGasPrice": "33000000000", + "from": "0xde6d228ecf106dfaf25c41cb0292f3c5b53f1de7", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x606de087c52a1e85e8c8922909f2efb6f714ab04", + "transactionHash": "0xc0b884a403dbb0b4202b2f7df198c884db44fa397cf6d302737459a92e676aed", + "transactionIndex": 128, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xde6d228ecf106dfaf25c41cb0292f3c5b53f1de7", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x606de087c52a1e85e8c8922909f2efb6f714ab04", + "value": "0x49d66d2ad0bacef" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc0b884a403dbb0b4202b2f7df198c884db44fa397cf6d302737459a92e676aed", + "transactionPosition": 128, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x33F0F57DCd106DF64FA2B8991cd6bDAe8f53dcf5", + "gas": 74914, + "gasPrice": "33000000000", + "hash": "0xde102efe0b9ea4e1b34eeb4d1fc85f57629f8c0a7f8162d396b4b161497241d7", + "input": "0xa8a41c700000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b00000000000000000000000033f0f57dcd106df64fa2b8991cd6bdae8f53dcf500000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c0107300000000000000000000000085f740958906b317de6ed79663012859067e745b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002260000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e8ec6221c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d1b700000000000000000000000000000000000000000000000000000000000000000c7a95ad7a359326b1e1cf97d6c904b129209cca8858092856beae13b231d1bc0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000001cd264b1da308d46dffd8c07b673cfd17d73adeb021d37230760b754b3013954a00b7f831ab09f04a7101e56c89854979506f8078d2eee18231417ed500093a480000000000000000000000000000000000000000000000000000000000000006423b872dd00000000000000000000000033f0f57dcd106df64fa2b8991cd6bdae8f53dcf500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 46, + "to": "0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b", + "transactionIndex": 129, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xecac701d07f9d329c60becd395c0a8ce01960b505f44cb473dbab92b3e49c752", + "s": "0x67b2389fc591dd50d9b2a89a7b1a382ee8a411c5d7cedbb5962499ab12b69100", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7553384", + "effectiveGasPrice": "33000000000", + "from": "0x33f0f57dcd106df64fa2b8991cd6bdae8f53dcf5", + "gasUsed": "47583", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": false, + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "transactionHash": "0xde102efe0b9ea4e1b34eeb4d1fc85f57629f8c0a7f8162d396b4b161497241d7", + "transactionIndex": 129, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x33f0f57dcd106df64fa2b8991cd6bdae8f53dcf5", + "callType": "call", + "gas": "0xb3da", + "input": "0xa8a41c700000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b00000000000000000000000033f0f57dcd106df64fa2b8991cd6bdae8f53dcf500000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c0107300000000000000000000000085f740958906b317de6ed79663012859067e745b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002260000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e8ec6221c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d1b700000000000000000000000000000000000000000000000000000000000000000c7a95ad7a359326b1e1cf97d6c904b129209cca8858092856beae13b231d1bc0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000001cd264b1da308d46dffd8c07b673cfd17d73adeb021d37230760b754b3013954a00b7f831ab09f04a7101e56c89854979506f8078d2eee18231417ed500093a480000000000000000000000000000000000000000000000000000000000000006423b872dd00000000000000000000000033f0f57dcd106df64fa2b8991cd6bdae8f53dcf500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000229000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "error": "Reverted", + "result": { "gasUsed": "0x4917", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xde102efe0b9ea4e1b34eeb4d1fc85f57629f8c0a7f8162d396b4b161497241d7", + "transactionPosition": 129, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6A742682C3D90bfa5d2B4DeD7ef090F6e72304f4", + "gas": 21000, + "gasPrice": "33000000000", + "hash": "0xdd7ab5826ff3f412c1c39b6425038d0576e923aaf5dcd074e31af9bb279d3411", + "input": "0x", + "nonce": 0, + "to": "0x606de087c52A1e85E8C8922909f2eFB6F714aB04", + "transactionIndex": 130, + "value": "654750000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xbd5b8e3cd11082dfc751c13287b9dc0c011614913cbdb33440e97ac79a41891c", + "s": "0x7b01c42956e3d1892b9f23c910313fffff673c1b23e2c9914f17fe765ccbb47d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7574384", + "effectiveGasPrice": "33000000000", + "from": "0x6a742682c3d90bfa5d2b4ded7ef090f6e72304f4", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x606de087c52a1e85e8c8922909f2efb6f714ab04", + "transactionHash": "0xdd7ab5826ff3f412c1c39b6425038d0576e923aaf5dcd074e31af9bb279d3411", + "transactionIndex": 130, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6a742682c3d90bfa5d2b4ded7ef090f6e72304f4", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x606de087c52a1e85e8c8922909f2efb6f714ab04", + "value": "0x91623a7eeafe000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xdd7ab5826ff3f412c1c39b6425038d0576e923aaf5dcd074e31af9bb279d3411", + "transactionPosition": 130, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9acbB72Cf67103A30333A32CD203459c6a9c3311", + "gas": 90000, + "gasPrice": "33000000000", + "hash": "0xb0bd795ed47c1fe49b8757b42d9e59dc8b3a525dac63669c51077a80ea0109d8", + "input": "0xa9059cbb00000000000000000000000055d325a4ce4e579300cf9853372e916381cb15b0000000000000000000000000000000000000000000000000000000003843cfaf", + "nonce": 416307, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 131, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3d8431155c7ad6b1b64057585a26e646a74c378d1aea59ae7aa245cd81b45f75", + "s": "0x5c8887d2274bed1b65b5f1ee0168be5d9818accfd2fc6ca509662bbab4fe2c3f", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7637581", + "effectiveGasPrice": "33000000000", + "from": "0x9acbb72cf67103a30333a32cd203459c6a9c3311", + "gasUsed": "63197", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009acbb72cf67103a30333a32cd203459c6a9c3311", + "0x00000000000000000000000055d325a4ce4e579300cf9853372e916381cb15b0" + ], + "data": "0x000000000000000000000000000000000000000000000000000000003843cfaf", + "blockNumber": 12679108, + "transactionHash": "0xb0bd795ed47c1fe49b8757b42d9e59dc8b3a525dac63669c51077a80ea0109d8", + "transactionIndex": 131, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 168, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000020000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000080000000000000000000200000000000000000000000000002000000000000000000001000000000000000000000000000040000000000000000000000000000000000000000000000000000000800000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0xb0bd795ed47c1fe49b8757b42d9e59dc8b3a525dac63669c51077a80ea0109d8", + "transactionIndex": 131, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9acbb72cf67103a30333a32cd203459c6a9c3311", + "callType": "call", + "gas": "0x10b34", + "input": "0xa9059cbb00000000000000000000000055d325a4ce4e579300cf9853372e916381cb15b0000000000000000000000000000000000000000000000000000000003843cfaf", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xb0bd795ed47c1fe49b8757b42d9e59dc8b3a525dac63669c51077a80ea0109d8", + "transactionPosition": 131, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xEACB59641C91bd5d6591923d78F09502eC850431", + "gas": 57502, + "gasPrice": "32000001561", + "hash": "0xe46e94e023d1726cc63f8a19ea601c09dd4d91ceb555babca2e5f72d6afe21c8", + "input": "0xa9059cbb000000000000000000000000ad057e630246a909479237bd11748506d4f7e95e00000000000000000000000000000000000000000000000004db732547630000", + "nonce": 97, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 132, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3753eabfbdf06b91a154b241d8bfc55503865b0d2d147aecf0b75f7b2b53f475", + "s": "0x79d4a6062c3b3c9ee4244107700dc6dcffc2bec0b2df283b9b5a165c911d1612", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7689856", + "effectiveGasPrice": "32000001561", + "from": "0xeacb59641c91bd5d6591923d78f09502ec850431", + "gasUsed": "52275", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000eacb59641c91bd5d6591923d78f09502ec850431", + "0x000000000000000000000000ad057e630246a909479237bd11748506d4f7e95e" + ], + "data": "0x00000000000000000000000000000000000000000000000004db732547630000", + "blockNumber": 12679108, + "transactionHash": "0xe46e94e023d1726cc63f8a19ea601c09dd4d91ceb555babca2e5f72d6afe21c8", + "transactionIndex": 132, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 169, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000080000000000000000000000000000000000000000000000000000200000000000000000000000000000400000000000000000000000000000000000000000000000000000000008000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000002000000000000000000000800000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000100000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0xe46e94e023d1726cc63f8a19ea601c09dd4d91ceb555babca2e5f72d6afe21c8", + "transactionIndex": 132, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xeacb59641c91bd5d6591923d78f09502ec850431", + "callType": "call", + "gas": "0x8c1e", + "input": "0xa9059cbb000000000000000000000000ad057e630246a909479237bd11748506d4f7e95e00000000000000000000000000000000000000000000000004db732547630000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x77b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe46e94e023d1726cc63f8a19ea601c09dd4d91ceb555babca2e5f72d6afe21c8", + "transactionPosition": 132, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x68579Ed5EB8b95a46EAFAa8ae235Fa76B9233b5B", + "gas": 215887, + "gasPrice": "32000000000", + "hash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "input": "0xeee3f07a0000000000000000000000002830eee38897e53d882ebe9844e66cba3eaec6d5", + "nonce": 14, + "to": "0x1A2a1c938CE3eC39b6D47113c7955bAa9DD454F2", + "transactionIndex": 133, + "value": "510000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x2a6106fe3e4cd4fc51aa5fccdbaa7b7bd45f01893372e468d2b7293beb3f3afb", + "s": "0x732dda699ec4d641e279fdd15fbbf57f0f7cacca7a4aa5bf7ea99c79b4b7a73d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "7853610", + "effectiveGasPrice": "32000000000", + "from": "0x68579ed5eb8b95a46eafaa8ae235fa76b9233b5b", + "gasUsed": "163754", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000001a2a1c938ce3ec39b6d47113c7955baa9dd454f2" + ], + "data": "0x0000000000000000000000000000000000000000000000000713e24c43730000", + "blockNumber": 12679108, + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionIndex": 133, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 170, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x1A2a1c938CE3eC39b6D47113c7955bAa9DD454F2", + "topics": [ + "0x72848855a2461abf0dd243723dfcc9163eec2ea5215469d101c0d9c9ef58940d", + "0x000000000000000000000000000000000000000000000000000000000001ce8d", + "0x0000000000000000000000002830eee38897e53d882ebe9844e66cba3eaec6d5", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ], + "data": "0x000000000000000000000000c99a6a985ed2cac1ef41640596c5a5f9f4e19ef500000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000713e24c43730000", + "blockNumber": 12679108, + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionIndex": 133, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 171, + "removed": false, + "decoded": { + "signature": "TokenDeposited(uint256,address,address,address,uint32,uint256)", + "signature_with_arg_names": "TokenDeposited(uint256 indexed _depositId,address indexed _owner,address indexed _tokenAddress,address _sidechainAddress,uint32 _standard,uint256 _tokenNumber)", + "name": "TokenDeposited", + "decoded": [ + { + "indexed": true, + "internalType": "uint256", + "name": "_depositId", + "type": "uint256", + "decoded": "118413" + }, + { + "indexed": true, + "internalType": "address", + "name": "_owner", + "type": "address", + "decoded": "0x2830eee38897e53d882ebe9844e66cba3eaec6d5" + }, + { + "indexed": true, + "internalType": "address", + "name": "_tokenAddress", + "type": "address", + "decoded": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + { + "indexed": false, + "internalType": "address", + "name": "_sidechainAddress", + "type": "address", + "decoded": "0xc99a6a985ed2cac1ef41640596c5a5f9f4e19ef5" + }, + { + "indexed": false, + "internalType": "uint32", + "name": "_standard", + "type": "uint32", + "decoded": "20" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "_tokenNumber", + "type": "uint256", + "decoded": "510000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000100000000000010000000000000000000000080000000000000000000000000000000000002000000080000000000000000000800000000000200000000000000000000800000000000000000000000008000000000000000000000000000000000000000000004000000800000000000000000000000002000000000800000400000000000000001000000000000000000000000000000000000800000000000000000000000000000200000000000000800000000000000000000000000000000080100000000000000000000000000000000000000200000000008000000000000000000000000000080400000000000000000", + "status": true, + "to": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionIndex": 133, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x68579ed5eb8b95a46eafaa8ae235fa76b9233b5b", + "callType": "call", + "gas": "0x2f797", + "input": "0xeee3f07a0000000000000000000000002830eee38897e53d882ebe9844e66cba3eaec6d5", + "to": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "value": "0x713e24c43730000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x22bf2", + "output": "0x000000000000000000000000000000000000000000000000000000000001ce8d" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "delegatecall", + "gas": "0x2d85e", + "input": "0xeee3f07a0000000000000000000000002830eee38897e53d882ebe9844e66cba3eaec6d5", + "to": "0x8407dc57739bcda7aa53ca6f12f82f9d51c2f21e", + "value": "0x713e24c43730000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2181b", + "output": "0x000000000000000000000000000000000000000000000000000000000001ce8d" + }, + "subtraces": 5, + "traceAddress": [0], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "staticcall", + "gas": "0x2b85a", + "input": "0x37d277d4", + "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a574554485f544f4b454e00000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "staticcall", + "gas": "0x2b0d3", + "input": "0x358177730000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a574554485f544f4b454e00000000000000000000000000000000000000000000", + "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xc85", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "call", + "gas": "0x27fa6", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x713e24c43730000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1ada", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "staticcall", + "gas": "0x262dd", + "input": "0x3579e67a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001", + "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x145f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + }, + { + "action": { + "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", + "callType": "staticcall", + "gas": "0x24ca2", + "input": "0xeb96fbcd000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000001", + "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4b8", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c99a6a985ed2cac1ef41640596c5a5f9f4e19ef50000000000000000000000000000000000000000000000000000000000000014" + }, + "subtraces": 0, + "traceAddress": [0, 4], + "transactionHash": "0x791b84cd2c61b9bee019d4b50912aad16266ad128ae4ef275844738ea5dc5cf6", + "transactionPosition": 133, + "type": "call" + } + ], + "decoded": { + "signature": "depositEthFor(address)", + "signature_with_arg_names": "depositEthFor(address arg1)", + "name": "depositEthFor", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x2830eee38897e53d882ebe9844e66cba3eaec6d5" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB", + "gas": 476380, + "gasPrice": "32000000000", + "hash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "input": "0x295da87d000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "nonce": 5326, + "to": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "transactionIndex": 134, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x26d807c36bcf1a1f4c581ba3b2005b9f5db2a52b7cd9d1da6790520e51bbcade", + "s": "0x340884d78555b09314d6a299dcc9bd1047a984d253fc357f7e45c1614b3e25bf", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8286665", + "effectiveGasPrice": "32000000000", + "from": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb", + "gasUsed": "433055", + "logs": [ + { + "address": "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "blockNumber": 12679108, + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionIndex": 134, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 172, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "55168532319208881920222" + } + ] + } + }, + { + "address": "0x57Ab1ec28D129707052df4dF418D58a2D46d5f51", + "topics": [ + "0x696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7", + "0x0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb" + ], + "data": "0x000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "blockNumber": 12679108, + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionIndex": 134, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 173, + "removed": false, + "decoded": { + "signature": "Burned(address,uint256)", + "signature_with_arg_names": "Burned(address indexed account,uint256 value)", + "name": "Burned", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address", + "decoded": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "55168532319208881920222" + } + ] + } + }, + { + "address": "0xb440DD674e1243644791a4AdfE3A2AbB0A92d309", + "topics": [ + "0x28dcdf40e6b6196065d54760038ab1a8c0c1d9cfa58a99e6b0cb6022f7e24775", + "0x0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb" + ], + "data": "0x0000000000000000000000000000000000000000000bab830d606741f547897700000000000000000000000000000000000000000000000000000000000290780000000000000000000000000000000000000000000000000000000000028e0e", + "blockNumber": 12679108, + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionIndex": 134, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 174, + "removed": false, + "decoded": { + "signature": "IssuanceDebtRatioEntry(address,uint256,uint256,uint256)", + "signature_with_arg_names": "IssuanceDebtRatioEntry(address indexed account,uint256 debtRatio,uint256 debtEntryIndex,uint256 feePeriodStartingDebtIndex)", + "name": "IssuanceDebtRatioEntry", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address", + "decoded": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "debtRatio", + "type": "uint256", + "decoded": "14108126171689139447499127" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "debtEntryIndex", + "type": "uint256", + "decoded": "168056" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "feePeriodStartingDebtIndex", + "type": "uint256", + "decoded": "167438" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000200000000000000000000000000000000000000000040000000000000000002000000000000000000000000008000000000000000000000000000000000000000008000000000000000000000000000001000000000000000000060000000000000000000802000000000000000000000010000000000000000000000000000808000000000000000000000000000000000000000000000800000000000000200000000000000000000000000000000000000000000000000002000000000000000000000000000000020000000000000000000020000000000000000002000000000000000000010000002000000000000000000000", + "status": true, + "to": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionIndex": 134, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb", + "callType": "call", + "gas": "0x6f19c", + "input": "0x295da87d000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x682f7", "output": "0x" }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "callType": "call", + "gas": "0x6bffa", + "input": "0xbc67f8320000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1e44", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", + "callType": "call", + "gas": "0x6a123", + "input": "0x295da87d000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x64d47", "output": "0x" }, + "subtraces": 2, + "traceAddress": [1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "callType": "staticcall", + "gas": "0x66fec", + "input": "0x7c312541", + "to": "0x1c86b3cdf2a60ae3a574f7f71d44e2c50bddb87e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x126e", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "callType": "call", + "gas": "0x64676", + "input": "0xb06e8c650000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x60bee", "output": "0x" }, + "subtraces": 21, + "traceAddress": [1, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x60de2", + "input": "0x23257c2b53797374656d53657474696e67730000000000000000000000000000000000006d696e696d756d5374616b6554696d6500000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12a0", + "output": "0x0000000000000000000000000000000000000000000000000000000000015180" + }, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x5f75d", + "input": "0x23257c2b49737375657200000000000000000000000000000000000000000000000000005c533736d149e759d2cc52c386ca013f13109caadd1489fccae364b0d008353a", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12a0", + "output": "0x0000000000000000000000000000000000000000000000000000000060a49294" + }, + "subtraces": 0, + "traceAddress": [1, 1, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0x5cfc3", + "input": "0x1b16802c0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb7355534400000000000000000000000000000000000000000000000000000000", + "to": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x194de", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 6, + "traceAddress": [1, 1, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "staticcall", + "gas": "0x5ace8", + "input": "0x42a28e217355534400000000000000000000000000000000000000000000000000000000", + "to": "0x1c86b3cdf2a60ae3a574f7f71d44e2c50bddb87e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xae5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "staticcall", + "gas": "0x58d6c", + "input": "0xf1406dc80000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb7355534400000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb67", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "staticcall", + "gas": "0x5771b", + "input": "0x23257c2b53797374656d53657474696e677300000000000000000000000000000000000077616974696e67506572696f6453656373000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xad0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000168" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "staticcall", + "gas": "0x56861", + "input": "0xb44e97530000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb7355534400000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x32a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 3], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "call", + "gas": "0x54e7c", + "input": "0xcda218c7000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000017355534400000000000000000000000000000000000000000000000000000000", + "to": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x11821", "output": "0x" }, + "subtraces": 4, + "traceAddress": [1, 1, 2, 4], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x524c7", + "input": "0x086dabd1", + "to": "0x1c86b3cdf2a60ae3a574f7f71d44e2c50bddb87e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1e1", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x50e0e", + "input": "0xc8e5bbd5000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000017355534400000000000000000000000000000000000000000000000000000000", + "to": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96be", + "output": "0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 3, + "traceAddress": [1, 1, 2, 4, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x4ed01", + "input": "0x23257c2b53797374656d53657474696e6773000000000000000000000000000000000000726174655374616c65506572696f640000000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xad0", + "output": "0x0000000000000000000000000000000000000000000000000000000000015f90" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 1, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x4de78", + "input": "0x9ee5955a53797374656d53657474696e677300000000000000000000000000000000000061676772656761746f725761726e696e67466c61677300000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xae1", + "output": "0x0000000000000000000000004a5b9b4ad08616d11f3a402ff7cbeacb732a76c6" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 1, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x4bde8", + "input": "0x7d723cac000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "to": "0x4a5b9b4ad08616d11f3a402ff7cbeacb732a76c6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1ea4", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 1, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x4628f", + "input": "0x3b6afe40000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000017355534400000000000000000000000000000000000000000000000000000000", + "to": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcdb", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000004d8dbd193d89b7b506be5dc9db75b91da00d6a1d" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x44896", + "input": "0x18160ddd", + "to": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x93e", + "output": "0x000000000000000000000000000000000000000000910e8bd629ea4d56ccd33f" + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 4, 3], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x585fd19eba8f1a81f37c5eb322fd4b8d911367e8", + "callType": "call", + "gas": "0x43758", + "input": "0xd0d3d62a0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb7355534400000000000000000000000000000000000000000000000000000000", + "to": "0x545973f28950f50fc6c7f52aab4ad214a27c0564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xcdf", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 5], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x42c29", + "input": "0x8b3f80880000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x130b", + "output": "0x0000000000000000000000000000000000000000000bcddbb6595de4d105febc000000000000000000000000000000000000000000000000000000000002906e" + }, + "subtraces": 0, + "traceAddress": [1, 1, 3], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x40e68", + "input": "0x3a900a2e", + "to": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3092", + "output": "0x0000000000000000000000000000000000000000010c5cb6588005d50efdde980000000000000000000000000000000000000000000000000000000060d09e5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [1, 1, 4], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x3da14", + "input": "0x23257c2b53797374656d53657474696e677300000000000000000000000000000000000064656274536e617073686f745374616c6554696d650000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xad0", + "output": "0x000000000000000000000000000000000000000000000000000000000000ab18" + }, + "subtraces": 0, + "traceAddress": [1, 1, 4, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x3d2e4", + "input": "0x08d95cd5000000000000000000000000000000000000000000000000000000000002906e", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x11d9", + "output": "0x00000000000000000000000000000000000000000001a0cfef079bcfb80fe32c" + }, + "subtraces": 0, + "traceAddress": [1, 1, 5], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x3bfc4", + "input": "0x46317712", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa7d", + "output": "0x00000000000000000000000000000000000000000001a0f8b45f32e5046d5a70" + }, + "subtraces": 0, + "traceAddress": [1, 1, 6], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x3acd9", + "input": "0x0c71cd23534e580000000000000000000000000000000000000000000000000000000000", + "to": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9f3d", + "output": "0x00000000000000000000000000000000000000000000000060c1850f8e0600000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 4, + "traceAddress": [1, 1, 7], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x3888d", + "input": "0xfeaf968c", + "to": "0xdc3ea94cd0ac27d9a86c180091e7f78c683d3699", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3d71", + "output": "0x000000000000000000000000000000000000000000000003000000000000103700000000000000000000000000000000000000000000000000000000298e6d800000000000000000000000000000000000000000000000000000000060d0c79d0000000000000000000000000000000000000000000000000000000060d0c79d0000000000000000000000000000000000000000000000030000000000001037" + }, + "subtraces": 1, + "traceAddress": [1, 1, 7, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xdc3ea94cd0ac27d9a86c180091e7f78c683d3699", + "callType": "staticcall", + "gas": "0x35d14", + "input": "0xfeaf968c", + "to": "0x06ce8be8729b6ba18dd3416e3c223a5d4db5e755", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cf2", + "output": "0x000000000000000000000000000000000000000000000000000000000000103700000000000000000000000000000000000000000000000000000000298e6d800000000000000000000000000000000000000000000000000000000060d0c79d0000000000000000000000000000000000000000000000000000000060d0c79d0000000000000000000000000000000000000000000000000000000000001037" + }, + "subtraces": 0, + "traceAddress": [1, 1, 7, 0, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x31ab0", + "input": "0x23257c2b53797374656d53657474696e6773000000000000000000000000000000000000726174655374616c65506572696f640000000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x300", + "output": "0x0000000000000000000000000000000000000000000000000000000000015f90" + }, + "subtraces": 0, + "traceAddress": [1, 1, 7, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x313dc", + "input": "0x9ee5955a53797374656d53657474696e677300000000000000000000000000000000000061676772656761746f725761726e696e67466c61677300000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x311", + "output": "0x0000000000000000000000004a5b9b4ad08616d11f3a402ff7cbeacb732a76c6" + }, + "subtraces": 0, + "traceAddress": [1, 1, 7, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xd69b189020ef614796578afe4d10378c5e7e1138", + "callType": "staticcall", + "gas": "0x30e2a", + "input": "0x357e47fe000000000000000000000000dc3ea94cd0ac27d9a86c180091e7f78c683d3699", + "to": "0x4a5b9b4ad08616d11f3a402ff7cbeacb732a76c6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xc32", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 7, 3], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x30c96", + "input": "0x70a082310000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2154", + "output": "0x00000000000000000000000000000000000000000000f1ee27693be39359a3a6" + }, + "subtraces": 1, + "traceAddress": [1, 1, 8], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x97767d7d04fd0db0a1a2478dcd4ba85290556b48", + "callType": "staticcall", + "gas": "0x2eae2", + "input": "0x70a082310000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x5b1b5fea1b99d83ad479df0c222f0492385381dd", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9b6", + "output": "0x00000000000000000000000000000000000000000000f1ee27693be39359a3a6" + }, + "subtraces": 0, + "traceAddress": [1, 1, 8, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x2d56d", + "input": "0x70a082310000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x971e78e0c92392a4e39099835cf7e6ab535b2227", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb32", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 9], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x2b3bb", + "input": "0x70a082310000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0xda4ef8520b1a57d7d63f1e249606d1a459698876", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xaed", + "output": "0x000000000000000000000000000000000000000000003ea543024ce44b72df87" + }, + "subtraces": 0, + "traceAddress": [1, 1, 10], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x2a3c6", + "input": "0x23257c2b53797374656d53657474696e677300000000000000000000000000000000000069737375616e6365526174696f00000000000000000000000000000000000000", + "to": "0xc757acba3c0506218b3022266a9dc7f3612d85f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xad0", + "output": "0x00000000000000000000000000000000000000000000000002c68af0bb140000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 11], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "delegatecall", + "gas": "0x288b3", + "input": "0xd5e5e6e6", + "to": "0x84d626b2bb4d0f064067e4bf80fce7055d8f3e7b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x100", + "output": "0x0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 12], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0x28392", + "input": "0xa764eb450000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000000000000000000000000bab830d606741f5478977", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x22ae", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 13], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0x25ffc", + "input": "0x46317712", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2ad", + "output": "0x00000000000000000000000000000000000000000001a0f8b45f32e5046d5a70" + }, + "subtraces": 0, + "traceAddress": [1, 1, 14], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0x25aa7", + "input": "0x3d31e97b00000000000000000000000000000000000000000001a10adbfe102be9828446", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x642d", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 15], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0x1f5e2", + "input": "0x9dc29fac0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe4b8", "output": "0x" }, + "subtraces": 5, + "traceAddress": [1, 1, 16], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "callType": "staticcall", + "gas": "0x19fae", + "input": "0xb38988f7000000000000000000000000b774711f0bc1306ce892ef8c02d0476dcccb46b7", + "to": "0x067e398605e84f2d0aeec1806e62768c5110dcc6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d29", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 16, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "callType": "staticcall", + "gas": "0x16ee2", + "input": "0x70a082310000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x05a9cbe762b36632b3594da4f082340e0e5343e8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c1", + "output": "0x000000000000000000000000000000000000000000000baeb12f68e8b68618de" + }, + "subtraces": 0, + "traceAddress": [1, 1, 16, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "callType": "call", + "gas": "0x16351", + "input": "0xb46310f60000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x05a9cbe762b36632b3594da4f082340e0e5343e8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x15f2", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 16, 2], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "callType": "call", + "gas": "0x12c40", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1262", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 16, 3], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "callType": "call", + "gas": "0x11623", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000002696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df70000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000baeb12f68e8b68618de", + "to": "0x57ab1ec28d129707052df4df418d58a2d46d5f51", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x902", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 16, 4], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "delegatecall", + "gas": "0x111cc", + "input": "0x907af6c0", + "to": "0x84d626b2bb4d0f064067e4bf80fce7055d8f3e7b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd4", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "traceAddress": [1, 1, 17], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0x10f46", + "input": "0xd685743a73555344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1b5b", "output": "0x" }, + "subtraces": 2, + "traceAddress": [1, 1, 18], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0x101b5", + "input": "0x3b6afe40000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000017355534400000000000000000000000000000000000000000000000000000000", + "to": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x50b", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000004d8dbd193d89b7b506be5dc9db75b91da00d6a1d" + }, + "subtraces": 0, + "traceAddress": [1, 1, 18, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0x9bb05ef2ca7dbaaffc3da1939d1492e6b00f39b8", + "callType": "staticcall", + "gas": "0xf90a", + "input": "0x18160ddd", + "to": "0x4d8dbd193d89b7b506be5dc9db75b91da00d6a1d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x16e", + "output": "0x0000000000000000000000000000000000000000009102dd24fa8164a046ba61" + }, + "subtraces": 0, + "traceAddress": [1, 1, 18, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "staticcall", + "gas": "0xf131", + "input": "0x8b3f80880000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0x4b9ca5607f1ff8019c1c6a3c2f0cc8de622d5b82", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x36b", + "output": "0x0000000000000000000000000000000000000000000bab830d606741f54789770000000000000000000000000000000000000000000000000000000000029078" + }, + "subtraces": 0, + "traceAddress": [1, 1, 19], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xb774711f0bc1306ce892ef8c02d0476dcccb46b7", + "callType": "call", + "gas": "0xd8ef", + "input": "0x866452740000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000000000000000000000000bab830d606741f54789770000000000000000000000000000000000000000000000000000000000029078", + "to": "0xcf9e60005c9aca983caf65d3669a24fdd0775fc0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa104", "output": "0x" }, + "subtraces": 2, + "traceAddress": [1, 1, 20], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xcf9e60005c9aca983caf65d3669a24fdd0775fc0", + "callType": "call", + "gas": "0x967e", + "input": "0x94e1a4480000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000000000000000000000000bab830d606741f547897700000000000000000000000000000000000000000000000000000000000290780000000000000000000000000000000000000000000000000000000000028e0e", + "to": "0x11164f6a47c3f8472d19b9add516fc780cb7ee02", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x32bd", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 20, 0], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + }, + { + "action": { + "from": "0xcf9e60005c9aca983caf65d3669a24fdd0775fc0", + "callType": "call", + "gas": "0x495e", + "input": "0x907dff9700000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000228dcdf40e6b6196065d54760038ab1a8c0c1d9cfa58a99e6b0cb6022f7e247750000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000bab830d606741f547897700000000000000000000000000000000000000000000000000000000000290780000000000000000000000000000000000000000000000000000000000028e0e", + "to": "0xb440dd674e1243644791a4adfe3a2abb0a92d309", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x125a", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 20, 1], + "transactionHash": "0x99631668ba5f0361433fedcfb315406c42b5ae0d9702f69b0bef062f92942339", + "transactionPosition": 134, + "type": "call" + } + ], + "decoded": { + "signature": "burnSynths(uint256)", + "signature_with_arg_names": "burnSynths(uint256 arg1)", + "name": "burnSynths", + "decoded": [ + { + "internalType": "uint256", + "name": "arg1", + "type": "uint256", + "decoded": "55168532319208881920222" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa7BA4d6B2400e6357095A7543D55D81dFCd998B4", + "gas": 204183, + "gasPrice": "32000000000", + "hash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "input": "0xe17376b5000000000000000000000000e4815ae53b124e7263f08dcdbbb757d41ed658c600000000000000000000000000000000000000000000065a4da25d3016c00000000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "nonce": 986, + "to": "0x8ECa806Aecc86CE90Da803b080Ca4E3A9b8097ad", + "transactionIndex": 135, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x19cc244abfa2e69970b4627d0b2ade51598ab24db1e2cca36b90394927575d6b", + "s": "0x6e81b19dcd621d3578d0188a38cb6c7cae29519dea4846e6ebd85082e92a77b4", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8483138", + "effectiveGasPrice": "32000000000", + "from": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "gasUsed": "196473", + "logs": [ + { + "address": "0xe4815AE53B124e7263F08dcDBBB757d41Ed658c6", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "0x0000000000000000000000008eca806aecc86ce90da803b080ca4e3a9b8097ad" + ], + "data": "0x00000000000000000000000000000000000000000000065a4da25d3016c00000", + "blockNumber": 12679108, + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionIndex": 135, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 175, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "30000000000000000000000" + } + ] + } + }, + { + "address": "0xe4815AE53B124e7263F08dcDBBB757d41Ed658c6", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "0x0000000000000000000000008eca806aecc86ce90da803b080ca4e3a9b8097ad" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffc609c3398de6f508953ff", + "blockNumber": 12679108, + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionIndex": 135, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 176, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640559659982897946443129639935" + } + ] + } + }, + { + "address": "0x8ECa806Aecc86CE90Da803b080Ca4E3A9b8097ad", + "topics": [ + "0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830" + ], + "data": "0x000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b40000000000000000000000000000000000000000000000000000000000005779000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000c1bb44000000000000000000000000000000000000000000000000000000000000002a000000000001000000000000065a4da25d3016c00000a7ba4d6b2400e6357095a7543d55d81dfcd998b400000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionIndex": 135, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 177, + "removed": false, + "decoded": null + }, + { + "address": "0x8ECa806Aecc86CE90Da803b080Ca4E3A9b8097ad", + "topics": [ + "0xb6866b029f3aa29cd9e2bff8159a8ccaa4389f7a087c710968e0b200c0c73b08", + "0x000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4" + ], + "data": "0x00000000000000000000000000000000000000000000065a4da25d3016c00000", + "blockNumber": 12679108, + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionIndex": 135, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 178, + "removed": false, + "decoded": { + "signature": "OnchainDeposit(address,uint16,uint128,address)", + "signature_with_arg_names": "OnchainDeposit(address indexed sender,uint16 indexed tokenId,uint128 amount,address indexed owner)", + "name": "OnchainDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4" + }, + { + "indexed": true, + "internalType": "uint16", + "name": "tokenId", + "type": "uint16", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "amount", + "type": "uint128", + "decoded": "30000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000100000000000000000040000000000000000000000000000000000000000000000200000000000000200000000000000240000000000004000000000000208000000000000200000040000200000000000000000000000020000000000000000000000000000000000000000001010000000000000000000000000000000000000000000000000000000000000000000000000020002000000400000000000000000000000000000000000001000000000000000000002000001000000000000000800000002000000000000000000000040000010000000000000000100000000000000000000000010000000000000000000", + "status": true, + "to": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionIndex": 135, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "callType": "call", + "gas": "0x2c79b", + "input": "0xe17376b5000000000000000000000000e4815ae53b124e7263f08dcdbbb757d41ed658c600000000000000000000000000000000000000000000065a4da25d3016c00000000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "to": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2b46d", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "callType": "delegatecall", + "gas": "0x2a934", + "input": "0xe17376b5000000000000000000000000e4815ae53b124e7263f08dcdbbb757d41ed658c600000000000000000000000000000000000000000000065a4da25d3016c00000000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b4", + "to": "0x2f70f6d864f8f597a0ef57addf24323dfab5797f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2a0ac", "output": "0x" }, + "subtraces": 4, + "traceAddress": [0], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "callType": "staticcall", + "gas": "0x26594", + "input": "0xead31762000000000000000000000000e4815ae53b124e7263f08dcdbbb757d41ed658c6", + "to": "0x02ecef526f806f06357659ffd14834fe82ef4b04", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1dcf", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x02ecef526f806f06357659ffd14834fe82ef4b04", + "callType": "delegatecall", + "gas": "0x248c1", + "input": "0xead31762000000000000000000000000e4815ae53b124e7263f08dcdbbb757d41ed658c6", + "to": "0x9d3fdf9b4782753d12f6262bf22b6322608962b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa17", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "callType": "staticcall", + "gas": "0x23cd0", + "input": "0x70a082310000000000000000000000008eca806aecc86ce90da803b080ca4e3a9b8097ad", + "to": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9d6", + "output": "0x000000000000000000000000000000000000000000287251953041b73904df5e" + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "callType": "call", + "gas": "0x22f39", + "input": "0x23b872dd000000000000000000000000a7ba4d6b2400e6357095a7543d55d81dfcd998b40000000000000000000000008eca806aecc86ce90da803b080ca4e3a9b8097ad00000000000000000000000000000000000000000000065a4da25d3016c00000", + "to": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x48fa", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + }, + { + "action": { + "from": "0x8eca806aecc86ce90da803b080ca4e3a9b8097ad", + "callType": "staticcall", + "gas": "0x1e4f1", + "input": "0x70a082310000000000000000000000008eca806aecc86ce90da803b080ca4e3a9b8097ad", + "to": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x206", + "output": "0x0000000000000000000000000000000000000000002878abe2d29ee74fc4df5e" + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0x41fb90c05d4958e01078b14df430fe80f17287435f7d9d7eee8ec12930a04ef3", + "transactionPosition": 135, + "type": "call" + } + ], + "decoded": { + "signature": "depositERC20(address,uint104,address)", + "signature_with_arg_names": "depositERC20(address arg1,uint104 arg2,address arg3)", + "name": "depositERC20", + "decoded": [ + { + "internalType": "contract IERC20", + "name": "arg1", + "type": "address", + "decoded": "0xe4815ae53b124e7263f08dcdbbb757d41ed658c6" + }, + { + "internalType": "uint104", + "name": "arg2", + "type": "uint104", + "decoded": "30000000000000000000000" + }, + { + "internalType": "address", + "name": "arg3", + "type": "address", + "decoded": "0xa7ba4d6b2400e6357095a7543d55d81dfcd998b4" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x475295cbf3f2e18d6276d5301b483c3a592C65dd", + "gas": 127173, + "gasPrice": "32000000000", + "hash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "input": "0x7cbc2373000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000052df06607a0d6716440", + "nonce": 118, + "to": "0x4F32Ab778e85C4aD0CEad54f8f82F5Ee74d46904", + "transactionIndex": 136, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x31cd7aa632b701ded2835231a05128819dd4773a194c63bafac35081a315308", + "s": "0x577652e10b216696f8522de8feef776973139b8bb14b12fb52b20fc057d42346", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8562986", + "effectiveGasPrice": "32000000000", + "from": "0x475295cbf3f2e18d6276d5301b483c3a592c65dd", + "gasUsed": "79848", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000000000000000000000000001158e460913d00000", + "blockNumber": 12679108, + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionIndex": 136, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 179, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd", + "0x0000000000000000000000004f32ab778e85c4ad0cead54f8f82f5ee74d46904" + ], + "data": "0x00000000000000000000000000000000000000000000006b56051582a9700000", + "blockNumber": 12679108, + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionIndex": 136, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 180, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0x475295cbf3f2e18d6276d5301b483c3a592c65dd" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "1980000000000000000000" + } + ] + } + }, + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "0x000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd" + ], + "data": "0x00000000000000000000000000000000000000000000053b5516e616d3726613", + "blockNumber": 12679108, + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionIndex": 136, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 181, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "address": "0x4F32Ab778e85C4aD0CEad54f8f82F5Ee74d46904", + "topics": [ + "0x9ed992203b5a631f0a9d0b8341fde3c68a998a2ac413d72a34213bd77d4b1814", + "0x000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd" + ], + "data": "0x000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000053b5516e616d372661300000000000000000000000000000000000000000000052df06607a0d6716440", + "blockNumber": 12679108, + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionIndex": 136, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 182, + "removed": false, + "decoded": { + "signature": "burnTokens(address,uint256,uint256,uint256)", + "signature_with_arg_names": "burnTokens(address indexed seller,uint256 amount,uint256 rewardReceived,uint256 minReward)", + "name": "burnTokens", + "decoded": [ + { + "indexed": true, + "name": "seller", + "type": "address", + "decoded": "0x475295cbf3f2e18d6276d5301b483c3a592c65dd" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "20000000000000000000" + }, + { + "indexed": false, + "name": "rewardReceived", + "type": "uint256", + "decoded": "24706321655625512281619" + }, + { + "indexed": false, + "name": "minReward", + "type": "uint256", + "decoded": "24459258439069257000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000100000000800000000000000000000000000000000200000000000000000000000200000000000000000000000000000000000200004000000000000000000000008000000000200010000000000000000000000000010000000020000000000000000000800000000000000000000000010800000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000800200000800000000000000000000000000000000000000002000040000000000000000000000002000000000000000000000020400010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionIndex": 136, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x475295cbf3f2e18d6276d5301b483c3a592c65dd", + "callType": "call", + "gas": "0x19cb1", + "input": "0x7cbc2373000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000052df06607a0d6716440", + "to": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xeec4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionPosition": 136, + "type": "call" + }, + { + "action": { + "from": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "callType": "staticcall", + "gas": "0x1643e", + "input": "0x18160ddd", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x918", + "output": "0x0000000000000000000000000000000000000000000094e693a9c964d6256e29" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionPosition": 136, + "type": "call" + }, + { + "action": { + "from": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "callType": "call", + "gas": "0x144ea", + "input": "0x79cc6790000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd000000000000000000000000000000000000000000000001158e460913d00000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x544c", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionPosition": 136, + "type": "call" + }, + { + "action": { + "from": "0x4f32ab778e85c4ad0cead54f8f82f5ee74d46904", + "callType": "call", + "gas": "0xe62a", + "input": "0xa9059cbb000000000000000000000000475295cbf3f2e18d6276d5301b483c3a592c65dd00000000000000000000000000000000000000000000053b5516e616d3726613", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3312", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x0c389d7d974cb9720b6ba4b2820e1957d2637d2e4f977446ac4532ca6e8f3cc1", + "transactionPosition": 136, + "type": "call" + } + ], + "decoded": { + "signature": "redeem(uint256,uint256)", + "signature_with_arg_names": "redeem(uint256 _amount,uint256 _minCollateralReward)", + "name": "redeem", + "decoded": [ + { + "name": "_amount", + "type": "uint256", + "decoded": "20000000000000000000" + }, + { + "name": "_minCollateralReward", + "type": "uint256", + "decoded": "24459258439069257000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xe4edc2790F4034e1AE67a6fD7f55039Bb2A295d4", + "gas": 74914, + "gasPrice": "32000000000", + "hash": "0x100cf7b661915077eefc527add04e859bbe09717340116b5dc8acc81891107f1", + "input": "0xa8a41c700000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b000000000000000000000000e4edc2790f4034e1ae67a6fd7f55039bb2a295d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000ba30e5f9bb24caa003e9f2f0497ad287fdf956230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001326beb03e0a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d0660000000000000000000000000000000000000000000000000000000000000000b9afd4f0bb4900a23c70c4b1b2dfcddaebe0a27e3abc48ed142cfa8ccbda72690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000001bc678961c8a2e54811822b5ab88f032e37a80716b3dcf83d56be49997730c808221990f80fc0208b2350768013c68c8b4cadc3cbb7cd3f8a3ae59a7450eaac2ec000000000000000000000000000000000000000000000000000000000000006423b872dd000000000000000000000000e4edc2790f4034e1ae67a6fd7f55039bb2a295d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000799000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 123, + "to": "0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b", + "transactionIndex": 137, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x4ec691c7a4ba0e9d199e8c1dbe3ed161e83513708c4e99890da8ac839e6c2ac1", + "s": "0x72f1244eb0925e0c1db805687311af877050737e321d57cdd489e09d05ec57b2", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8637900", + "effectiveGasPrice": "32000000000", + "from": "0xe4edc2790f4034e1ae67a6fd7f55039bb2a295d4", + "gasUsed": "74914", + "logs": [ + { + "address": "0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b", + "topics": [ + "0x5152abf959f6564662358c2e52b702259b78bac5ee7842a0f01937e670efcc7d", + "0xe428f674754ad27c44aaf6832bb674736cc736d5e4494fac23210fd5e38e5d87" + ], + "data": "0x", + "blockNumber": 12679108, + "transactionHash": "0x100cf7b661915077eefc527add04e859bbe09717340116b5dc8acc81891107f1", + "transactionIndex": 137, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 183, + "removed": false, + "decoded": { + "signature": "OrderCancelled(bytes32)", + "signature_with_arg_names": "OrderCancelled(bytes32 indexed hash)", + "name": "OrderCancelled", + "decoded": [ + { + "indexed": true, + "name": "hash", + "type": "bytes32", + "decoded": "0xe428f674754ad27c44aaf6832bb674736cc736d5e4494fac23210fd5e38e5d87" + } + ] + } + } + ], + "logsBloom": "0x00000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000010000000000000000000000000000000000000000000000000000000002000000000000000001000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "transactionHash": "0x100cf7b661915077eefc527add04e859bbe09717340116b5dc8acc81891107f1", + "transactionIndex": 137, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xe4edc2790f4034e1ae67a6fd7f55039bb2a295d4", + "callType": "call", + "gas": "0xb3da", + "input": "0xa8a41c700000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b000000000000000000000000e4edc2790f4034e1ae67a6fd7f55039bb2a295d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000ba30e5f9bb24caa003e9f2f0497ad287fdf956230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001326beb03e0a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d0660000000000000000000000000000000000000000000000000000000000000000b9afd4f0bb4900a23c70c4b1b2dfcddaebe0a27e3abc48ed142cfa8ccbda72690000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000001bc678961c8a2e54811822b5ab88f032e37a80716b3dcf83d56be49997730c808221990f80fc0208b2350768013c68c8b4cadc3cbb7cd3f8a3ae59a7450eaac2ec000000000000000000000000000000000000000000000000000000000000006423b872dd000000000000000000000000e4edc2790f4034e1ae67a6fd7f55039bb2a295d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000799000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xb3da", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x100cf7b661915077eefc527add04e859bbe09717340116b5dc8acc81891107f1", + "transactionPosition": 137, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa25243821277b10dff17a3276a51A772Fd68C9de", + "gas": 228841, + "gasPrice": "32000000000", + "hash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "input": "0xab834bab0000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c5312000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c010730000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c53120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a741a46278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d1bc00000000000000000000000000000000000000000000000000000000000000001a311479614831971b05aabd040e6fd630a30078aa1acc008d0e331348690b9000000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a741a46278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0a98b00000000000000000000000000000000000000000000000000000000000000009f17eee3522a5b3b8316870f552581c19f7075accf07822bf6a25851f0d4e2290000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001bcfa70fffb5a13c462fc064fb75f64da9f86bb2706350a5fd4de111cd2bdee82c49812bbf619f84101cc051dd44725b2e7fe9aefb52437cfb4504677857108d60cfa70fffb5a13c462fc064fb75f64da9f86bb2706350a5fd4de111cd2bdee82c49812bbf619f84101cc051dd44725b2e7fe9aefb52437cfb4504677857108d600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 158, + "to": "0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b", + "transactionIndex": 138, + "value": "1200000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xb19d85d2e7a184e1090d86b65253c58ee11c6f8270bd166c0458777d6478cb4f", + "s": "0x309e60ad1d91b144c928ca11ecf8fcb6a6b12a1b9ac5b23c4c4d74a768a203e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8844534", + "effectiveGasPrice": "32000000000", + "from": "0xa25243821277b10dff17a3276a51a772fd68c9de", + "gasUsed": "206634", + "logs": [ + { + "address": "0x4581649aF66BCCAeE81eebaE3DDc0511FE4C5312", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000001df4" + ], + "data": "0x", + "blockNumber": 12679108, + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionIndex": 138, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 184, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed approved,uint256 indexed tokenId)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x7d112b3216455499f848ad9371df0667a0d87eb6" + }, + { + "indexed": true, + "internalType": "address", + "name": "approved", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "7668" + } + ] + } + }, + { + "address": "0x4581649aF66BCCAeE81eebaE3DDc0511FE4C5312", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6", + "0x000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de", + "0x0000000000000000000000000000000000000000000000000000000000001df4" + ], + "data": "0x", + "blockNumber": 12679108, + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionIndex": 138, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 185, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 indexed tokenId)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x7d112b3216455499f848ad9371df0667a0d87eb6" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa25243821277b10dff17a3276a51a772fd68c9de" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "7668" + } + ] + } + }, + { + "address": "0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b", + "topics": [ + "0xc4109843e0b7d514e4c093114b863f8e7d8d9a458c372cd51bfe526b588006c9", + "0x0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6", + "0x000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000008e7cf263e34fe5918c9c2670c0b4b963b31f9ef4ff033f067d377084b5fc504600000000000000000000000000000000000000000000000010a741a462780000", + "blockNumber": 12679108, + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionIndex": 138, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 186, + "removed": false, + "decoded": { + "signature": "OrdersMatched(bytes32,bytes32,address,address,uint256,bytes32)", + "signature_with_arg_names": "OrdersMatched(bytes32 buyHash,bytes32 sellHash,address indexed maker,address indexed taker,uint256 price,bytes32 indexed metadata)", + "name": "OrdersMatched", + "decoded": [ + { + "indexed": false, + "name": "buyHash", + "type": "bytes32", + "decoded": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "sellHash", + "type": "bytes32", + "decoded": "0x8e7cf263e34fe5918c9c2670c0b4b963b31f9ef4ff033f067d377084b5fc5046" + }, + { + "indexed": true, + "name": "maker", + "type": "address", + "decoded": "0x7d112b3216455499f848ad9371df0667a0d87eb6" + }, + { + "indexed": true, + "name": "taker", + "type": "address", + "decoded": "0xa25243821277b10dff17a3276a51a772fd68c9de" + }, + { + "indexed": false, + "name": "price", + "type": "uint256", + "decoded": "1200000000000000000" + }, + { + "indexed": true, + "name": "metadata", + "type": "bytes32", + "decoded": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000800000002000000000000000000000000000000000000000000000000000000000001050000004000000008000000000000000000000200040000000000000010000000008000000000000004000000000000000000000000000000000020000000000000000204800000000000000000000000010000000000000010000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000001000000000000002000000002000000000000000000000000000000000000000000020000010000001000000000000000000400000000000200000000000000000000000", + "status": true, + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionIndex": 138, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa25243821277b10dff17a3276a51a772fd68c9de", + "callType": "call", + "gas": "0x2ee2d", + "input": "0xab834bab0000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c5312000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c010730000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c53120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a741a46278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d1bc00000000000000000000000000000000000000000000000000000000000000001a311479614831971b05aabd040e6fd630a30078aa1acc008d0e331348690b9000000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a741a46278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0a98b00000000000000000000000000000000000000000000000000000000000000009f17eee3522a5b3b8316870f552581c19f7075accf07822bf6a25851f0d4e2290000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001bcfa70fffb5a13c462fc064fb75f64da9f86bb2706350a5fd4de111cd2bdee82c49812bbf619f84101cc051dd44725b2e7fe9aefb52437cfb4504677857108d60cfa70fffb5a13c462fc064fb75f64da9f86bb2706350a5fd4de111cd2bdee82c49812bbf619f84101cc051dd44725b2e7fe9aefb52437cfb4504677857108d600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "value": "0x10a741a462780000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2dcf6", "output": "0x" }, + "subtraces": 6, + "traceAddress": [], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x2342b", + "input": "0xc45527910000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xade", + "output": "0x0000000000000000000000002031ceab2eb4001c773c4a64aa41b2805066546f" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x22657", + "input": "0x97204d8e", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa35", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x210de", + "input": "0x5c60da1b", + "to": "0x2031ceab2eb4001c773c4a64aa41b2805066546f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9dd", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x5b3256965e7c3cf26e11fcaf296dfc8807c01073", + "value": "0xbfd8b6c1df0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7d112b3216455499f848ad9371df0667a0d87eb6", + "value": "0xfe768eda0990000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", + "callType": "call", + "gas": "0x161ae", + "input": "0x1b0f7ba90000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c531200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000", + "to": "0x2031ceab2eb4001c773c4a64aa41b2805066546f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x147d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x2031ceab2eb4001c773c4a64aa41b2805066546f", + "callType": "delegatecall", + "gas": "0x14fcb", + "input": "0x1b0f7ba90000000000000000000000004581649af66bccaee81eebae3ddc0511fe4c531200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006423b872dd0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000", + "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x13b14", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [5, 0], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x2031ceab2eb4001c773c4a64aa41b2805066546f", + "callType": "call", + "gas": "0x135dc", + "input": "0x69dc9ff30000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9f9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [5, 0, 0], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + }, + { + "action": { + "from": "0x2031ceab2eb4001c773c4a64aa41b2805066546f", + "callType": "call", + "gas": "0x128b2", + "input": "0x23b872dd0000000000000000000000007d112b3216455499f848ad9371df0667a0d87eb6000000000000000000000000a25243821277b10dff17a3276a51a772fd68c9de0000000000000000000000000000000000000000000000000000000000001df400000000000000000000000000000000000000000000000000000000", + "to": "0x4581649af66bccaee81eebae3ddc0511fe4c5312", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x11853", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0, 1], + "transactionHash": "0x6acd4bb6092bd60dd078db1334bffe094ffcb133bd7db726830432d18af39e0f", + "transactionPosition": 138, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9DD63A340a93088E0882E555038bE774C8AB39E2", + "gas": 171680, + "gasPrice": "32000000000", + "hash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "input": "0x18cbafe50000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b00000000000000000000000000000000000000000000000007778954ac3d329000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009dd63a340a93088e0882e555038be774c8ab39e20000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 109, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 139, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xd379f1de7c936903c45a1a63c491a8b156e17c47597474f873994cc98e75decd", + "s": "0x2890ccf2760fcbfd3571c8680f4b5ae7cc960a7e335967d2b15c128cd1baca1e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "8948019", + "effectiveGasPrice": "32000000000", + "from": "0x9dd63a340a93088e0882e555038be774c8ab39e2", + "gasUsed": "103485", + "logs": [ + { + "address": "0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009dd63a340a93088e0882e555038be774c8ab39e2", + "0x000000000000000000000000bcffa1619ab3ce350480ae0507408a3c6c3572bd" + ], + "data": "0x0000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b", + "blockNumber": 12679108, + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 187, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x9dd63a340a93088e0882e555038be774c8ab39e2" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "4307323927629941931835" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000bcffa1619ab3ce350480ae0507408a3c6c3572bd", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000007fd58105c22c2e7", + "blockNumber": 12679108, + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 188, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xBCFFa1619aB3cE350480AE0507408A3C6c3572Bd", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000012ca8f8213e71112c300000000000000000000000000000000000000000002247297d20afecccbe603", + "blockNumber": 12679108, + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 189, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xBCFFa1619aB3cE350480AE0507408A3C6c3572Bd", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b00000000000000000000000000000000000000000000000007fd58105c22c2e70000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 190, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000007fd58105c22c2e7", + "blockNumber": 12679108, + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 191, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000002000000000000000000000000000000002000000080000000000000000000000000000000000000000000008000000300000000000400000000000000000000000000000000000000000000000200000000000040000040000000410000000000000000000000000004000000000000000000000000000080000004000000000000000000000010000000000000000000000000000000000000000000000000000000002000004000000000000001004000000000000001000000002000020000040200000020000000400000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionIndex": 139, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9dd63a340a93088e0882e555038be774c8ab39e2", + "callType": "call", + "gas": "0x24474", + "input": "0x18cbafe50000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b00000000000000000000000000000000000000000000000007778954ac3d329000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009dd63a340a93088e0882e555038be774c8ab39e20000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cd55", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b00000000000000000000000000000000000000000000000007fd58105c22c2e7" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x228a8", + "input": "0x0902f1ac", + "to": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000012d28cda244333d5aa00000000000000000000000000000000000000000002238917b167ff01c066c80000000000000000000000000000000000000000000000000000000060d0d12b" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x20a8b", + "input": "0x23b872dd0000000000000000000000009dd63a340a93088e0882e555038be774c8ab39e2000000000000000000000000bcffa1619ab3ce350480ae0507408a3c6c3572bd0000000000000000000000000000000000000000000000e98020a2ffcb0b7f3b", + "to": "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x512a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b1f7", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000007fd58105c22c2e700000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfde9", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd", + "callType": "call", + "gas": "0x177c2", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000007fd58105c22c2e7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd", + "callType": "staticcall", + "gas": "0x1021f", + "input": "0x70a08231000000000000000000000000bcffa1619ab3ce350480ae0507408a3c6c3572bd", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000012ca8f8213e71112c3" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0xbcffa1619ab3ce350480ae0507408a3c6c3572bd", + "callType": "staticcall", + "gas": "0xfe7b", + "input": "0x70a08231000000000000000000000000bcffa1619ab3ce350480ae0507408a3c6c3572bd", + "to": "0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2aa", + "output": "0x00000000000000000000000000000000000000000002247297d20afecccbe603" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xb60b", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000007fd58105c22c2e7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x7fd58105c22c2e7" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x7702", + "input": "0x", + "to": "0x9dd63a340a93088e0882e555038be774c8ab39e2", + "value": "0x7fd58105c22c2e7" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xeb26d3f69826031bb95c19714967f9c5786330940d4f4545a66ae1cd05c0bded", + "transactionPosition": 139, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETH(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETH(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETH", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "2258436987" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "487696653644355917" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x267C9504cb5e570E4fb923BE5fCDAa9460789441", + "gas": 300043, + "gasPrice": "32000000000", + "hash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "input": "0xd9393814000000000000000000000000267c9504cb5e570e4fb923be5fcdaa94607894410000000000000000000000000000000000000000000000000000000000000000", + "nonce": 339, + "to": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "transactionIndex": 140, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xb2d5f8bbae14b477bcd80173f27cdbea428337a94ffd7a907e7e2510ecea26cd", + "s": "0x412df2b55fe5497ebc1d97d73e3229707d6d9266ae472fe838afbded4f5e5629", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "9190785", + "effectiveGasPrice": "32000000000", + "from": "0x267c9504cb5e570e4fb923be5fcdaa9460789441", + "gasUsed": "242766", + "logs": [ + { + "address": "0x40986a85B4cFCDb054A6CBFB1210194fee51af88", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441" + ], + "data": "0x000000000000000000000000000000000000000000000fe1c215e8f838e00000", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 192, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "1261135576035236805120" + } + ] + } + }, + { + "address": "0x40986a85B4cFCDb054A6CBFB1210194fee51af88", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441" + ], + "data": "0x0000000000000000000000000000000000000000000000445dc59c9f13ec7a00", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 193, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "1261135576035236805120" + } + ] + } + }, + { + "address": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "topics": [ + "0xcd5e4f020ddad29434c2200a9edf2f8d7ec30f0d787f03b528ab7279aab0acbe", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88" + ], + "data": "0x0000000000000000000000000000000000000000000000445dc59c9f13ec7a000000000000000000000000000000000000000000000000000000000060d0d26d", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 194, + "removed": false, + "decoded": { + "signature": "Claim(address,address,address,uint256,uint256)", + "signature_with_arg_names": "Claim(address indexed userAddress,address indexed stakedTokenAddress,address indexed tokenAddress,uint256 claimRewards,uint256 time)", + "name": "Claim", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": true, + "internalType": "address", + "name": "stakedTokenAddress", + "type": "address", + "decoded": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88" + }, + { + "indexed": true, + "internalType": "address", + "name": "tokenAddress", + "type": "address", + "decoded": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "claimRewards", + "type": "uint256", + "decoded": "55491143640449001534" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "time", + "type": "uint256", + "decoded": "1624298093" + } + ] + } + }, + { + "address": "0xc3Eb2622190c57429aac3901808994443b64B466", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441" + ], + "data": "0x00000000000000000000000000000000000000000000001049660ba172066f12", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 195, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "300436832779776716562" + } + ] + } + }, + { + "address": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "topics": [ + "0xcd5e4f020ddad29434c2200a9edf2f8d7ec30f0d787f03b528ab7279aab0acbe", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88", + "0x000000000000000000000000c3eb2622190c57429aac3901808994443b64b466" + ], + "data": "0x00000000000000000000000000000000000000000000001049660ba172066f120000000000000000000000000000000000000000000000000000000060d0d26d", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 196, + "removed": false, + "decoded": { + "signature": "Claim(address,address,address,uint256,uint256)", + "signature_with_arg_names": "Claim(address indexed userAddress,address indexed stakedTokenAddress,address indexed tokenAddress,uint256 claimRewards,uint256 time)", + "name": "Claim", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": true, + "internalType": "address", + "name": "stakedTokenAddress", + "type": "address", + "decoded": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88" + }, + { + "indexed": true, + "internalType": "address", + "name": "tokenAddress", + "type": "address", + "decoded": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "claimRewards", + "type": "uint256", + "decoded": "55491143640449001534" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "time", + "type": "uint256", + "decoded": "1624298093" + } + ] + } + }, + { + "address": "0x1DE5e000C41C8d35b9f1f4985C23988f05831057", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441" + ], + "data": "0x00000000000000000000000000000000000000000000014440e020a7001580f6", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 197, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "5981419852196738334966" + } + ] + } + }, + { + "address": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "topics": [ + "0xcd5e4f020ddad29434c2200a9edf2f8d7ec30f0d787f03b528ab7279aab0acbe", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88", + "0x0000000000000000000000001de5e000c41c8d35b9f1f4985c23988f05831057" + ], + "data": "0x00000000000000000000000000000000000000000000014440e020a7001580f60000000000000000000000000000000000000000000000000000000060d0d26d", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 198, + "removed": false, + "decoded": { + "signature": "Claim(address,address,address,uint256,uint256)", + "signature_with_arg_names": "Claim(address indexed userAddress,address indexed stakedTokenAddress,address indexed tokenAddress,uint256 claimRewards,uint256 time)", + "name": "Claim", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": true, + "internalType": "address", + "name": "stakedTokenAddress", + "type": "address", + "decoded": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88" + }, + { + "indexed": true, + "internalType": "address", + "name": "tokenAddress", + "type": "address", + "decoded": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "claimRewards", + "type": "uint256", + "decoded": "55491143640449001534" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "time", + "type": "uint256", + "decoded": "1624298093" + } + ] + } + }, + { + "address": "0x5Eaa69B29f99C84Fe5dE8200340b4e9b4Ab38EaC", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441" + ], + "data": "0x00000000000000000000000000000000000000000000000302182522e523a83e", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 199, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "55491143640449001534" + } + ] + } + }, + { + "address": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "topics": [ + "0xcd5e4f020ddad29434c2200a9edf2f8d7ec30f0d787f03b528ab7279aab0acbe", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88", + "0x0000000000000000000000005eaa69b29f99c84fe5de8200340b4e9b4ab38eac" + ], + "data": "0x00000000000000000000000000000000000000000000000302182522e523a83e0000000000000000000000000000000000000000000000000000000060d0d26d", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 200, + "removed": false, + "decoded": { + "signature": "Claim(address,address,address,uint256,uint256)", + "signature_with_arg_names": "Claim(address indexed userAddress,address indexed stakedTokenAddress,address indexed tokenAddress,uint256 claimRewards,uint256 time)", + "name": "Claim", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": true, + "internalType": "address", + "name": "stakedTokenAddress", + "type": "address", + "decoded": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88" + }, + { + "indexed": true, + "internalType": "address", + "name": "tokenAddress", + "type": "address", + "decoded": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "claimRewards", + "type": "uint256", + "decoded": "55491143640449001534" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "time", + "type": "uint256", + "decoded": "1624298093" + } + ] + } + }, + { + "address": "0x4460788bC43Dab5F4E530ec9DFA1DD8c483F188C", + "topics": [ + "0xa4b627609e711628747558b171b04b9636337afdadac065ee7113fb91eab0b72", + "0x000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441", + "0x00000000000000000000000040986a85b4cfcdb054a6cbfb1210194fee51af88" + ], + "data": "0x000000000000000000000000000000000000000000000fe1c215e8f838e000000000000000000000000000000000000000000000000000000000000060d0d26d0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 201, + "removed": false, + "decoded": { + "signature": "UnStake(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "UnStake(address indexed userAddress,address indexed unStakedtokenAddress,uint256 unStakedAmount,uint256 time,uint256 stakeId)", + "name": "UnStake", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "indexed": true, + "internalType": "address", + "name": "unStakedtokenAddress", + "type": "address", + "decoded": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "unStakedAmount", + "type": "uint256", + "decoded": "75000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "time", + "type": "uint256", + "decoded": "1624298093" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "stakeId", + "type": "uint256", + "decoded": "0" + } + ] + } + } + ], + "logsBloom": "0x00000000000004000000004800000008020000008000000000000000010204000000000000000004000000000000000000000000000010000000000000040000000000000040000000000008000001200000000000000000020020200000000000000000000000800000000000000100000000000000000000000010000000800040000000000000000800000000000004000008000000000000000000200000000000000800400000000000200000200000100000000000000000000200000000800002000010000000000001000000000000000000000000000000000000000400000000000000000008000000000000000000010000000000010000000000", + "status": true, + "to": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionIndex": 140, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x267c9504cb5e570e4fb923be5fcdaa9460789441", + "callType": "call", + "gas": "0x43fd3", + "input": "0xd9393814000000000000000000000000267c9504cb5e570e4fb923be5fcdaa94607894410000000000000000000000000000000000000000000000000000000000000000", + "to": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3d546", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 10, + "traceAddress": [], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "staticcall", + "gas": "0x391a5", + "input": "0x70a082310000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "to": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9b8", + "output": "0x000000000000000000000000000000000000000000018936418f107ed9caec37" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "call", + "gas": "0x384bb", + "input": "0xa9059cbb000000000000000000000000267c9504cb5e570e4fb923be5fcdaa9460789441000000000000000000000000000000000000000000000fe1c215e8f838e00000", + "to": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7f02", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "staticcall", + "gas": "0x2bda4", + "input": "0x70a082310000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "to": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1e8", + "output": "0x0000000000000000000000000000000000000000000179547f792786a0eaec37" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "call", + "gas": "0x2b9f1", + "input": "0xa9059cbb000000000000000000000000267c9504cb5e570e4fb923be5fcdaa94607894410000000000000000000000000000000000000000000000445dc59c9f13ec7a00", + "to": "0x40986a85b4cfcdb054a6cbfb1210194fee51af88", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xee6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "staticcall", + "gas": "0x2527f", + "input": "0x70a082310000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "to": "0xc3eb2622190c57429aac3901808994443b64b466", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ed", + "output": "0x00000000000000000000000000000000000000000000c427059b9fd5da524cc7" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "call", + "gas": "0x246e8", + "input": "0xa9059cbb000000000000000000000000267c9504cb5e570e4fb923be5fcdaa946078944100000000000000000000000000000000000000000000001049660ba172066f12", + "to": "0xc3eb2622190c57429aac3901808994443b64b466", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2b52", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [5], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "staticcall", + "gas": "0x1d2b4", + "input": "0x70a082310000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "to": "0x1de5e000c41c8d35b9f1f4985c23988f05831057", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa4f", + "output": "0x0000000000000000000000000000000000000000000e3c0a271189d6938cf554" + }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "call", + "gas": "0x1c6bd", + "input": "0xa9059cbb000000000000000000000000267c9504cb5e570e4fb923be5fcdaa946078944100000000000000000000000000000000000000000000014440e020a7001580f6", + "to": "0x1de5e000c41c8d35b9f1f4985c23988f05831057", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6e43", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [7], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "staticcall", + "gas": "0x110a4", + "input": "0x70a082310000000000000000000000004460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "to": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9d7", + "output": "0x000000000000000000000000000000000000000000009d90c66bdbe939fc275b" + }, + "subtraces": 0, + "traceAddress": [8], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + }, + { + "action": { + "from": "0x4460788bc43dab5f4e530ec9dfa1dd8c483f188c", + "callType": "call", + "gas": "0x10522", + "input": "0xa9059cbb000000000000000000000000267c9504cb5e570e4fb923be5fcdaa946078944100000000000000000000000000000000000000000000000302182522e523a83e", + "to": "0x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7f4e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [9], + "transactionHash": "0x47fd88e47f0fa5f000a392d07633cb8ca9419624a4bc31371e25d5fe854c9f59", + "transactionPosition": 140, + "type": "call" + } + ], + "decoded": { + "signature": "unStake(address,uint256)", + "signature_with_arg_names": "unStake(address userAddress,uint256 stakeId)", + "name": "unStake", + "decoded": [ + { + "internalType": "address", + "name": "userAddress", + "type": "address", + "decoded": "0x267c9504cb5e570e4fb923be5fcdaa9460789441" + }, + { + "internalType": "uint256", + "name": "stakeId", + "type": "uint256", + "decoded": "0" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB", + "gas": 221403, + "gasPrice": "32000000000", + "hash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000111111111117dc0aa78b770fa6a738034120c302000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000001e8287c68bb25dd44e4000000000000000000000000000000000000000000000000b4fec759edf74e0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000000b4fec759edf74e0d0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb00000000000000000000000000000000000000000000000000000000", + "nonce": 5327, + "to": "0xE592427A0AEce92De3Edee1F18E0157C05861564", + "transactionIndex": 141, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7f7510ca769150fe589ff02e14de3ec401bcb89335b412ae44362f8db1ca14fb", + "s": "0x25f7b8758deb1282b2d461f1df231e56dfc90d76ffcfb435f1b6242b4ff71396", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "9338931", + "effectiveGasPrice": "32000000000", + "from": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb", + "gasUsed": "148146", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d35efae4097d005720608eaf37e42a5936c94b44", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5", + "blockNumber": 12679108, + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 202, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x111111111117dC0aa78b770fA6A738034120C302", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "0x000000000000000000000000d35efae4097d005720608eaf37e42a5936c94b44" + ], + "data": "0x0000000000000000000000000000000000000000000001e8287c68bb25dd44e4", + "blockNumber": 12679108, + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 203, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xd35efae4097d005720608eaf37e42a5936c94b44" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "9004928429781893858532" + } + ] + } + }, + { + "address": "0x111111111117dC0aa78b770fA6A738034120C302", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffff5693a36c2943282bb1b", + "blockNumber": 12679108, + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 204, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640563989452655578131235781403" + } + ] + } + }, + { + "address": "0xd35EFAE4097d005720608Eaf37E42a5936C94B44", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x0000000000000000000000000000000000000000000001e8287c68bb25dd44e4ffffffffffffffffffffffffffffffffffffffffffffffff4ad2e2f20334394b000000000000000000000000000000000000000009bebaa5fe496506627821b00000000000000000000000000000000000000000000014c2650e8772b238f632ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00a4", + "blockNumber": 12679108, + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 205, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5", + "blockNumber": 12679108, + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 206, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00000002000000000000000040000000000000000000000000000000000000040000000000000000000000000000000002000000080020000000000000200000000000000000000800000008000000000000000000400000000000000000000100000000000000000000100000000000000000000000040000000010000800000000100000000080000000000000000000000000000000000000000000000000020000000000000000000000800000000000000000400000000000000000000004000002000000000000000000000000010000000000000000000002000000000010200000000002000800000000000004010000000000000000000000000000", + "status": true, + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionIndex": 141, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb", + "callType": "call", + "gas": "0x30083", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000111111111117dc0aa78b770fa6a738034120c302000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000001e8287c68bb25dd44e4000000000000000000000000000000000000000000000000b4fec759edf74e0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000000b4fec759edf74e0d0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb00000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x26aae", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000b52d1d0dfccbc6b50000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x2efcf", + "input": "0x414bf389000000000000000000000000111111111117dc0aa78b770fa6a738034120c302000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000001e8287c68bb25dd44e4000000000000000000000000000000000000000000000000b4fec759edf74e0d0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x217ff", + "output": "0x000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x2c8fa", + "input": "0x128acb08000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000001e8287c68bb25dd44e400000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000000000000000000002b111111111117dc0aa78b770fa6a738034120c302000bb8c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1faf0", + "output": "0x0000000000000000000000000000000000000000000001e8287c68bb25dd44e4ffffffffffffffffffffffffffffffffffffffffffffffff4ad2e2f20334394b" + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "callType": "call", + "gas": "0x1c072", + "input": "0xa9059cbb000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "callType": "staticcall", + "gas": "0x14038", + "input": "0x70a08231000000000000000000000000d35efae4097d005720608eaf37e42a5936c94b44", + "to": "0x111111111117dc0aa78b770fa6a738034120c302", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ce", + "output": "0x000000000000000000000000000000000000000000002c38815c5fc52c3d744f" + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "callType": "call", + "gas": "0x1337b", + "input": "0xfa461e330000000000000000000000000000000000000000000001e8287c68bb25dd44e4ffffffffffffffffffffffffffffffffffffffffffffffff4ad2e2f20334394b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000000000000000000000000000000000000000002b111111111117dc0aa78b770fa6a738034120c302000bb8c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5758", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x12051", + "input": "0x23b872dd0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000d35efae4097d005720608eaf37e42a5936c94b440000000000000000000000000000000000000000000001e8287c68bb25dd44e4", + "to": "0x111111111117dc0aa78b770fa6a738034120c302", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4780", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "callType": "staticcall", + "gas": "0xdb07", + "input": "0x70a08231000000000000000000000000d35efae4097d005720608eaf37e42a5936c94b44", + "to": "0x111111111117dc0aa78b770fa6a738034120c302", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000002e20a9d8c880521ab933" + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0xdd77", + "input": "0x49404b7c000000000000000000000000000000000000000000000000b4fec759edf74e0d0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x46fd", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "staticcall", + "gas": "0xd741", + "input": "0x70a08231000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0xd378", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000b52d1d0dfccbc6b5", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 1], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0xb52d1d0dfccbc6b5" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x94a9", + "input": "0x", + "to": "0x6e3aa85db95bba36276a37ed93b12b7ab0782afb", + "value": "0xb52d1d0dfccbc6b5" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x7371c3ca547713205fbbf78d5d44ebee67cc8cc9e53ca6c6142e0e8bbab05038", + "transactionPosition": 141, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xfA7C324CB1d3b0128fEAa246c93417829Bc23809", + "gas": 152474, + "gasPrice": "32000000000", + "hash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "input": "0x7ff36ab50000000000000000000000000000000000000000000000bcd93881426652709e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc238090000000000000000000000000000000000000000000000000000000060d0d2790000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f938424f7210f31df2aee3011291b658f872e91e", + "nonce": 1533, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 142, + "value": "750000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xff08453def7a3c23dc732b5336bca71a399582c8605c2ca8b42c61115ed1f9eb", + "s": "0x131b0542931774ed0aa183cc8668a002d87df57cbc150448d339fae5fc58b9a6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "9430364", + "effectiveGasPrice": "32000000000", + "from": "0xfa7c324cb1d3b0128feaa246c93417829bc23809", + "gasUsed": "91433", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000a688906bd8b0000", + "blockNumber": 12679108, + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 207, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63" + ], + "data": "0x0000000000000000000000000000000000000000000000000a688906bd8b0000", + "blockNumber": 12679108, + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 208, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xF938424F7210f31dF2Aee3011291b658f872e91e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "0x000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc23809" + ], + "data": "0x0000000000000000000000000000000000000000000000be5dc78f1f7f511df9", + "blockNumber": 12679108, + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 209, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0c2445bec45c443c58f44f8e0a5796960e052d63" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xfa7c324cb1d3b0128feaa246c93417829bc23809" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "3511638901136150306297" + } + ] + } + }, + { + "address": "0x0C2445BEc45c443c58f44f8e0a5796960E052D63", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000001bb96095b46619e9e100000000000000000000000000000000000000000001fbd92c27b56adb382aa2", + "blockNumber": 12679108, + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 210, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x0C2445BEc45c443c58f44f8e0a5796960E052D63", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc23809" + ], + "data": "0x0000000000000000000000000000000000000000000000000a688906bd8b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000be5dc78f1f7f511df9", + "blockNumber": 12679108, + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 211, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x0020000000008000000001008000000000000000000000000001000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000020000800000120000000000000000000000000c000000000000000000000000000000000000000000000000000000000000010000000000000000000000000084000000000000000000001000020080000004000000000000000000000000000000000000000000000000000000010000000000000000000000002000000000000000020400000000000000000001000000000000020000000200000000000000000004000000000000000000000400040000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionIndex": 142, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfa7c324cb1d3b0128feaa246c93417829bc23809", + "callType": "call", + "gas": "0x1fa4e", + "input": "0x7ff36ab50000000000000000000000000000000000000000000000bcd93881426652709e0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc238090000000000000000000000000000000000000000000000000000000060d0d2790000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f938424f7210f31df2aee3011291b658f872e91e", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xa688906bd8b0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x16489", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000a688906bd8b00000000000000000000000000000000000000000000000000be5dc78f1f7f511df9" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1e000", + "input": "0x0902f1ac", + "to": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000001baef80cada88ee9e100000000000000000000000000000000000000000001fc9789ef448a5a89489b0000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ad4a", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xa688906bd8b0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14c69", + "input": "0xa9059cbb0000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d630000000000000000000000000000000000000000000000000a688906bd8b0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x12587", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000be5dc78f1f7f511df9000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc2380900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x92a2", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "call", + "gas": "0xed65", + "input": "0xa9059cbb000000000000000000000000fa7c324cb1d3b0128feaa246c93417829bc238090000000000000000000000000000000000000000000000be5dc78f1f7f511df9", + "to": "0xf938424f7210f31df2aee3011291b658f872e91e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3316", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "staticcall", + "gas": "0xb8c2", + "input": "0x70a082310000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000001bb96095b46619e9e1" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + }, + { + "action": { + "from": "0x0c2445bec45c443c58f44f8e0a5796960e052d63", + "callType": "staticcall", + "gas": "0xb51f", + "input": "0x70a082310000000000000000000000000c2445bec45c443c58f44f8e0a5796960e052d63", + "to": "0xf938424f7210f31df2aee3011291b658f872e91e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x207", + "output": "0x00000000000000000000000000000000000000000001fbd92c27b56adb382aa2" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x44a93885f0a86fcb58d6f54cf189af9e3f22ea230757bf0584109e59fdb05c73", + "transactionPosition": 142, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xEb4Db23c27253077Fb3080adda6C5C127b0dACAe", + "gas": 33751, + "gasPrice": "32000000000", + "hash": "0xb03310070054ac74fa00772e9904212ba8c7f38b1615b5eb0de7c5186545c690", + "input": "0x", + "nonce": 201, + "to": "0x8392F6669292fA56123F71949B52d883aE57e225", + "transactionIndex": 143, + "value": "999967478330082300", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x548c425a5098fb7163261866f29095a244867f1995e14295ac00e9eaa2144236", + "s": "0x1ec3e7d4096bd59449231614f0aeeb69be816a4bf9c9081205238af16e56399b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "9452865", + "effectiveGasPrice": "32000000000", + "from": "0xeb4db23c27253077fb3080adda6c5c127b0dacae", + "gasUsed": "22501", + "logs": [ + { + "address": "0x8392F6669292fA56123F71949B52d883aE57e225", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x000000000000000000000000eb4db23c27253077fb3080adda6c5c127b0dacae" + ], + "data": "0x0000000000000000000000000000000000000000000000000de0991f9ccec3fc", + "blockNumber": 12679108, + "transactionHash": "0xb03310070054ac74fa00772e9904212ba8c7f38b1615b5eb0de7c5186545c690", + "transactionIndex": 143, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 212, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed sender,uint256 value)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xeb4db23c27253077fb3080adda6c5c127b0dacae" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "999967478330082300" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000001000000000000000000000000000000000000000400000000000000004000000000000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000004000", + "status": true, + "to": "0x8392f6669292fa56123f71949b52d883ae57e225", + "transactionHash": "0xb03310070054ac74fa00772e9904212ba8c7f38b1615b5eb0de7c5186545c690", + "transactionIndex": 143, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xeb4db23c27253077fb3080adda6c5c127b0dacae", + "callType": "call", + "gas": "0x31cf", + "input": "0x", + "to": "0x8392f6669292fa56123f71949b52d883ae57e225", + "value": "0xde0991f9ccec3fc" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5dd", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xb03310070054ac74fa00772e9904212ba8c7f38b1615b5eb0de7c5186545c690", + "transactionPosition": 143, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x30f389A00Ac9E0c99F25d4a2F66079784D7CdAf9", + "gas": 538843, + "gasPrice": "32000000000", + "hash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "input": "0x791ac9470000000000000000000000000000000000000000000000038cfebef7541600000000000000000000000000000000000000000000000000000305ea73f857d6e100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000030f389a00ac9e0c99f25d4a2f66079784d7cdaf90000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 512, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 144, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x66180aa618ffc97bd16d4527e7c290a028cea90eadf73c8fd06bd95fe06e4cce", + "s": "0x7553c4cdfcf515002238de57fd8617c1ed12091d68ebd469cd7342f54b215939", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "9812013", + "effectiveGasPrice": "32000000000", + "from": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9", + "gasUsed": "359148", + "logs": [ + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000094079cd1a42aaaa", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 213, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564033735664986813895166321" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379" + ], + "data": "0x000000000000000000000000000000000000000000000000094079cd1a42aaaa", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 214, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "62879999999999999994" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 215, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564033735664986813895166321" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000085164c0fff122", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 216, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000000000002677ce657d82fc4c4720000000000000000000000000000000000000000000000022afda9e6076bc747", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 217, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000094079cd1a42aaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085164c0fff122", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 218, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000085164c0fff122", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 219, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000004a03ce68d215556", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 220, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564033735664986813895166321" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379" + ], + "data": "0x000000000000000000000000000000000000000000000000049cc12799f34b9d", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 221, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "62879999999999999994" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000037bbef32e09b9", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 222, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564033735664986813895166321" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000000428b2607ff891", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 223, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379" + ], + "data": "0x000000000000000000000000000000000000000000000000000428b2607ff891", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 224, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x00000000000000000000000000000000000000000000000000399bd20beda3b6", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 225, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "16215400118068150" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000267818318ffc9b8100f0000000000000000000000000000000000000000000000022b01d29867ebbfd8", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 226, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0x4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000049cc12799f34b9d000000000000000000000000000000000000000000000000000428b2607ff891", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 227, + "removed": false, + "decoded": { + "signature": "Mint(address,uint256,uint256)", + "signature_with_arg_names": "Mint(address indexed sender,uint256 amount0,uint256 amount1)", + "name": "Mint", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0", + "type": "uint256", + "decoded": "332352848349318045" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1", + "type": "uint256", + "decoded": "1170646495131793" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561" + ], + "data": "0x00000000000000000000000000000000000000000000000004a03ce68d215555000000000000000000000000000000000000000000000000000428b2607ff89100000000000000000000000000000000000000000000000004a03ce68d215556", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 228, + "removed": false, + "decoded": { + "signature": "SwapAndLiquify(uint256,uint256,uint256)", + "signature_with_arg_names": "SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived,uint256 tokensIntoLiqudity)", + "name": "SwapAndLiquify", + "decoded": [ + { + "indexed": false, + "internalType": "uint256", + "name": "tokensSwapped", + "type": "uint256", + "decoded": "333333333333333333" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "ethReceived", + "type": "uint256", + "decoded": "1170646495131793" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "tokensIntoLiqudity", + "type": "uint256", + "decoded": "333333333333333334" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000030f389a00ac9e0c99f25d4a2f66079784d7cdaf9", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379" + ], + "data": "0x00000000000000000000000000000000000000000000000368a2a2d8f48ffffa", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 229, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "62879999999999999994" + } + ] + } + }, + { + "address": "0xa1ab427451F19dF7445a22dEa7073800Ea3b687f", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000030f389a00ac9e0c99f25d4a2f66079784d7cdaf9", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffec9d06c065625464971", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 230, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564033735664986813895166321" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000030fe2b6e36805f5", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 231, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000026aee4c76fc83bf613900000000000000000000000000000000000000000000000227f1efe18483b9e3", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 232, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xA4B063c9e5F372d800d11bd9A245F0d4fDcca379", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000036cc95dfcba07512a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030fe2b6e36805f5", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 233, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000030fe2b6e36805f5", + "blockNumber": 12679108, + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 234, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200040000000000000000080000000000020000000000000010000000001000000000040000000000000000000000002000000080000000000000000200008000000000000000000000008000000200000000000400000000000008000000000000000020000000000000000000800000000008408040000000030000000000000000000000000004000000000000000000001000000080800004000002000020000000000000000000100000000000000000000000000000000000000000000000002000200000000000000020000400020000000001008001202000020000010200000000000000000000000000000000000000000680000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionIndex": 144, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9", + "callType": "call", + "gas": "0x7ded3", + "input": "0x791ac9470000000000000000000000000000000000000000000000038cfebef7541600000000000000000000000000000000000000000000000000000305ea73f857d6e100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000030f389a00ac9e0c99f25d4a2f66079784d7cdaf90000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x67778", "output": "0x" }, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x7ad63", + "input": "0x23b872dd00000000000000000000000030f389a00ac9e0c99f25d4a2f66079784d7cdaf9000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca3790000000000000000000000000000000000000000000000038cfebef754160000", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x57103", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "traceAddress": [0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "callType": "staticcall", + "gas": "0x6ef86", + "input": "0xad5c4648", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x113", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "callType": "call", + "gas": "0x6cfb8", + "input": "0x791ac947000000000000000000000000000000000000000000000000094079cd1a42aaaa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f0000000000000000000000000000000000000000000000000000000060d0d26d0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x23db3", "output": "0x" }, + "subtraces": 7, + "traceAddress": [0, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x6ac22", + "input": "0x23b872dd000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379000000000000000000000000000000000000000000000000094079cd1a42aaaa", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xbfd3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x5df0c", + "input": "0x0902f1ac", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000026773a5de0b158219c80000000000000000000000000000000000000000000000022b05fb4ac86bb8690000000000000000000000000000000000000000000000000000000060d0d1ce" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x5d36c", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8c4", + "output": "0x0000000000000000000000000000000000000000000002677ce657d82fc4c472" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x5c4cc", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085164c0fff1220000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x10403", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 1, 3], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "call", + "gas": "0x57a2d", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000085164c0fff122", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x5049d", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8c4", + "output": "0x0000000000000000000000000000000000000000000002677ce657d82fc4c472" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x4fa67", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000022afda9e6076bc747" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x4c30b", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000000085164c0fff122" + }, + "subtraces": 0, + "traceAddress": [0, 1, 4], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4bf55", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000000085164c0fff122", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 5], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x85164c0fff122" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 5, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x48086", + "input": "0x", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x85164c0fff122" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x37", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 6], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "callType": "call", + "gas": "0x47448", + "input": "0xf305d719000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f00000000000000000000000000000000000000000000000004a03ce68d2155560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d26d", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x428b2607ff891" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x19607", + "output": "0x000000000000000000000000000000000000000000000000049cc12799f34b9d000000000000000000000000000000000000000000000000000428b2607ff89100000000000000000000000000000000000000000000000000399bd20beda3b6" + }, + "subtraces": 6, + "traceAddress": [0, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x455e2", + "input": "0xe6a43905000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa04", + "output": "0x000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379" + }, + "subtraces": 0, + "traceAddress": [0, 2, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x4473b", + "input": "0x0902f1ac", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f8", + "output": "0x0000000000000000000000000000000000000000000002677ce657d82fc4c4720000000000000000000000000000000000000000000000022afda9e6076bc7470000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0, 2, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x43bfa", + "input": "0x23b872dd000000000000000000000000a1ab427451f19df7445a22dea7073800ea3b687f000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379000000000000000000000000000000000000000000000000049cc12799f34b9d", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7217", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 2, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x3afde", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x428b2607ff891" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x55d6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2, 3], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x359b3", + "input": "0xa9059cbb000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379000000000000000000000000000000000000000000000000000428b2607ff891", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcbe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 2, 4], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x34b85", + "input": "0x6a6278420000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x79d3", + "output": "0x00000000000000000000000000000000000000000000000000399bd20beda3b6" + }, + "subtraces": 3, + "traceAddress": [0, 2, 5], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x32f40", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8c4", + "output": "0x000000000000000000000000000000000000000000000267818318ffc9b8100f" + }, + "subtraces": 0, + "traceAddress": [0, 2, 5, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x3249b", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000022b01d29867ebbfd8" + }, + "subtraces": 0, + "traceAddress": [0, 2, 5, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x3180e", + "input": "0x017e7e58", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x90a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 2, 5, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x4e432e5511aef3e1bcef17537a0f47c41734c657", + "value": "0x428b2607ff891" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x24b7f", + "input": "0x0902f1ac", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f8", + "output": "0x000000000000000000000000000000000000000000000267818318ffc9b8100f0000000000000000000000000000000000000000000000022b01d29867ebbfd80000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x24790", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8c4", + "output": "0x00000000000000000000000000000000000000000000026aee4c76fc83bf6139" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x238f0", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030fe2b6e36805f50000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x949f", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "call", + "gas": "0x21d2f", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000030fe2b6e36805f5", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5a7a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x1c1c6", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xa1ab427451f19df7445a22dea7073800ea3b687f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8c4", + "output": "0x00000000000000000000000000000000000000000000026aee4c76fc83bf6139" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xa4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "callType": "staticcall", + "gas": "0x1b78f", + "input": "0x70a08231000000000000000000000000a4b063c9e5f372d800d11bd9a245f0d4fdcca379", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000227f1efe18483b9e3" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1a4d5", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000030fe2b6e36805f5" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1a120", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000030fe2b6e36805f5", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x30fe2b6e36805f5" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x16250", + "input": "0x", + "to": "0x30f389a00ac9e0c99f25d4a2f66079784d7cdaf9", + "value": "0x30fe2b6e36805f5" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0x2e55ad12a1f0ee5a47d8cd462b60777d09cdd85d00df29a67495fb747eedbda0", + "transactionPosition": 144, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "11501758286181452164306" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "883654538300447116" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298125" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x677c507BA41f4990cdDb826554523210Af37A154", + "gas": 291985, + "gasPrice": "32000000000", + "hash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "input": "0x5c11d795000000000000000000000000000000000000000000003011b1d5167467e0000000000000000000000000000000000000000000000000000000000002a2b3fd9500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000677c507ba41f4990cddb826554523210af37a1540000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000000000000030000000000000000000000004b86e0295e7d32433ffa6411b82b4f4e56a581e1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "nonce": 1841, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 145, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x6a0dcb47bb250ed0ce6f6ab394e3b1f724ec34a973ea939525417c33438ff774", + "s": "0x370ad71c16b93d50e5be83d2139ea68728ea3f677422da32f8336f0c1302f72b", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10038333", + "effectiveGasPrice": "32000000000", + "from": "0x677c507ba41f4990cddb826554523210af37a154", + "gasUsed": "226320", + "logs": [ + { + "address": "0x4B86e0295E7d32433FfA6411B82B4F4e56a581E1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10" + ], + "data": "0x000000000000000000000000000000000000000000002d3c9fb305f284306465", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 235, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xe9bd6ddc2b13f46715382f74534950e004399d10" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "213624803921568627450981" + } + ] + } + }, + { + "address": "0x4B86e0295E7d32433FfA6411B82B4F4e56a581E1", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000677c507ba41f4990cddb826554523210af37a154", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffefc32606d789e81a7ffff", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 236, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x677c507ba41f4990cddb826554523210af37a154" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640562812571584007913129639935" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc" + ], + "data": "0x0000000000000000000000000000000000000000000000005266f63faefd18ee", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 237, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xe9BD6Ddc2b13F46715382F74534950e004399D10", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000002b141eff336ae1ad611fd0000000000000000000000000000000000000000000000049839d8b542328dcd", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 238, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xe9BD6Ddc2b13F46715382F74534950e004399D10", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc" + ], + "data": "0x000000000000000000000000000000000000000000002d40a115ceb1eadd0efc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005266f63faefd18ee", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 239, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "0x000000000000000000000000677c507ba41f4990cddb826554523210af37a154" + ], + "data": "0x00000000000000000000000000000000000000000000000000000002a3df3976", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 240, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000000004e99e9d75bc400000000000000000000000000000000000000000000098e38eba10e525edef6", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 241, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000677c507ba41f4990cddb826554523210af37a154" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005266f63faefd18ee00000000000000000000000000000000000000000000000000000002a3df39760000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 242, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x10214000000000000000000080000000000000000000000000010400000010000000000000004040000000000000000002000000080000000000000000200000000000000000000008000008000000600000000000000000000000000000000000000000000008000000000000000000000000000000000000000010001000000000000000000000004000000000000000000000010000080000004000000000020400000000200200000000000000000000000000000000000000400000000000000002000000000000000000000000000000000000001000000000800020000058200400000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionIndex": 145, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x677c507ba41f4990cddb826554523210af37a154", + "callType": "call", + "gas": "0x41925", + "input": "0x5c11d795000000000000000000000000000000000000000000003011b1d5167467e0000000000000000000000000000000000000000000000000000000000002a2b3fd9500000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000677c507ba41f4990cddb826554523210af37a1540000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000000000000030000000000000000000000004b86e0295e7d32433ffa6411b82b4f4e56a581e1000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x32e84", "output": "0x" }, + "subtraces": 9, + "traceAddress": [], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x3f6fd", + "input": "0x23b872dd000000000000000000000000677c507ba41f4990cddb826554523210af37a154000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10000000000000000000000000000000000000000000003011b1d5167467e00000", + "to": "0x4b86e0295e7d32433ffa6411b82b4f4e56a581e1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x14051", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x4b86e0295e7d32433ffa6411b82b4f4e56a581e1", + "callType": "staticcall", + "gas": "0x39eb3", + "input": "0x18160ddd", + "to": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x954", + "output": "0x0000000000000000000000000000000000000000000002f427c2a5fbed86d8ef" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2af83", + "input": "0x70a08231000000000000000000000000677c507ba41f4990cddb826554523210af37a154", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2657", + "output": "0x00000000000000000000000000000000000000000000000000000000b8a48464" + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x288ed", + "input": "0x70a08231000000000000000000000000677c507ba41f4990cddb826554523210af37a154", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9e1", + "output": "0x00000000000000000000000000000000000000000000000000000000b8a48464" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x283c8", + "input": "0x0902f1ac", + "to": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000284014edd67fc2ff90301000000000000000000000000000000000000000000000004eaa0cef4f12fa6bb0000000000000000000000000000000000000000000000000000000060d0c359" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x27828", + "input": "0x70a08231000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10", + "to": "0x4b86e0295e7d32433ffa6411b82b4f4e56a581e1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x527", + "output": "0x00000000000000000000000000000000000000000002b141eff336ae1ad611fd" + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x26a73", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005266f63faefd18ee000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbd9a", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "callType": "call", + "gas": "0x22d3d", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000000000000000000000000000005266f63faefd18ee", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "callType": "staticcall", + "gas": "0x1f96f", + "input": "0x70a08231000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10", + "to": "0x4b86e0295e7d32433ffa6411b82b4f4e56a581e1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x527", + "output": "0x00000000000000000000000000000000000000000002b141eff336ae1ad611fd" + }, + "subtraces": 0, + "traceAddress": [4, 1], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xe9bd6ddc2b13f46715382f74534950e004399d10", + "callType": "staticcall", + "gas": "0x1f2c7", + "input": "0x70a08231000000000000000000000000e9bd6ddc2b13f46715382f74534950e004399d10", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000049839d8b542328dcd" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1a0e0", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000000004e9c8db6953a00000000000000000000000000000000000000000000098de684aacea361c6080000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [5], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x19536", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000098e38eba10e525edef6" + }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18d23", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000002a3df39760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000677c507ba41f4990cddb826554523210af37a15400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa0d5", "output": "0x" }, + "subtraces": 3, + "traceAddress": [7], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "call", + "gas": "0x15d1e", + "input": "0xa9059cbb000000000000000000000000677c507ba41f4990cddb826554523210af37a15400000000000000000000000000000000000000000000000000000002a3df3976", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x47f1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [7, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x154cd", + "input": "0xa9059cbb000000000000000000000000677c507ba41f4990cddb826554523210af37a15400000000000000000000000000000000000000000000000000000002a3df3976", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x44dc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [7, 0, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0x113df", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000004e99e9d75bc4" + }, + "subtraces": 1, + "traceAddress": [7, 1], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x10cb6", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000004e99e9d75bc4" + }, + "subtraces": 0, + "traceAddress": [7, 1, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "callType": "staticcall", + "gas": "0x10d3b", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000098e38eba10e525edef6" + }, + "subtraces": 0, + "traceAddress": [7, 2], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0xecc0", + "input": "0x70a08231000000000000000000000000677c507ba41f4990cddb826554523210af37a154", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x000000000000000000000000000000000000000000000000000000035c83bdda" + }, + "subtraces": 1, + "traceAddress": [8], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xe633", + "input": "0x70a08231000000000000000000000000677c507ba41f4990cddb826554523210af37a154", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x000000000000000000000000000000000000000000000000000000035c83bdda" + }, + "subtraces": 0, + "traceAddress": [8, 0], + "transactionHash": "0x271e04f60b2f5ae90eefe93fe5dfe848deb4863007b2f6cea1fef3cea1695a32", + "transactionPosition": 145, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForTokensSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForTokensSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForTokensSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "227000000000000000000000" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "11319639445" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x4b86e0295e7d32433ffa6411b82b4f4e56a581e1", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x677c507ba41f4990cddb826554523210af37a154" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x14D8EaF4d58F78910DA47fc2534489cc9D1EAeE9", + "gas": 596278, + "gasPrice": "32000000000", + "hash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "input": "0x627dd56a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000ea0000010000000000003d0ff0b013b800000206005501c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2111111111117dc0aa78b770fa6a738034120c302d35efae4097d005720608eaf37e42a5936c94b44000000000000000009bf9fc7f8f37c800000000001000bb802007d010ef1b8a0e726fc3948e15b23993015eb1627f210111111111117dc0aa78b770fa6a738034120c302000000000000000000000000000000000000000000000000000000000000000000000000000000000000009b1f625a0faa380000000000000000000000000000000000000000000000019e06823e5019e000000000000000000000000000000000000000000000000000", + "nonce": 10277, + "to": "0x0000000089341e263B85D84A0Eea39f47C37A9d2", + "transactionIndex": 146, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x96c57a75bf851f4d5c7680894acc2d72d007ec7648f4055763e5736c094c660b", + "s": "0x57b1a7ecce18de2ead95daabbfd4630db1082f490c916470eff0d95c4dde9085", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10100325", + "effectiveGasPrice": "32000000000", + "from": "0x14d8eaf4d58f78910da47fc2534489cc9d1eaee9", + "gasUsed": "61992", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionIndex": 146, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x14d8eaf4d58f78910da47fc2534489cc9d1eaee9", + "callType": "call", + "gas": "0x8bb52", + "input": "0x627dd56a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000ea0000010000000000003d0ff0b013b800000206005501c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2111111111117dc0aa78b770fa6a738034120c302d35efae4097d005720608eaf37e42a5936c94b44000000000000000009bf9fc7f8f37c800000000001000bb802007d010ef1b8a0e726fc3948e15b23993015eb1627f210111111111117dc0aa78b770fa6a738034120c302000000000000000000000000000000000000000000000000000000000000000000000000000000000000009b1f625a0faa380000000000000000000000000000000000000000000000019e06823e5019e000000000000000000000000000000000000000000000000000", + "to": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x9444", "output": "0x" }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + }, + { + "action": { + "from": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "callType": "delegatecall", + "gas": "0x879b7", + "input": "0xc64b3bb50000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005501c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2111111111117dc0aa78b770fa6a738034120c302d35efae4097d005720608eaf37e42a5936c94b44000000000000000009bf9fc7f8f37c800000000001000bb80000000000000000000000", + "to": "0x54d8a6a3ab830a75b8682f28315efaa4f42044f6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1bc5", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + }, + { + "action": { + "from": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "callType": "staticcall", + "gas": "0x84a35", + "input": "0x3850c7bd", + "to": "0xd35efae4097d005720608eaf37e42a5936c94b44", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa88", + "output": "0x000000000000000000000000000000000000000009bebaa5fe496506627821b0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00a400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + }, + { + "action": { + "from": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "callType": "staticcall", + "gas": "0x85071", + "input": "0xe7ff42c90000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0ef1b8a0e726fc3948e15b23993015eb1627f210", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d12", + "output": "0x00000000000000000000000000000000000000000000009b586269d8e2b52bf9" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + }, + { + "action": { + "from": "0x0000000089341e263b85d84a0eea39f47c37a9d2", + "callType": "staticcall", + "gas": "0x83175", + "input": "0xd7d3aab5000000000000000000000000111111111117dc0aa78b770fa6a738034120c302", + "to": "0x0ef1b8a0e726fc3948e15b23993015eb1627f210", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2a17", + "output": "0x000000000000000000000000000000000000000000019d6e978cd77dadf1ff70" + }, + "subtraces": 1, + "traceAddress": [2], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + }, + { + "action": { + "from": "0x0ef1b8a0e726fc3948e15b23993015eb1627f210", + "callType": "staticcall", + "gas": "0x8040b", + "input": "0x70a082310000000000000000000000000ef1b8a0e726fc3948e15b23993015eb1627f210", + "to": "0x111111111117dc0aa78b770fa6a738034120c302", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ce", + "output": "0x000000000000000000000000000000000000000000019d6e978cd77dadf1ff70" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x807707813135b3ca9052c6b833010877731d465ab4ae41847d62ab5babe2350f", + "transactionPosition": 146, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x324E0b53CefA84CF970833939249880f814557c6", + "gas": 615517, + "gasPrice": "32000000000", + "hash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "input": "0x9304c9340000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000003d70891b8994feb6cca7022b25c32be92ee3725000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a464095b4f000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012453f04e7c000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000002753b53fba44d056800000000000000000000000000000000000000000000000000010e1d7ae614ad0000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 1887, + "to": "0x62E59c89b2AA88F389B79079a3620EdFF8EC325f", + "transactionIndex": 147, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x5197281871654e2386c633b8dcc919b162ed3e4c394fb7bcbdbfc344dd435b77", + "s": "0x1406f7671e637a2e8b9cad77e2e524da843b4a5e9d8d296593c86f43ddbf4d2", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10502098", + "effectiveGasPrice": "32000000000", + "from": "0x324e0b53cefa84cf970833939249880f814557c6", + "gasUsed": "401773", + "logs": [ + { + "address": "0x288a17459b5d0ecc401f5ECdC166F447ea3Da13a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 243, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xf3F1A1D89c0A2A990FC9D17193365306f69f93C0", + "topics": [ + "0x7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 244, + "removed": false, + "decoded": { + "signature": "Withdrawn(address,uint256)", + "signature_with_arg_names": "Withdrawn(address indexed user,uint256 amount)", + "name": "Withdrawn", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "396287224039424748340" + } + ] + } + }, + { + "address": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x00000000000000000000000000000000000000000000000232d9d66640204ea1", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 245, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "732782642646319324961" + } + ] + } + }, + { + "address": "0xf3F1A1D89c0A2A990FC9D17193365306f69f93C0", + "topics": [ + "0xe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x00000000000000000000000000000000000000000000000232d9d66640204ea1", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 246, + "removed": false, + "decoded": { + "signature": "RewardPaid(address,uint256)", + "signature_with_arg_names": "RewardPaid(address indexed user,uint256 reward)", + "name": "RewardPaid", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "reward", + "type": "uint256", + "decoded": "40557683653912579745" + } + ] + } + }, + { + "address": "0x288a17459b5d0ecc401f5ECdC166F447ea3Da13a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 247, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0xCba27C8e7115b4Eb50Aa14999BC0866674a96eCB", + "topics": [ + "0x0c396cd989a39f4459b5fa1aed6a9a8dcdbc45908acfd67e028cd568da98982c", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa63c" + ], + "data": "0x0000000000000000000000000000000000000000000000159e303127541e216d000000000000000000000000000000000000000000000027b965fb0e991ed55a0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 248, + "removed": false, + "decoded": { + "signature": "Burn(address,int24,int24,uint128,uint256,uint256)", + "signature_with_arg_names": "Burn(address indexed owner,int24 indexed tickLower,int24 indexed tickUpper,uint128 amount,uint256 amount0,uint256 amount1)", + "name": "Burn", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": true, + "internalType": "int24", + "name": "tickLower", + "type": "int24", + "decoded": "-32160" + }, + { + "indexed": true, + "internalType": "int24", + "name": "tickUpper", + "type": "int24", + "decoded": "-22980" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "amount", + "type": "uint128", + "decoded": "398780290249760055661" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0", + "type": "uint256", + "decoded": "732782378784454006106" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1", + "type": "uint256", + "decoded": "0" + } + ] + } + }, + { + "address": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cba27c8e7115b4eb50aa14999bc0866674a96ecb", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a" + ], + "data": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 249, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "732782642646319324961" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cba27c8e7115b4eb50aa14999bc0866674a96ecb", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a" + ], + "data": "0x000000000000000000000000000000000000000000000000000000893dfcc936", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 250, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xCba27C8e7115b4Eb50Aa14999BC0866674a96eCB", + "topics": [ + "0x70935338e69775456a85ddef226c395fb668b63fa0115f5f20610b388e6ca9c0", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa63c" + ], + "data": "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000027b966eb09b9df5f21000000000000000000000000000000000000000000000000000000893dfcc936", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 251, + "removed": false, + "decoded": { + "signature": "Collect(address,address,int24,int24,uint128,uint128)", + "signature_with_arg_names": "Collect(address indexed owner,address recipient,int24 indexed tickLower,int24 indexed tickUpper,uint128 amount0,uint128 amount1)", + "name": "Collect", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": false, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": true, + "internalType": "int24", + "name": "tickLower", + "type": "int24", + "decoded": "-32160" + }, + { + "indexed": true, + "internalType": "int24", + "name": "tickUpper", + "type": "int24", + "decoded": "-22980" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "amount0", + "type": "uint128", + "decoded": "732782642646319324961" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "amount1", + "type": "uint128", + "decoded": "589450496310" + } + ] + } + }, + { + "address": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 252, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "732782642646319324961" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x00000000000000000000000000000000000000000000000000110d7f5acee18c", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 253, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x288a17459b5d0ecc401f5ECdC166F447ea3Da13a", + "topics": [ + "0x7239dff1718b550db7f36cbf69c665cfeb56d0e96b4fb76a5cba712961b65509" + ], + "data": "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f0000000000000000000000000000000000000000000000157b970aa4e78d6b34000000000000000000000000000000000000000000000027b966eb09b9df5f2100000000000000000000000000000000000000000000000000110d7f5acee18c0000000000000000000000000000000000000000000000159e303127541e216d", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 254, + "removed": false, + "decoded": { + "signature": "Burned(address,uint256,uint256,uint256,uint128)", + "signature_with_arg_names": "Burned(address receiver,uint256 burnAmount,uint256 amount0Out,uint256 amount1Out,uint128 liquidityBurned)", + "name": "Burned", + "decoded": [ + { + "indexed": false, + "internalType": "address", + "name": "receiver", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "burnAmount", + "type": "uint256", + "decoded": "396287224039424748340" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "732782642646319324961" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "4799915239596428" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidityBurned", + "type": "uint128", + "decoded": "398780290249760055661" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ], + "data": "0x00000000000000000000000000000000000000000000000000110d7f5acee18c", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 255, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed src,address indexed guy,uint256 wad)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x62e59c89b2aa88f389b79079a3620edff8ec325f" + }, + { + "indexed": true, + "name": "guy", + "type": "address", + "decoded": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "4799915239596428" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f" + ], + "data": "0x00000000000000000000000000000000000000000000000000110d7f5acee18c", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 256, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + }, + { + "address": "0x62E59c89b2AA88F389B79079a3620EdFF8EC325f", + "topics": [ + "0xf6d9b29bbf2ae698de33670961ec53f895af65801d2cdaced431cc6129865347", + "0x00000000000000000000000003d70891b8994feb6cca7022b25c32be92ee3725", + "0x000000000000000000000000324e0b53cefa84cf970833939249880f814557c6" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000037a63939e128d284e0eae5d3e517aad44f5204d40000000000000000000000002fca923c7535083f25f761dcf289d7d81f024dda0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004c4c6f675769746864726177416e64436c61696d656452657761726428616464726573732c75696e743235362c75696e743235362c75696e743235362c75696e743235362c75696e7432353629000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000474c6f6757697468647261774c697175696469747928616464726573732c75696e743235362c75696e743235362c75696e743235362c75696e743235362c75696e743235365b5d290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000000232d9d66640204ea10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000027b966eb09b9df5f2100000000000000000000000000000000000000000000000000110d7f5acee18c0000000000000000000000000000000000000000000000159e303127541e216d000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 257, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00000000000800000000000002000000000000008000000000000000000000000002000000000000040000000100000002000100080000000200000001600000000000000000000008000008000000802000000000400007000000000020000000080000020000000000200000000800000000000004040000000010000000000000020100008000000100400800000000008000020000000000000000000000220000000000040000000000000000010000000000000000400002000000000800020802000220000000000020080000000000000000040020000002000020000010298000461020000600000000000000054000000000000000000100002100", + "status": true, + "to": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionIndex": 147, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x324e0b53cefa84cf970833939249880f814557c6", + "callType": "call", + "gas": "0x8fb5d", + "input": "0x9304c9340000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000003d70891b8994feb6cca7022b25c32be92ee3725000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a464095b4f000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012453f04e7c000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000002753b53fba44d056800000000000000000000000000000000000000000000000000010e1d7ae614ad0000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7855d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "delegatecall", + "gas": "0x8cc9a", + "input": "0x9304c9340000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000003d70891b8994feb6cca7022b25c32be92ee3725000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a464095b4f000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012453f04e7c000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000002753b53fba44d056800000000000000000000000000000000000000000000000000010e1d7ae614ad0000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xfe02a32cbe0cb9ad9a945576a5bb53a3c123a3a3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x77a37", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x89e06", + "input": "0xdc9cc6459304c93400000000000000000000000000000000000000000000000000000000", + "to": "0xcba828153d3a85b30b5b912e1f2dacac5816ae9d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa44", + "output": "0x0000000000000000000000008a3462a50e1a9fe8c9e7d9023cacbd9a98d90021" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "delegatecall", + "gas": "0x8887c", + "input": "0x9304c9340000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000003d70891b8994feb6cca7022b25c32be92ee3725000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a464095b4f000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012453f04e7c000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000002753b53fba44d056800000000000000000000000000000000000000000000000000010e1d7ae614ad0000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x8a3462a50e1a9fe8c9e7d9023cacbd9a98d90021", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x75899", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 3, + "traceAddress": [0, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x846e5", + "input": "0xa0a32c0b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e494e53542d5354414b494e472d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b472d554e49535741502d41000000000000000000000000000000000000000000", + "to": "0x97b0b3a8bdefe8cb9563a3c610019ad10db8ad11", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1e74", + "output": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000037a63939e128d284e0eae5d3e517aad44f5204d40000000000000000000000002fca923c7535083f25f761dcf289d7d81f024dda" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "delegatecall", + "gas": "0x8170c", + "input": "0x64095b4f000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf30000000000000000000000000000000000000000000000000000000000000000", + "to": "0x37a63939e128d284e0eae5d3e517aad44f5204d4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2f644", + "output": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004c4c6f675769746864726177416e64436c61696d656452657761726428616464726573732c75696e743235362c75696e743235362c75696e743235362c75696e743235362c75696e7432353629000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000000232d9d66640204ea10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000369b5e7cf30000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 7, + "traceAddress": [0, 1, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x7e721", + "input": "0xb49e6a05", + "to": "0x729bf02a9a786529fc80498f8fd0051116061b13", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9fa", + "output": "0x00000000000000000000000053c4deafba1054ffc0dffc3993758261ee91a8f5" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x7d02a", + "input": "0x6cf8caf8000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0x53c4deafba1054ffc0dffc3993758261ee91a8f5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1264", + "output": "0x000000000000000000000000f3f1a1d89c0a2a990fc9d17193365306f69f93c00000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x7af3c", + "input": "0x70a0823100000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1eb5", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 2], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x77d26", + "input": "0x70a0823100000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa63", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 2, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x78460", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "to": "0xf3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1537b", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 3], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0xf3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "callType": "call", + "gas": "0x6a7ae", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "to": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8a72", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 3, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "delegatecall", + "gas": "0x67a1b", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f0000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "to": "0x9db7be212d8af680ea7e1ace9724e513d4a590d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x76fe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 3, 0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x634eb", + "input": "0x3d18b912", + "to": "0xf3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xb6d8", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 4], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0xf3f1a1d89c0a2a990fc9d17193365306f69f93c0", + "callType": "call", + "gas": "0x5fa6e", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f00000000000000000000000000000000000000000000000232d9d66640204ea1", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8d43", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 4, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x5e073", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f00000000000000000000000000000000000000000000000232d9d66640204ea1", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8a7f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 4, 0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x57edf", + "input": "0x70a0823100000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x551", + "output": "0x00000000000000000000000000000000000000000000000232d9d66640204ea1" + }, + "subtraces": 1, + "traceAddress": [0, 1, 1, 5], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x566d8", + "input": "0x70a0823100000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x293", + "output": "0x00000000000000000000000000000000000000000000000232d9d66640204ea1" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 5, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x56cbf", + "input": "0x61e3c944000000000000000000000000000000000000000000000000000000369b5e7cf30000000000000000000000000000000000000000000000157b970aa4e78d6b34", + "to": "0x8a5419cfc711b2343c17a6abf4b2bafabb06957f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5820", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 1, 6], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "delegatecall", + "gas": "0x51741", + "input": "0x53f04e7c000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000000000000000000000000002753b53fba44d056800000000000000000000000000000000000000000000000000010e1d7ae614ad0000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2fca923c7535083f25f761dcf289d7d81f024dda", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3a0a7", + "output": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000474c6f6757697468647261774c697175696469747928616464726573732c75696e743235362c75696e743235362c75696e743235362c75696e743235362c75696e743235365b5d29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000027b966eb09b9df5f2100000000000000000000000000000000000000000000000000110d7f5acee18c0000000000000000000000000000000000000000000000159e303127541e216d000000000000000000000000000000000000000000000000000000369b5e7cf300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 6, + "traceAddress": [0, 1, 2], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x4ff72", + "input": "0xa9c70eaa000000000000000000000000000000000000000000000000000000369b5e7cf3", + "to": "0x8a5419cfc711b2343c17a6abf4b2bafabb06957f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x377", + "output": "0x0000000000000000000000000000000000000000000000157b970aa4e78d6b34" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x4fa01", + "input": "0xfcd3533c0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2fb7b", + "output": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f2100000000000000000000000000000000000000000000000000110d7f5acee18c0000000000000000000000000000000000000000000000159e303127541e216d" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "delegatecall", + "gas": "0x4e472", + "input": "0xfcd3533c0000000000000000000000000000000000000000000000157b970aa4e78d6b3400000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f", + "to": "0x9db7be212d8af680ea7e1ace9724e513d4a590d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2f995", + "output": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f2100000000000000000000000000000000000000000000000000110d7f5acee18c0000000000000000000000000000000000000000000000159e303127541e216d" + }, + "subtraces": 10, + "traceAddress": [0, 1, 2, 1, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x49ce5", + "input": "0x514ea4bf0f6de95050f72b9c41ebaa876bff99ba207d251b7874af64c9fcbf22ea7993fd", + "to": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2335", + "output": "0x00000000000000000000000000000000000000000000389a8c9966ee267b0d980000000000000000000000000000000002206847e13e7bacf61d702dc853b28300000000000000000000000000000000000dc0cc358d68450288361122850b8c00000000000000000000000000000000000000000000000002745bdc0f7442c900000000000000000000000000000000000000000000000000016759c207ce55" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x46086", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd21", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 1, 0, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x44cf9", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa63", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 1, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x447d9", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9e6", + "output": "0x0000000000000000000000000000000000000000000000002ca514d2b7cd337d" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 2], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "call", + "gas": "0x428b4", + "input": "0xa34123a7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa63c0000000000000000000000000000000000000000000000159e303127541e216d", + "to": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcb93", + "output": "0x000000000000000000000000000000000000000000000027b965fb0e991ed55a0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 3], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x35c98", + "input": "0x514ea4bf0f6de95050f72b9c41ebaa876bff99ba207d251b7874af64c9fcbf22ea7993fd", + "to": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3f5", + "output": "0x000000000000000000000000000000000000000000003884ee6935c6d25cec2b0000000000000000000000000000000002206847e13e7bacf61d702dc853b28300000000000000000000000000000000000dc0cc358d68450288361122850b8c000000000000000000000000000000000000000000000027bbda56eaa893182300000000000000000000000000000000000000000000000000016759c207ce55" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 4], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "call", + "gas": "0x3515e", + "input": "0x4f1eb3d8000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13affffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa63c000000000000000000000000000000000000000000000027b966eb09b9df5f21000000000000000000000000000000000000000000000000000000893dfcc936", + "to": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd76e", + "output": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f21000000000000000000000000000000000000000000000000000000893dfcc936" + }, + "subtraces": 2, + "traceAddress": [0, 1, 2, 1, 0, 5], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "callType": "call", + "gas": "0x32f90", + "input": "0xa9059cbb000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8573", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 1, 0, 5, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x320c1", + "input": "0xa9059cbb000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x82af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 5, 0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0xcba27c8e7115b4eb50aa14999bc0866674a96ecb", + "callType": "call", + "gas": "0x2a70c", + "input": "0xa9059cbb000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a000000000000000000000000000000000000000000000000000000893dfcc936", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2a6e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 5, 1], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x27a60", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x551", + "output": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f21" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 1, 0, 6], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x26e6b", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x293", + "output": "0x000000000000000000000000000000000000000000000027b966eb09b9df5f21" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 6, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "staticcall", + "gas": "0x27279", + "input": "0x70a08231000000000000000000000000288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000002ca5155bf5c9fcb3" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 7], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "call", + "gas": "0x26ae5", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "to": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1557", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 1, 0, 8], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x6f40d4a6237c257fff2db00fa0510deeecd303eb", + "callType": "delegatecall", + "gas": "0x25f28", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f000000000000000000000000000000000000000000000027b966eb09b9df5f21", + "to": "0x31de2088f38ed7f8a4231de03973814eda1f8773", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1293", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 8, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "call", + "gas": "0x24f8f", + "input": "0xa9059cbb00000000000000000000000062e59c89b2aa88f389b79079a3620edff8ec325f00000000000000000000000000000000000000000000000000110d7f5acee18c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x624a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 1, 0, 9], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x20881", + "input": "0x0dfe1681", + "to": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2f6", + "output": "0x0000000000000000000000006f40d4a6237c257fff2db00fa0510deeecd303eb" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 2], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "delegatecall", + "gas": "0x1febe", + "input": "0x0dfe1681", + "to": "0x9db7be212d8af680ea7e1ace9724e513d4a590d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x11c", + "output": "0x0000000000000000000000006f40d4a6237c257fff2db00fa0510deeecd303eb" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 2, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "staticcall", + "gas": "0x20395", + "input": "0xd21220a7", + "to": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 3], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x288a17459b5d0ecc401f5ecdc166f447ea3da13a", + "callType": "delegatecall", + "gas": "0x1f9e6", + "input": "0xd21220a7", + "to": "0x9db7be212d8af680ea7e1ace9724e513d4a590d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x316", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 3, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x1fcad", + "input": "0x095ea7b3000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000110d7f5acee18c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5f64", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 4], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "call", + "gas": "0x19d64", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000000110d7f5acee18c", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x24b7", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 5], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "value": "0x110d7f5acee18c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x103", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 2, 5, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + }, + { + "action": { + "from": "0x62e59c89b2aa88f389b79079a3620edff8ec325f", + "callType": "delegatecall", + "gas": "0x85e", + "input": "0x", + "to": "0xfe02a32cbe0cb9ad9a945576a5bb53a3c123a3a3", + "value": "0x110d7f5acee18c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x66", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 5, 0, 0], + "transactionHash": "0xd47342f65b3575b449be8029eece04d75778d7e11c913c884a3362751cc0f5c3", + "transactionPosition": 147, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0De156cB2202C682B41D3fbE8b785238ecF3F647", + "gas": 156798, + "gasPrice": "32000000000", + "hash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "input": "0xddeae0330000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647", + "nonce": 105, + "to": "0x2Fc0E2Cfe5D6Ea300D555E5907319a5F7E09884f", + "transactionIndex": 148, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xd94cae890c20993db9fd9c7a3d58481a915fea7c1ba1c3bfee4b3a382366fd24", + "s": "0x1a9b87929269ab0f30816ac15da98a4379c8bc0d6c2ab994e4f7e988be804ec7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10653904", + "effectiveGasPrice": "32000000000", + "from": "0x0de156cb2202c682b41d3fbe8b785238ecf3f647", + "gasUsed": "151806", + "logs": [ + { + "address": "0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA", + "topics": [ + "0x06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc82614677987", + "0x0000000000000000000000002fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "0x0000000000000000000000002fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "0x0000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647" + ], + "data": "0x00000000000000000000000000000000000000000000049d92ae065c633ea90d0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionIndex": 148, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 258, + "removed": false, + "decoded": null + }, + { + "address": "0xF5581dFeFD8Fb0e4aeC526bE659CFaB1f8c781dA", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "0x0000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647" + ], + "data": "0x00000000000000000000000000000000000000000000049d92ae065c633ea90d", + "blockNumber": 12679108, + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionIndex": 148, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 259, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x2fc0e2cfe5d6ea300d555e5907319a5f7e09884f" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0de156cb2202c682b41d3fbe8b785238ecf3f647" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "21796174143420337400077" + } + ] + } + }, + { + "address": "0x2Fc0E2Cfe5D6Ea300D555E5907319a5F7E09884f", + "topics": [ + "0x8cbd7604eb6071638c24aa2c24e174455f4f3710122078c1e09e1e48926b7d01", + "0x0000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647", + "0x000000000000000000000000000000000000000000000000000000000000000c" + ], + "data": "0x00000000000000000000000000000000000000000000049d92ae065c633ea90d", + "blockNumber": 12679108, + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionIndex": 148, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 260, + "removed": false, + "decoded": { + "signature": "IncentiveClaimed(address,uint256,uint256)", + "signature_with_arg_names": "IncentiveClaimed(address indexed provider,uint256 indexed until,uint256 amount)", + "name": "IncentiveClaimed", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "provider", + "type": "address", + "decoded": "0x0de156cb2202c682b41d3fbe8b785238ecf3f647" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "until", + "type": "uint256", + "decoded": "12" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "21796174143420337400077" + } + ] + } + } + ], + "logsBloom": "0x00000100000000000000000000000000000002000000000000000000000000000000000000000200000000008000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000020800000000000000000400000000000000010000000000000000010000000020000000000000000000000000000800000000000008000000000080100000000000000000000080000080000000000000000000000000000000002000000000000002000000000000000000000000000002008000000200000081000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionIndex": 148, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0de156cb2202c682b41d3fbe8b785238ecf3f647", + "callType": "call", + "gas": "0x210c6", + "input": "0xddeae0330000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647", + "to": "0x2fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x20836", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionPosition": 148, + "type": "call" + }, + { + "action": { + "from": "0x2fc0e2cfe5d6ea300d555e5907319a5f7e09884f", + "callType": "call", + "gas": "0x15f15", + "input": "0xa9059cbb0000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f64700000000000000000000000000000000000000000000049d92ae065c633ea90d", + "to": "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x152db", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionPosition": 148, + "type": "call" + }, + { + "action": { + "from": "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", + "callType": "staticcall", + "gas": "0x14cff", + "input": "0xaabbb8ca0000000000000000000000002fc0e2cfe5d6ea300d555e5907319a5f7e09884f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe895", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionPosition": 148, + "type": "call" + }, + { + "action": { + "from": "0xf5581dfefd8fb0e4aec526be659cfab1f8c781da", + "callType": "staticcall", + "gas": "0x1836", + "input": "0xaabbb8ca0000000000000000000000000de156cb2202c682b41d3fbe8b785238ecf3f647b281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b", + "to": "0x1820a4b7618bde71dce8cdc73aab6c95905fad24", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x062430f3096b703eb64d654f475f7d67e2842cbe1ec3b2203d764dafd923e27c", + "transactionPosition": 148, + "type": "call" + } + ], + "decoded": { + "signature": "claimFor(address)", + "signature_with_arg_names": "claimFor(address provider)", + "name": "claimFor", + "decoded": [ + { + "internalType": "address", + "name": "provider", + "type": "address", + "decoded": "0x0de156cb2202c682b41d3fbe8b785238ecf3f647" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x965ff76e2bBEfA7E0183AF3CCB03eD6CEdb8D875", + "gas": 171106, + "gasPrice": "32000000000", + "hash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "input": "0x18cbafe500000000000000000000000000000000000000000000000000000000869d037b00000000000000000000000000000000000000000000000006c4a585c69e594d00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000965ff76e2bbefa7e0183af3ccb03ed6cedb8d8750000000000000000000000000000000000000000000000000000000060d0d6b1000000000000000000000000000000000000000000000000000000000000000200000000000000000000000021686f8ce003a95c99acd297e302faacf742f7d4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 243, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 149, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x5430d2da5da65188810ab5b8d1f6754e32713f6990be74647c372481e0da7bba", + "s": "0x4e63f353a5dfe1dc895abd55737da0752d57886ff48eb842532266e1ecf23e00", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10756911", + "effectiveGasPrice": "32000000000", + "from": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875", + "gasUsed": "103007", + "logs": [ + { + "address": "0x21686F8ce003a95c99aCd297E302FAACf742F7d4", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000965ff76e2bbefa7e0183af3ccb03ed6cedb8d875", + "0x0000000000000000000000005618f75443457cf662d3445477d71f3b088e089b" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000869d037b", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 261, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x5618f75443457cf662d3445477d71f3b088e089b" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "2258436987" + } + ] + } + }, + { + "address": "0x21686F8ce003a95c99aCd297E302FAACf742F7d4", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000965ff76e2bbefa7e0183af3ccb03ed6cedb8d875", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff1194d7ff", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 262, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007909129639935" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005618f75443457cf662d3445477d71f3b088e089b", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000006cd4f4f679c94a1", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 263, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x5618f75443457cF662d3445477D71F3b088e089B", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000000000012d23cb9b5000000000000000000000000000000000000000000000000ed5ffb77cc309b47", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 264, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x5618f75443457cF662d3445477D71F3b088e089B", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000869d037b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd4f4f679c94a1", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 265, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000006cd4f4f679c94a1", + "blockNumber": 12679108, + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 266, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000000000000000000000000000000002000000080000000000000000200000020200001000000000040008000000200000000000400200000000000000000000000000000000000000000000000000000000000000040000000010000000000000000000000000004000000000000000000000000000080000004140000000020000000000000000000000000000000000000000000000000000100000000000004002000000000000000000000000400000000000001000000002000020000010200000000000000000000000000000000000000000000000400000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionIndex": 149, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875", + "callType": "call", + "gas": "0x24272", + "input": "0x18cbafe500000000000000000000000000000000000000000000000000000000869d037b00000000000000000000000000000000000000000000000006c4a585c69e594d00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000965ff76e2bbefa7e0183af3ccb03ed6cedb8d8750000000000000000000000000000000000000000000000000000000060d0d6b1000000000000000000000000000000000000000000000000000000000000000200000000000000000000000021686f8ce003a95c99acd297e302faacf742f7d4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1cbb3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000869d037b00000000000000000000000000000000000000000000000006cd4f4f679c94a1" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x226c2", + "input": "0x0902f1ac", + "to": "0x5618f75443457cf662d3445477d71f3b088e089b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000000000000124b9fb63a000000000000000000000000000000000000000000000000f42d4ac733cd2fe80000000000000000000000000000000000000000000000000000000060d0ce7d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x208b9", + "input": "0x23b872dd000000000000000000000000965ff76e2bbefa7e0183af3ccb03ed6cedb8d8750000000000000000000000005618f75443457cf662d3445477d71f3b088e089b00000000000000000000000000000000000000000000000000000000869d037b", + "to": "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4fe3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1b184", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006cd4f4f679c94a10000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5618f75443457cf662d3445477d71f3b088e089b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfdd4", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x5618f75443457cf662d3445477d71f3b088e089b", + "callType": "call", + "gas": "0x17732", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000006cd4f4f679c94a1", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x5618f75443457cf662d3445477d71f3b088e089b", + "callType": "staticcall", + "gas": "0x101a3", + "input": "0x70a082310000000000000000000000005618f75443457cf662d3445477d71f3b088e089b", + "to": "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x295", + "output": "0x00000000000000000000000000000000000000000000000000000012d23cb9b5" + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x5618f75443457cf662d3445477d71f3b088e089b", + "callType": "staticcall", + "gas": "0xfd82", + "input": "0x70a082310000000000000000000000005618f75443457cf662d3445477d71f3b088e089b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000ed5ffb77cc309b47" + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xb5ac", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000006cd4f4f679c94a1", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x6cd4f4f679c94a1" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x76a4", + "input": "0x", + "to": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875", + "value": "0x6cd4f4f679c94a1" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x90f4de6a3aac101a7e0b7c60e91ee4656222a5ec41d9fca18d0385c2a5e57334", + "transactionPosition": 149, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETH(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETH(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETH", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "2258436987" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "487696653644355917" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x21686f8ce003a95c99acd297e302faacf742f7d4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x965ff76e2bbefa7e0183af3ccb03ed6cedb8d875" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x356f029FB2f673ca083ea223D5835F4ac00539DD", + "gas": 21000, + "gasPrice": "32000000000", + "hash": "0x708abd4477dcec5e4956bb48d79f44fbb78abcce3171be3dc259c454963e6985", + "input": "0x", + "nonce": 2947, + "to": "0x25447DeDF95735Ec2F5E997AB5B7368DE62c4920", + "transactionIndex": 150, + "value": "703000000000000000", + "type": 0, + "v": "0x1b", + "r": "0x310c3bd55e85853e490871b76f6c99b536b059f4d760c18cf251e8378f02f725", + "s": "0xfbe2fa55ebc4f9f78709fc8399ca533beb59e64a38aa771a34a5973293989cf", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10777911", + "effectiveGasPrice": "32000000000", + "from": "0x356f029fb2f673ca083ea223d5835f4ac00539dd", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x25447dedf95735ec2f5e997ab5b7368de62c4920", + "transactionHash": "0x708abd4477dcec5e4956bb48d79f44fbb78abcce3171be3dc259c454963e6985", + "transactionIndex": 150, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x356f029fb2f673ca083ea223d5835f4ac00539dd", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x25447dedf95735ec2f5e997ab5b7368de62c4920", + "value": "0x9c18ec67d198000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x708abd4477dcec5e4956bb48d79f44fbb78abcce3171be3dc259c454963e6985", + "transactionPosition": 150, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x31bb232EF43aC7E1Aa22f93c84c67f05A625E4Ab", + "gas": 21000, + "gasPrice": "32000000000", + "hash": "0xf34ace4f971dad224726a84091979ca01662aa9a542ba94e649f194eb65dc80c", + "input": "0x", + "nonce": 11, + "to": "0x533108D46c397b1fe3413073408aceF1cD5Dd6b1", + "transactionIndex": 151, + "value": "88156500000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xf6fc39891b3968fe69fa29f322d8e1aa9a40b397e941d7a76404944fd9f28a0", + "s": "0x52fd57cecbc565ffcf2a08ac133a631e6eac1a650c86eb75a0a475bbde52b4ad", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10798911", + "effectiveGasPrice": "32000000000", + "from": "0x31bb232ef43ac7e1aa22f93c84c67f05a625e4ab", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x533108d46c397b1fe3413073408acef1cd5dd6b1", + "transactionHash": "0xf34ace4f971dad224726a84091979ca01662aa9a542ba94e649f194eb65dc80c", + "transactionIndex": 151, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x31bb232ef43ac7e1aa22f93c84c67f05a625e4ab", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x533108d46c397b1fe3413073408acef1cd5dd6b1", + "value": "0x13931dea3244800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xf34ace4f971dad224726a84091979ca01662aa9a542ba94e649f194eb65dc80c", + "transactionPosition": 151, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x704f378E4d703FeA64B76a8a9843fA7AfD0d6525", + "gas": 55950, + "gasPrice": "32000000000", + "hash": "0x3a9d53ff2c78ea11680fd1c23defef3eae3da356164e8aa3ab5c0bb0944a080f", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 13, + "to": "0xc73C167E7a4Ba109e4052f70D5466D0C312A344D", + "transactionIndex": 152, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xc1aae4ac13913f68e3a8e065cdb9f38b4f0e7d11ac6dfb7812fffc468a13c976", + "s": "0x772a6b4d76c2a9c376707d4f2121c519a7e7e151b65cbf067be3c6372a726d33", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10845536", + "effectiveGasPrice": "32000000000", + "from": "0x704f378e4d703fea64b76a8a9843fa7afd0d6525", + "gasUsed": "46625", + "logs": [ + { + "address": "0xc73C167E7a4Ba109e4052f70D5466D0C312A344D", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000704f378e4d703fea64b76a8a9843fa7afd0d6525", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x3a9d53ff2c78ea11680fd1c23defef3eae3da356164e8aa3ab5c0bb0944a080f", + "transactionIndex": 152, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 267, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x704f378e4d703fea64b76a8a9843fa7afd0d6525" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200004000000000000000000000000000004000000000000000000000000000000000000000000000020000000000000000000020000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000020000010000001000000000000000000000000000000000008000000000000000000", + "status": true, + "to": "0xc73c167e7a4ba109e4052f70d5466d0c312a344d", + "transactionHash": "0x3a9d53ff2c78ea11680fd1c23defef3eae3da356164e8aa3ab5c0bb0944a080f", + "transactionIndex": 152, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x704f378e4d703fea64b76a8a9843fa7afd0d6525", + "callType": "call", + "gas": "0x84d6", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xc73c167e7a4ba109e4052f70d5466d0c312a344d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6069", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3a9d53ff2c78ea11680fd1c23defef3eae3da356164e8aa3ab5c0bb0944a080f", + "transactionPosition": 152, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x8F941Cc8b37006345E63e1Ebd5F5C5590D10E7B0", + "gas": 21000, + "gasPrice": "32000000000", + "hash": "0x424dd3e8070984fdb6344c88ebbfd9bec2385603e43941714995e7735fba89f5", + "input": "0x", + "nonce": 1, + "to": "0x8F941Cc8b37006345E63e1Ebd5F5C5590D10E7B0", + "transactionIndex": 153, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xc717d0c25e34f089cbb9afecd4e5836df707d1aaf99322ab3a5110b5349c145e", + "s": "0x6c830293faabeee86d38ec6c482481059a7ec7f6949bc2dc73936f365f3cc7a0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10866536", + "effectiveGasPrice": "32000000000", + "from": "0x8f941cc8b37006345e63e1ebd5f5c5590d10e7b0", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x8f941cc8b37006345e63e1ebd5f5c5590d10e7b0", + "transactionHash": "0x424dd3e8070984fdb6344c88ebbfd9bec2385603e43941714995e7735fba89f5", + "transactionIndex": 153, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x8f941cc8b37006345e63e1ebd5f5c5590d10e7b0", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x8f941cc8b37006345e63e1ebd5f5c5590d10e7b0", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x424dd3e8070984fdb6344c88ebbfd9bec2385603e43941714995e7735fba89f5", + "transactionPosition": 153, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xEaED6aDa4363366C21aC851e30ac255D87F823E4", + "gas": 180932, + "gasPrice": "32000000000", + "hash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000cc8fa225d80b9c7d42f96e9570156c65d6caaa25000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d909000000000000000000000000000000000000000000000000000000000000092d000000000000000000000000000000000000000000000000020260dccc9b6f09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000000020260dccc9b6f09000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e400000000000000000000000000000000000000000000000000000000", + "nonce": 54, + "to": "0xE592427A0AEce92De3Edee1F18E0157C05861564", + "transactionIndex": 154, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x4cc955a54a1e94d14cecf8186676d4508c6223eb929ba8c35ac60f67ed01214a", + "s": "0x3ccc586bf3a80463529780899a88801c3d0524b1e055d65a31d5084130d91e16", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "10980956", + "effectiveGasPrice": "32000000000", + "from": "0xeaed6ada4363366c21ac851e30ac255d87f823e4", + "gasUsed": "114420", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d124c5808a0d89738e0aef655c0aa19ec6175811", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x0000000000000000000000000000000000000000000000000204f3444da154b6", + "blockNumber": 12679108, + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionIndex": 154, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 268, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xCC8Fa225D80b9c7D42F96e9570156c65D6cAAa25", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e4", + "0x000000000000000000000000d124c5808a0d89738e0aef655c0aa19ec6175811" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000092d", + "blockNumber": 12679108, + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionIndex": 154, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 269, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed _from,address indexed _to,uint256 _value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_from", + "type": "address", + "decoded": "0xeaed6ada4363366c21ac851e30ac255d87f823e4" + }, + { + "indexed": true, + "internalType": "address", + "name": "_to", + "type": "address", + "decoded": "0xd124c5808a0d89738e0aef655c0aa19ec6175811" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "_value", + "type": "uint256", + "decoded": "2349" + } + ] + } + }, + { + "address": "0xD124C5808A0d89738E0aeF655C0Aa19EC6175811", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffffdfb0cbbb25eab4a000000000000000000000000000000000000000000000000000000000000092d00000000000000000000000000000000000000000000021eeb9791e7cc9502db000000000000000000000000000000000000000000000000000193905cc06b66fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb2705", + "blockNumber": 12679108, + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionIndex": 154, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 270, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x0000000000000000000000000000000000000000000000000204f3444da154b6", + "blockNumber": 12679108, + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionIndex": 154, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 271, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00000002000000000000000000000000000000000000000000000000000000000000000000000000000000200000000002000000080020000000008000000000200000000000000800000008000000000000000000600100000000000000000000000000000200000000100000000000000000000000040000000010000800800000000004000000000000000000000000000000000000000000000040000000000000000000000000000000800000000800000000000000000000000000000000000002000000000010000000000000000000000000000000000002000000000000200000000000000000000000000000000000000000000400000000000000", + "status": true, + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionIndex": 154, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xeaed6ada4363366c21ac851e30ac255d87f823e4", + "callType": "call", + "gas": "0x262cc", + "input": "0xac9650d800000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000cc8fa225d80b9c7d42f96e9570156c65d6caaa25000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d909000000000000000000000000000000000000000000000000000000000000092d000000000000000000000000000000000000000000000000020260dccc9b6f09000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000000020260dccc9b6f09000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e400000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1e750", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000204f3444da154b60000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x2548e", + "input": "0x414bf389000000000000000000000000cc8fa225d80b9c7d42f96e9570156c65d6caaa25000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d909000000000000000000000000000000000000000000000000000000000000092d000000000000000000000000000000000000000000000000020260dccc9b6f090000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x194a1", + "output": "0x0000000000000000000000000000000000000000000000000204f3444da154b6" + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x23014", + "input": "0x128acb08000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092d000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e4000000000000000000000000000000000000000000000000000000000000002bcc8fa225d80b9c7d42f96e9570156c65d6caaa25002710c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xd124c5808a0d89738e0aef655c0aa19ec6175811", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x17775", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffdfb0cbbb25eab4a000000000000000000000000000000000000000000000000000000000000092d" + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xd124c5808a0d89738e0aef655c0aa19ec6175811", + "callType": "call", + "gas": "0x19fcc", + "input": "0xa9059cbb000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000204f3444da154b6", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xd124c5808a0d89738e0aef655c0aa19ec6175811", + "callType": "staticcall", + "gas": "0x11f93", + "input": "0x70a08231000000000000000000000000d124c5808a0d89738e0aef655c0aa19ec6175811", + "to": "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x98f", + "output": "0x000000000000000000000000000000000000000000000000000000000015de65" + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xd124c5808a0d89738e0aef655c0aa19ec6175811", + "callType": "call", + "gas": "0x11314", + "input": "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffffffdfb0cbbb25eab4a000000000000000000000000000000000000000000000000000000000000092d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e4000000000000000000000000000000000000000000000000000000000000002bcc8fa225d80b9c7d42f96e9570156c65d6caaa25002710c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4c23", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x1004e", + "input": "0x23b872dd000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e4000000000000000000000000d124c5808a0d89738e0aef655c0aa19ec6175811000000000000000000000000000000000000000000000000000000000000092d", + "to": "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3c2d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xd124c5808a0d89738e0aef655c0aa19ec6175811", + "callType": "staticcall", + "gas": "0xc5a9", + "input": "0x70a08231000000000000000000000000d124c5808a0d89738e0aef655c0aa19ec6175811", + "to": "0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1bf", + "output": "0x000000000000000000000000000000000000000000000000000000000015e792" + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0xc387", + "input": "0x49404b7c000000000000000000000000000000000000000000000000020260dccc9b6f09000000000000000000000000eaed6ada4363366c21ac851e30ac255d87f823e4", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x46fd", "output": "0x" }, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "staticcall", + "gas": "0xbdb9", + "input": "0x70a08231000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000204f3444da154b6" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0xb9f0", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000204f3444da154b6", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 1], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x204f3444da154b6" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x7b21", + "input": "0x", + "to": "0xeaed6ada4363366c21ac851e30ac255d87f823e4", + "value": "0x204f3444da154b6" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0xb92321459e932cf5e484ff7a5031674882c72f31c97ea73c005047b850241375", + "transactionPosition": 154, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x11ba2C5506E69A33e333fF9E9D7174aa52B59093", + "gas": 36015, + "gasPrice": "32000000000", + "hash": "0x8a44879d7bbf747703eba2c02465a7b65f26f5b3d8b538d40ef74067ba11b9db", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000002c68af0bb140000", + "nonce": 211, + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "transactionIndex": 155, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x9414fe4307965325471643dbd05428ae8aa93a7a1e7e534a6839af007574b390", + "s": "0x72f97c82a38a27313ed607baf9311be543fc65c5e8d6ce4477dd520e34c08cf6", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11001160", + "effectiveGasPrice": "32000000000", + "from": "0x11ba2c5506e69a33e333ff9e9d7174aa52b59093", + "gasUsed": "20204", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x00000000000000000000000011ba2c5506e69a33e333ff9e9d7174aa52b59093" + ], + "data": "0x00000000000000000000000000000000000000000000000002c68af0bb140000", + "blockNumber": 12679108, + "transactionHash": "0x8a44879d7bbf747703eba2c02465a7b65f26f5b3d8b538d40ef74067ba11b9db", + "transactionIndex": 155, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 272, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000000000000000400000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000200000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "transactionHash": "0x8a44879d7bbf747703eba2c02465a7b65f26f5b3d8b538d40ef74067ba11b9db", + "transactionIndex": 155, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x11ba2c5506e69a33e333ff9e9d7174aa52b59093", + "callType": "call", + "gas": "0x399f", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000002c68af0bb140000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3674", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x8a44879d7bbf747703eba2c02465a7b65f26f5b3d8b538d40ef74067ba11b9db", + "transactionPosition": 155, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x11ba2c5506e69a33e333ff9e9d7174aa52b59093", + "value": "0x2c68af0bb140000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x8a44879d7bbf747703eba2c02465a7b65f26f5b3d8b538d40ef74067ba11b9db", + "transactionPosition": 155, + "type": "call" + } + ], + "decoded": { + "signature": "withdraw(uint256)", + "signature_with_arg_names": "withdraw(uint256 wad)", + "name": "withdraw", + "decoded": [ + { "name": "wad", "type": "uint256", "decoded": "200000000000000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x52de05b025B803DcE0745696b3B4a982c843200B", + "gas": 339213, + "gasPrice": "32000000000", + "hash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "input": "0xa25983e5000000000000000000000000486fd1c9513a0d564e7ed3de5c748ea30d132f0000000000000000000000000000000000000000000014adf4b7320334b90000000000000000000000000000000000000000000000000000000000000060f85b84", + "nonce": 3, + "to": "0x6F38802c7f6F22d7CCf9Dba78d6a1E22a2c90038", + "transactionIndex": 156, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x6b25b8fca7722d6e49ba3cb368c6a50905d5a5f1dcd5f7907039a023a31fb00d", + "s": "0x613b212db40fb081815f52ce462169bb7eae5be2e8657abc07d94e8db02369e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11227302", + "effectiveGasPrice": "32000000000", + "from": "0x52de05b025b803dce0745696b3b4a982c843200b", + "gasUsed": "226142", + "logs": [ + { + "address": "0x59b7C4d8A8eE21347B0A05c35578E17B76AFBaB6", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000052de05b025b803dce0745696b3b4a982c843200b", + "0x0000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c90038" + ], + "data": "0x00000000000000000000000000000000000000000014adf4b7320334b9000000", + "blockNumber": 12679108, + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionIndex": 156, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 273, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x52de05b025b803dce0745696b3b4a982c843200b" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "25000000000000000000000000" + } + ] + } + }, + { + "address": "0x59b7C4d8A8eE21347B0A05c35578E17B76AFBaB6", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x00000000000000000000000052de05b025b803dce0745696b3b4a982c843200b", + "0x0000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c90038" + ], + "data": "0x000000000000000000000000000000000000000000cecb8f27f4200f3a000000", + "blockNumber": 12679108, + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionIndex": 156, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 274, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x52de05b025b803dce0745696b3b4a982c843200b" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "250000000000000000000000000" + } + ] + } + }, + { + "address": "0x6F38802c7f6F22d7CCf9Dba78d6a1E22a2c90038", + "topics": [ + "0x1a872618cb9c97923ca63d77e0427a2d4f0a95e71aaabfeffe8a21ea42f7c99d" + ], + "data": "0x000000000000000000000000486fd1c9513a0d564e7ed3de5c748ea30d132f0000000000000000000000000000000000000000000014adf4b7320334b90000000000000000000000000000000000000000000000000000000000000060f85b840000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionIndex": 156, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 275, + "removed": false, + "decoded": { + "signature": "Token_locked(address,uint256,uint256,uint256)", + "signature_with_arg_names": "Token_locked(address sender,uint256 amount,uint256 releasetime,uint256 index)", + "name": "Token_locked", + "decoded": [ + { + "indexed": false, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x486fd1c9513a0d564e7ed3de5c748ea30d132f00" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "25000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "releasetime", + "type": "uint256", + "decoded": "1626889092" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "index", + "type": "uint256", + "decoded": "0" + } + ] + } + } + ], + "logsBloom": "0x00000000000200000000000400000080000000000000000040000000000000000000000000000000000000000000000000000000000000000000000080200800000000000000000000000008002000000000000000000000000000000000000000000000000000000000004000000010000800000000000000000010000000000000000000000000000000000000000010000000000002000000000000000000020000000000000000000000000000000000000000000800000000000000000000100022000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionIndex": 156, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x52de05b025b803dce0745696b3b4a982c843200b", + "callType": "call", + "gas": "0x4d7d1", + "input": "0xa25983e5000000000000000000000000486fd1c9513a0d564e7ed3de5c748ea30d132f0000000000000000000000000000000000000000000014adf4b7320334b90000000000000000000000000000000000000000000000000000000000000060f85b84", + "to": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x31e22", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionPosition": 156, + "type": "call" + }, + { + "action": { + "from": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "callType": "staticcall", + "gas": "0x4acd5", + "input": "0xdd62ed3e00000000000000000000000052de05b025b803dce0745696b3b4a982c843200b0000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "to": "0x59b7c4d8a8ee21347b0a05c35578e17b76afbab6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xaed", + "output": "0x000000000000000000000000000000000000000000e37983df262343f3000000" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionPosition": 156, + "type": "call" + }, + { + "action": { + "from": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "callType": "staticcall", + "gas": "0x49db8", + "input": "0x70a082310000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "to": "0x59b7c4d8a8ee21347b0a05c35578e17b76afbab6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa34", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionPosition": 156, + "type": "call" + }, + { + "action": { + "from": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "callType": "call", + "gas": "0x48ed6", + "input": "0x23b872dd00000000000000000000000052de05b025b803dce0745696b3b4a982c843200b0000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c9003800000000000000000000000000000000000000000014adf4b7320334b9000000", + "to": "0x59b7c4d8a8ee21347b0a05c35578e17b76afbab6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x122ee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionPosition": 156, + "type": "call" + }, + { + "action": { + "from": "0x6f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "callType": "staticcall", + "gas": "0x36cba", + "input": "0x70a082310000000000000000000000006f38802c7f6f22d7ccf9dba78d6a1e22a2c90038", + "to": "0x59b7c4d8a8ee21347b0a05c35578e17b76afbab6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x264", + "output": "0x00000000000000000000000000000000000000000014adf4b7320334b9000000" + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x691fcf0ff3b6be54558ffeeef668c3bf59fe2b9615ddebd912f3c425eff8609d", + "transactionPosition": 156, + "type": "call" + } + ], + "decoded": { + "signature": "lockTokens(address,uint256,uint256)", + "signature_with_arg_names": "lockTokens(address receiver,uint256 amount,uint256 releasetime)", + "name": "lockTokens", + "decoded": [ + { + "internalType": "address", + "name": "receiver", + "type": "address", + "decoded": "0x486fd1c9513a0d564e7ed3de5c748ea30d132f00" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "25000000000000000000000000" + }, + { + "internalType": "uint256", + "name": "releasetime", + "type": "uint256", + "decoded": "1626889092" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xdbF9f9A56a46dFdb97706487Fa7BFD120D942D29", + "gas": 46156, + "gasPrice": "32000000000", + "hash": "0xb0aead49d13ada0133663b2f958f2a045b217e7a9fa81f89903e26278e87d66e", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c0000000000000000000000000000000000000000004a817c7ffffffdabf41c00", + "nonce": 31, + "to": "0x178c820f862B14f316509ec36b13123DA19A6054", + "transactionIndex": 157, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7541b880261d0561d93e83dcc608419a254716116b992bcbc4ecc21b1d1fed1", + "s": "0x44befb7b2f7b5742267504e53430c4482d3e162c2249ae6ba4298cfff059ab08", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11273458", + "effectiveGasPrice": "32000000000", + "from": "0xdbf9f9a56a46dfdb97706487fa7bfd120d942d29", + "gasUsed": "46156", + "logs": [ + { + "address": "0x178c820f862B14f316509ec36b13123DA19A6054", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000dbf9f9a56a46dfdb97706487fa7bfd120d942d29", + "0x000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c" + ], + "data": "0x0000000000000000000000000000000000000000004a817c7ffffffdabf41c00", + "blockNumber": 12679108, + "transactionHash": "0xb0aead49d13ada0133663b2f958f2a045b217e7a9fa81f89903e26278e87d66e", + "transactionIndex": 157, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 276, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0xdbf9f9a56a46dfdb97706487fa7bfd120d942d29" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x881d40237659c251811cec9c364ef91dc08d300c" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "90071992547409910000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000001000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000200000000040000000000000000000000000000000000000000000000000000000000000000000400000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000002000000080000000000000000000000000000000001008000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x178c820f862b14f316509ec36b13123da19a6054", + "transactionHash": "0xb0aead49d13ada0133663b2f958f2a045b217e7a9fa81f89903e26278e87d66e", + "transactionIndex": 157, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xdbf9f9a56a46dfdb97706487fa7bfd120d942d29", + "callType": "call", + "gas": "0x5f9c", + "input": "0x095ea7b3000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c0000000000000000000000000000000000000000004a817c7ffffffdabf41c00", + "to": "0x178c820f862b14f316509ec36b13123da19a6054", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5f9c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xb0aead49d13ada0133663b2f958f2a045b217e7a9fa81f89903e26278e87d66e", + "transactionPosition": 157, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address _spender,uint256 _value)", + "name": "approve", + "decoded": [ + { + "name": "_spender", + "type": "address", + "decoded": "0x881d40237659c251811cec9c364ef91dc08d300c" + }, + { + "name": "_value", + "type": "uint256", + "decoded": "90071992547409910000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xc9f5296Eb3ac266c94568D790b6e91ebA7D76a11", + "gas": 21040, + "gasPrice": "31900000000", + "hash": "0x8d8eae35412b25a39dcd439d2172b5c795f562d312f296ed22673757210be332", + "input": "0x", + "nonce": 154414, + "to": "0xE543ccD6a69f9fF8d49A53BE61f7d13187926a29", + "transactionIndex": 158, + "value": "505203000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x58b676023b50e71281a5f237b67d7bb284c141c7971946730d37ecccb6d12865", + "s": "0x3ae808b23c63a75f22b06c01517c5dc7c3b494ac2ee6d800ade4490a4bc12a66", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11294458", + "effectiveGasPrice": "31900000000", + "from": "0xc9f5296eb3ac266c94568d790b6e91eba7d76a11", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xe543ccd6a69f9ff8d49a53be61f7d13187926a29", + "transactionHash": "0x8d8eae35412b25a39dcd439d2172b5c795f562d312f296ed22673757210be332", + "transactionIndex": 158, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xc9f5296eb3ac266c94568d790b6e91eba7d76a11", + "callType": "call", + "gas": "0x28", + "input": "0x", + "to": "0xe543ccd6a69f9ff8d49a53be61f7d13187926a29", + "value": "0x702d773aa763000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8d8eae35412b25a39dcd439d2172b5c795f562d312f296ed22673757210be332", + "transactionPosition": 158, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x26E5A70242fcd1aEbC4B007383102c17a33B0CFB", + "gas": 52474, + "gasPrice": "31200000000", + "hash": "0x0c0b392c1b120fd6814b40ea6d2468646aa9216f4a1e6e95178887852844ea47", + "input": "0xa9059cbb000000000000000000000000eacd0a756f5d38aa6b64c7912ec91304c0741829000000000000000000000000000000000000000000000000507dbd4531440000", + "nonce": 242, + "to": "0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad", + "transactionIndex": 159, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x9bcbc2d6fd631140abbf208eed0486a38bfae9864fac9c556c27f93fbc1c6b42", + "s": "0x18f83d29e03f3ebd40618914e105d04fe00ea8b0831b1844d4e3cb71b1a05ae0", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11346932", + "effectiveGasPrice": "31200000000", + "from": "0x26e5a70242fcd1aebc4b007383102c17a33b0cfb", + "gasUsed": "52474", + "logs": [ + { + "address": "0xB5FE099475d3030DDe498c3BB6F3854F762A48Ad", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000026e5a70242fcd1aebc4b007383102c17a33b0cfb", + "0x000000000000000000000000eacd0a756f5d38aa6b64c7912ec91304c0741829" + ], + "data": "0x000000000000000000000000000000000000000000000000507dbd4531440000", + "blockNumber": 12679108, + "transactionHash": "0x0c0b392c1b120fd6814b40ea6d2468646aa9216f4a1e6e95178887852844ea47", + "transactionIndex": 159, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 277, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x26e5a70242fcd1aebc4b007383102c17a33b0cfb" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xeacd0a756f5d38aa6b64c7912ec91304c0741829" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "5800000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000008000000000000000000000010000100100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100000000000000000000000000000000000000000000000000200002000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xb5fe099475d3030dde498c3bb6f3854f762a48ad", + "transactionHash": "0x0c0b392c1b120fd6814b40ea6d2468646aa9216f4a1e6e95178887852844ea47", + "transactionIndex": 159, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x26e5a70242fcd1aebc4b007383102c17a33b0cfb", + "callType": "call", + "gas": "0x787a", + "input": "0xa9059cbb000000000000000000000000eacd0a756f5d38aa6b64c7912ec91304c0741829000000000000000000000000000000000000000000000000507dbd4531440000", + "to": "0xb5fe099475d3030dde498c3bb6f3854f762a48ad", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x787a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0c0b392c1b120fd6814b40ea6d2468646aa9216f4a1e6e95178887852844ea47", + "transactionPosition": 159, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xeacd0a756f5d38aa6b64c7912ec91304c0741829" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "5800000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x483CDC51a29Df38adeC82e1bb3f0AE197142a351", + "gas": 46458, + "gasPrice": "31200000000", + "hash": "0x3f4607fd52cf76fcc0fadecee9cf4ed5b3c12936c06d61123675dd7cdcee0496", + "input": "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 283, + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "transactionIndex": 160, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfb980eac8583a23d909c490556f7f4e3fa3a3f0df1c0037599ad2e98d5779f6", + "s": "0x35b00d2815fc3baea146e7bfad0cefe70fae796789da72388194abfc26d55eb5", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11393390", + "effectiveGasPrice": "31200000000", + "from": "0x483cdc51a29df38adec82e1bb3f0ae197142a351", + "gasUsed": "46458", + "logs": [ + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000483cdc51a29df38adec82e1bb3f0ae197142a351", + "0x0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0x3f4607fd52cf76fcc0fadecee9cf4ed5b3c12936c06d61123675dd7cdcee0496", + "transactionIndex": 160, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 278, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed src,address indexed guy,uint256 wad)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0x483cdc51a29df38adec82e1bb3f0ae197142a351" + }, + { + "indexed": true, + "internalType": "address", + "name": "guy", + "type": "address", + "decoded": "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000200000000000000000000000000008000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000200000000000020000100000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000002000000000000000000000000000010000000000000000000000000000000000800000000000000000000000000", + "status": true, + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "transactionHash": "0x3f4607fd52cf76fcc0fadecee9cf4ed5b3c12936c06d61123675dd7cdcee0496", + "transactionIndex": 160, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x483cdc51a29df38adec82e1bb3f0ae197142a351", + "callType": "call", + "gas": "0x5fc2", + "input": "0x095ea7b30000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5fc2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3f4607fd52cf76fcc0fadecee9cf4ed5b3c12936c06d61123675dd7cdcee0496", + "transactionPosition": 160, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address usr,uint256 wad)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "usr", + "type": "address", + "decoded": "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643" + }, + { + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x648DBC134593fd40eac70d05fCE6d66c606BFa5d", + "gas": 84000, + "gasPrice": "31200000000", + "hash": "0x2c9fce582a49ea553ddf9dcf78340f67b9e5bab61bff569cee50f98df3d9040b", + "input": "0x", + "nonce": 10340, + "to": "0x668E7DF19aE682C79d3F7939454c55964de53C8b", + "transactionIndex": 161, + "value": "11429580000000000", + "type": 0, + "v": "0x1c", + "r": "0xc0e2968c7674286ed4cbfda02a6fe9271b3957ad25ca2ae0bd84b1e679f548", + "s": "0x1f4fc8527504a15ba2ea5f3fb55b7f780aee7e9bcaeec001a2f1ec96e9370bd", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11414390", + "effectiveGasPrice": "31200000000", + "from": "0x648dbc134593fd40eac70d05fce6d66c606bfa5d", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x668e7df19ae682c79d3f7939454c55964de53c8b", + "transactionHash": "0x2c9fce582a49ea553ddf9dcf78340f67b9e5bab61bff569cee50f98df3d9040b", + "transactionIndex": 161, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x648dbc134593fd40eac70d05fce6d66c606bfa5d", + "callType": "call", + "gas": "0xf618", + "input": "0x", + "to": "0x668e7df19ae682c79d3f7939454c55964de53c8b", + "value": "0x289b2477d4f800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2c9fce582a49ea553ddf9dcf78340f67b9e5bab61bff569cee50f98df3d9040b", + "transactionPosition": 161, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xdAfA339cD9926b90072F8309e79e0f609eCF00d0", + "gas": 21000, + "gasPrice": "31185000000", + "hash": "0x33cd904dda2e3bd2b29f26ca249cd4bb5ba9b7b25868ebd62ab8554b56c3881b", + "input": "0x", + "nonce": 93, + "to": "0xA910f92ACdAf488fa6eF02174fb86208Ad7722ba", + "transactionIndex": 162, + "value": "202475038293852000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x6742f140685228c1a71bb1b11bb9f744def760b735aa28215f74ba64aea02d81", + "s": "0x67563d66636e5517099c468e312789973a4b88922107f519f6369f610f2342f7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11435390", + "effectiveGasPrice": "31185000000", + "from": "0xdafa339cd9926b90072f8309e79e0f609ecf00d0", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "transactionHash": "0x33cd904dda2e3bd2b29f26ca249cd4bb5ba9b7b25868ebd62ab8554b56c3881b", + "transactionIndex": 162, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xdafa339cd9926b90072f8309e79e0f609ecf00d0", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "value": "0x2cf55f97d637f60" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x33cd904dda2e3bd2b29f26ca249cd4bb5ba9b7b25868ebd62ab8554b56c3881b", + "transactionPosition": 162, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xA910f92ACdAf488fa6eF02174fb86208Ad7722ba", + "gas": 70000, + "gasPrice": "31185000000", + "hash": "0x7c04a8673b627bfcab645213e7b047a3f3f9c7f18a7462e797a727d4384a093e", + "input": "0xa9059cbb00000000000000000000000001127ef0f3d0d2a5631840d5de7e00073beb8c200000000000000000000000000000000000000000000000000000000001293d00", + "nonce": 650869, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 163, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x8a451e02c0fd10582bfa054261a284e3a88918d441cae9cc8c5d0792bdc4d666", + "s": "0x17343b1e127de6ae364ae8e0890bbe15abc5895937e0198b07ace694a4d8479e", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11500991", + "effectiveGasPrice": "31185000000", + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "gasUsed": "65601", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a910f92acdaf488fa6ef02174fb86208ad7722ba", + "0x00000000000000000000000001127ef0f3d0d2a5631840d5de7e00073beb8c20" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000001293d00", + "blockNumber": 12679108, + "transactionHash": "0x7c04a8673b627bfcab645213e7b047a3f3f9c7f18a7462e797a727d4384a093e", + "transactionIndex": 163, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 279, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000008000008000000000000000000000000000000000000000004000000000000000000000000009000000000000020000000000010000000000000000000000000000000000000000000000000010000000000000000000000000000000000200000000000000000000000000000000000000000000000000000800002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0x7c04a8673b627bfcab645213e7b047a3f3f9c7f18a7462e797a727d4384a093e", + "transactionIndex": 163, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "callType": "call", + "gas": "0xbd20", + "input": "0xa9059cbb00000000000000000000000001127ef0f3d0d2a5631840d5de7e00073beb8c200000000000000000000000000000000000000000000000000000000001293d00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x7c04a8673b627bfcab645213e7b047a3f3f9c7f18a7462e797a727d4384a093e", + "transactionPosition": 163, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x9e50", + "input": "0xa9059cbb00000000000000000000000001127ef0f3d0d2a5631840d5de7e00073beb8c200000000000000000000000000000000000000000000000000000000001293d00", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x7c04a8673b627bfcab645213e7b047a3f3f9c7f18a7462e797a727d4384a093e", + "transactionPosition": 163, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xA910f92ACdAf488fa6eF02174fb86208Ad7722ba", + "gas": 70000, + "gasPrice": "42099750000", + "hash": "0xeeabb16625893d393161a6fbde6f23de95523bfc6c10fa1cace4207512b5fac6", + "input": "0xa9059cbb000000000000000000000000a92b8c45763f77449ce03bc1c85eaec102a316e0000000000000000000000000000000000000000000000000000000174876e800", + "nonce": 650870, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 164, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfc9c20f3db7d0bb599cf0288c84c8d7fb3290ae0eaba3991fd2371e68f3ca63a", + "s": "0x791c4948c0d06c4f91dffe01b374fccaf84c2aee2ab95e41be1a49e71c151d7c", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11549516", + "effectiveGasPrice": "42099750000", + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "gasUsed": "48525", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a910f92acdaf488fa6ef02174fb86208ad7722ba", + "0x000000000000000000000000a92b8c45763f77449ce03bc1c85eaec102a316e0" + ], + "data": "0x000000000000000000000000000000000000000000000000000000174876e800", + "blockNumber": 12679108, + "transactionHash": "0xeeabb16625893d393161a6fbde6f23de95523bfc6c10fa1cace4207512b5fac6", + "transactionIndex": 164, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 280, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000008000008000000000000000000000000000000000000000000000000000000000000000000001000000000000020000000000010000000000000000000000000000000000000000000000000010000000020000000000000000000000000200000000000000000000000000000000008000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0xeeabb16625893d393161a6fbde6f23de95523bfc6c10fa1cace4207512b5fac6", + "transactionIndex": 164, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "callType": "call", + "gas": "0xbd08", + "input": "0xa9059cbb000000000000000000000000a92b8c45763f77449ce03bc1c85eaec102a316e0000000000000000000000000000000000000000000000000000000174876e800", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6925", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xeeabb16625893d393161a6fbde6f23de95523bfc6c10fa1cace4207512b5fac6", + "transactionPosition": 164, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x9e39", + "input": "0xa9059cbb000000000000000000000000a92b8c45763f77449ce03bc1c85eaec102a316e0000000000000000000000000000000000000000000000000000000174876e800", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4cac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xeeabb16625893d393161a6fbde6f23de95523bfc6c10fa1cace4207512b5fac6", + "transactionPosition": 164, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xA910f92ACdAf488fa6eF02174fb86208Ad7722ba", + "gas": 70000, + "gasPrice": "31185000000", + "hash": "0xe1e748acb14b3d7fde2c5ff995ddc4c27bca7aba3efb8a07e58460ffa0bb69db", + "input": "0xa9059cbb000000000000000000000000892573fd97245232999ff85f22f7d86438b39b3f0000000000000000000000000000000000000000000000000000004c0d1cfb9c", + "nonce": 650871, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 165, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x6243d23fa0dca45a8e38760211b8d0d4a7103568ecd2a239388d86538bc5a90", + "s": "0x505be42e429a1ac1a6a4aba06a58b145b799e5d57749a044c78382d3d16c6cb2", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11612737", + "effectiveGasPrice": "31185000000", + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "gasUsed": "63221", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a910f92acdaf488fa6ef02174fb86208ad7722ba", + "0x000000000000000000000000892573fd97245232999ff85f22f7d86438b39b3f" + ], + "data": "0x0000000000000000000000000000000000000000000000000000004c0d1cfb9c", + "blockNumber": 12679108, + "transactionHash": "0xe1e748acb14b3d7fde2c5ff995ddc4c27bca7aba3efb8a07e58460ffa0bb69db", + "transactionIndex": 165, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 281, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000020000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000001000000000000020000000000010000000000000000000000000000000000000000000000000000080000000000000100000000000000000000000000080000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0xe1e748acb14b3d7fde2c5ff995ddc4c27bca7aba3efb8a07e58460ffa0bb69db", + "transactionIndex": 165, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", + "callType": "call", + "gas": "0xbcfc", + "input": "0xa9059cbb000000000000000000000000892573fd97245232999ff85f22f7d86438b39b3f0000000000000000000000000000000000000000000000000000004c0d1cfb9c", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe1e748acb14b3d7fde2c5ff995ddc4c27bca7aba3efb8a07e58460ffa0bb69db", + "transactionPosition": 165, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xeE61F5fB0dB81d3A09392375Ee96f723C0620E07", + "gas": 78978, + "gasPrice": "31091140000", + "hash": "0xea1774feb3dc34e88c0c8eb74547d126aa25816e52baf6aba6a2ed6d8960e7ad", + "input": "0xa9059cbb0000000000000000000000005bd9a2e6c03987e09a6b0813784bf183abe6f51e000000000000000000000000000000000000000000000381c918049e885ae81b", + "nonce": 32581, + "to": "0xa55a49E5382fCF27eba3a102c55b7Fe26c630755", + "transactionIndex": 166, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x8b85a9df0241a8909ae18e2823904e6829874a7adc5ca8023d1350d157ca89d2", + "s": "0x62e98187e28e348fb4da4df20590855e2b5866abeeae8d32e82a3a1da326e7fe", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11666715", + "effectiveGasPrice": "31091140000", + "from": "0xee61f5fb0db81d3a09392375ee96f723c0620e07", + "gasUsed": "53978", + "logs": [ + { + "address": "0xa55a49E5382fCF27eba3a102c55b7Fe26c630755", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ee61f5fb0db81d3a09392375ee96f723c0620e07", + "0x0000000000000000000000005bd9a2e6c03987e09a6b0813784bf183abe6f51e" + ], + "data": "0x000000000000000000000000000000000000000000000381c918049e885ae81b", + "blockNumber": 12679108, + "transactionHash": "0xea1774feb3dc34e88c0c8eb74547d126aa25816e52baf6aba6a2ed6d8960e7ad", + "transactionIndex": 166, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 282, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xee61f5fb0db81d3a09392375ee96f723c0620e07" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x5bd9a2e6c03987e09a6b0813784bf183abe6f51e" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "16561219770997471373339" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000010000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000008000000000002000000000000000000000000100000080000000000100800000000000000000000000000000000000010000008000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xa55a49e5382fcf27eba3a102c55b7fe26c630755", + "transactionHash": "0xea1774feb3dc34e88c0c8eb74547d126aa25816e52baf6aba6a2ed6d8960e7ad", + "transactionIndex": 166, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xee61f5fb0db81d3a09392375ee96f723c0620e07", + "callType": "call", + "gas": "0xdfd2", + "input": "0xa9059cbb0000000000000000000000005bd9a2e6c03987e09a6b0813784bf183abe6f51e000000000000000000000000000000000000000000000381c918049e885ae81b", + "to": "0xa55a49e5382fcf27eba3a102c55b7fe26c630755", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7e2a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xea1774feb3dc34e88c0c8eb74547d126aa25816e52baf6aba6a2ed6d8960e7ad", + "transactionPosition": 166, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0x5bd9a2e6c03987e09a6b0813784bf183abe6f51e" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "16561219770997471373339" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x83207aEf8A6f8e1DC75d9761d75E0E641fB6eE13", + "gas": 69516, + "gasPrice": "31000001459", + "hash": "0x1b12a88a44b7b3f8cbb485c2e33e3d392e82048cf81acbd580a2e5895803e864", + "input": "0xa9059cbb000000000000000000000000540589a09bb4ed62e842ccfdd1f126501b752d6e000000000000000000000000000000000000000000000000000000007e5ca200", + "nonce": 5, + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionIndex": 167, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x2e3f7815371876e1a9bf863264b2f4db9fc03dad5d0da05d8a80bb623487452c", + "s": "0x244af58fa1095582f6e962a19d590463a547160f1f902e24e3e25b33179bba0a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11729912", + "effectiveGasPrice": "31000001459", + "from": "0x83207aef8a6f8e1dc75d9761d75e0e641fb6ee13", + "gasUsed": "63197", + "logs": [ + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000083207aef8a6f8e1dc75d9761d75e0e641fb6ee13", + "0x000000000000000000000000540589a09bb4ed62e842ccfdd1f126501b752d6e" + ], + "data": "0x000000000000000000000000000000000000000000000000000000007e5ca200", + "blockNumber": 12679108, + "transactionHash": "0x1b12a88a44b7b3f8cbb485c2e33e3d392e82048cf81acbd580a2e5895803e864", + "transactionIndex": 167, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 283, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000010000000000000000001000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000200000000020000000000000000000000000100000000000000000000000000080000000000000000000000000000000000000000000000002000000000000000000000000000000000040000000000000000000000000000000000000004000000000000000000000000000000000000000000000", + "status": true, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "transactionHash": "0x1b12a88a44b7b3f8cbb485c2e33e3d392e82048cf81acbd580a2e5895803e864", + "transactionIndex": 167, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x83207aef8a6f8e1dc75d9761d75e0e641fb6ee13", + "callType": "call", + "gas": "0xbb30", + "input": "0xa9059cbb000000000000000000000000540589a09bb4ed62e842ccfdd1f126501b752d6e000000000000000000000000000000000000000000000000000000007e5ca200", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa281", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1b12a88a44b7b3f8cbb485c2e33e3d392e82048cf81acbd580a2e5895803e864", + "transactionPosition": 167, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address _to,uint256 _value)", + "name": "transfer", + "decoded": [ + { + "name": "_to", + "type": "address", + "decoded": "0x540589a09bb4ed62e842ccfdd1f126501b752d6e" + }, + { "name": "_value", "type": "uint256", "decoded": "2120000000" } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xF776c78FDBfbc16bB2eEbc6ba56E19Cfd19F784a", + "gas": 72766, + "gasPrice": "31000001459", + "hash": "0x75a4398f58e19d6e4ae1b03227231ada27669260d3f7bbc6882ae9a98f467251", + "input": "0xa9059cbb00000000000000000000000075f55c9a138cd956b77be6c7510197b7d0e82f9a0000000000000000000000000000000000000000000000000000000059682f00", + "nonce": 673, + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "transactionIndex": 168, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x1f77624c3ca6e8946def0dd706c7a58d03b9a941c31ac6de6a26897728de93ab", + "s": "0x6b1918604d70ac481e8ce0553e8f23ae6f63ba643c95bc664f3612d412cc1e1a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11780525", + "effectiveGasPrice": "31000001459", + "from": "0xf776c78fdbfbc16bb2eebc6ba56e19cfd19f784a", + "gasUsed": "50613", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f776c78fdbfbc16bb2eebc6ba56e19cfd19f784a", + "0x00000000000000000000000075f55c9a138cd956b77be6c7510197b7d0e82f9a" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000059682f00", + "blockNumber": 12679108, + "transactionHash": "0x75a4398f58e19d6e4ae1b03227231ada27669260d3f7bbc6882ae9a98f467251", + "transactionIndex": 168, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 284, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000020000000008000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000010000000000000000004000000000000000200002000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000800000000004000000000000000000000000000000000", + "status": true, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionHash": "0x75a4398f58e19d6e4ae1b03227231ada27669260d3f7bbc6882ae9a98f467251", + "transactionIndex": 168, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xf776c78fdbfbc16bb2eebc6ba56e19cfd19f784a", + "callType": "call", + "gas": "0xc7e2", + "input": "0xa9059cbb00000000000000000000000075f55c9a138cd956b77be6c7510197b7d0e82f9a0000000000000000000000000000000000000000000000000000000059682f00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x75a4398f58e19d6e4ae1b03227231ada27669260d3f7bbc6882ae9a98f467251", + "transactionPosition": 168, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xa8e7", + "input": "0xa9059cbb00000000000000000000000075f55c9a138cd956b77be6c7510197b7d0e82f9a0000000000000000000000000000000000000000000000000000000059682f00", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x75a4398f58e19d6e4ae1b03227231ada27669260d3f7bbc6882ae9a98f467251", + "transactionPosition": 168, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x380b23AFC3c05b4C8407D4a33350ea40207b2619", + "gas": 185745, + "gasPrice": "31000000000", + "hash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "input": "0xfb3bdb410000000000000000000000000000000000000004a668eb0eb427bfd7de0000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b26190000000000000000000000000000000000000000000000000000000060d0d3190000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000adf2dd5ffb2a11e1396a04d70ff7d9c1ad54652c", + "nonce": 97, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 169, + "value": "338999140514063106", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x7f192279f89c982a5fcb4b42bed6bfd0edf46e055ea0de1cecbb8602ee51436d", + "s": "0x6ba1e1c319c916577a62730667a48cf8ee986ec241a0d7ed62a804fd6f8a08f1", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "11910729", + "effectiveGasPrice": "31000000000", + "from": "0x380b23afc3c05b4c8407d4a33350ea40207b2619", + "gasUsed": "130204", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000429cfb800e7dd48", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 285, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52" + ], + "data": "0x0000000000000000000000000000000000000000000000000429cfb800e7dd48", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 286, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xadf2Dd5Ffb2A11E1396a04D70fF7D9C1aD54652c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52", + "0x000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b2619" + ], + "data": "0x000000000000000000000000000000000000000476cb1f185b07707d50000000", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 287, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x000000000000000000000000000000000000abcd" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "7368280000000000000000000000" + } + ] + } + }, + { + "address": "0xadf2Dd5Ffb2A11E1396a04D70fF7D9C1aD54652c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52", + "0x0000000000000000000000000452bb09d81f2ade822087d0b14b285d76226ae3" + ], + "data": "0x000000000000000000000000000000000000000017cee5fb2c9027ad47000000", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 288, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x000000000000000000000000000000000000abcd" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "7368280000000000000000000000" + } + ] + } + }, + { + "address": "0xadf2Dd5Ffb2A11E1396a04D70fF7D9C1aD54652c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52", + "0x000000000000000000000000000000000000000000000000000000000000abcd" + ], + "data": "0x000000000000000000000000000000000000000017cee5fb2c9027ad47000000", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 289, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x000000000000000000000000000000000000abcd" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "7368280000000000000000000000" + } + ] + } + }, + { + "address": "0xcd765189A31a7134EB52866Dbe1F8a84A98Ffa52", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000333d2265389476e483e3489f1da000000000000000000000000000000000000000000000002dff90615d7446558", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 290, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xcd765189A31a7134EB52866Dbe1F8a84A98Ffa52", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b2619" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000429cfb800e7dd480000000000000000000000000000000000000004a668eb0eb427bfd7de0000000000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 291, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00240000000000000000000080000000000000000000000080010000000000000000000000000000400000000000000002000000080000000000000000000000000000000000000000000008000000200000000000000000000000008000000000000000000000000000000000000000000200800000000100000010000000000000000004000000004000000000000000000001000000080000004000000000001000004000000000000000001000000000000000000000000000000000001020000002000000000000000000004000000000000000001000000000000020022000200000000000000000080000000000000000000000400000000000080800", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionIndex": 169, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x380b23afc3c05b4c8407d4a33350ea40207b2619", + "callType": "call", + "gas": "0x27c39", + "input": "0xfb3bdb410000000000000000000000000000000000000004a668eb0eb427bfd7de0000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b26190000000000000000000000000000000000000000000000000000000060d0d3190000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000adf2dd5ffb2a11e1396a04d70ff7d9c1ad54652c", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x4b45dec1580e302" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1fbf0", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000429cfb800e7dd480000000000000000000000000000000000000004a668eb0eb427bfd7de000000" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x25fb5", + "input": "0x0902f1ac", + "to": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000338788f3e97fb9608161289f1da000000000000000000000000000000000000000000000002dbcf365dd65c88100000000000000000000000000000000000000000000000000000000060d0a259" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x22cc8", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x429cfb800e7dd48" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1cbdd", + "input": "0xa9059cbb000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa520000000000000000000000000000000000000000000000000429cfb800e7dd48", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1a4dd", + "input": "0x022c0d9f0000000000000000000000000000000000000004a668eb0eb427bfd7de0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b261900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x10cd8", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52", + "callType": "call", + "gas": "0x16adc", + "input": "0xa9059cbb000000000000000000000000380b23afc3c05b4c8407d4a33350ea40207b26190000000000000000000000000000000000000004a668eb0eb427bfd7de000000", + "to": "0xadf2dd5ffb2a11e1396a04d70ff7d9c1ad54652c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x849c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52", + "callType": "staticcall", + "gas": "0xe5e5", + "input": "0x70a08231000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52", + "to": "0xadf2dd5ffb2a11e1396a04d70ff7d9c1ad54652c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x207", + "output": "0x0000000000000000000000000000000000000333d2265389476e483e3489f1da" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0xcd765189a31a7134eb52866dbe1f8a84a98ffa52", + "callType": "staticcall", + "gas": "0xe251", + "input": "0x70a08231000000000000000000000000cd765189a31a7134eb52866dbe1f8a84a98ffa52", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000002dff90615d7446558" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x8006", + "input": "0x", + "to": "0x380b23afc3c05b4c8407d4a33350ea40207b2619", + "value": "0x8a8e34149905ba" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xc14bc43027a467612327d25839d0845f5c107e798b797ec481407ea1a0d89cdc", + "transactionPosition": 169, + "type": "call" + } + ], + "decoded": { + "signature": "swapETHForExactTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapETHForExactTokens(uint256 amountOut,address[] path,address to,uint256 deadline)", + "name": "swapETHForExactTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOut", + "type": "uint256", + "decoded": "368414000000000000000000000000" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xadf2dd5ffb2a11e1396a04d70ff7d9c1ad54652c" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x380b23afc3c05b4c8407d4a33350ea40207b2619" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298265" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFbdcF399ECB8A082668696a19B7f914c5232a64d", + "gas": 142260, + "gasPrice": "31000000000", + "hash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000088d24d1243fe51b30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000002a76d7c1a9f3e7c409fa881eab016ce810643520", + "nonce": 177, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 170, + "value": "50000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfdaa09af66ee9d40a36bc4db5c0d4a1a9bd8fe9c066d1b775b82b6d9dff133e0", + "s": "0xf2a13e1ae04daf0829f4912adfc71af49eb65cfad0e8f7eb20dc4375a859d15", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12014616", + "effectiveGasPrice": "31000000000", + "from": "0xfbdcf399ecb8a082668696a19b7f914c5232a64d", + "gasUsed": "103887", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000b1a2bc2ec50000", + "blockNumber": 12679108, + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 292, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000067df14e8a52e22436299c081551a19fe9c535914" + ], + "data": "0x00000000000000000000000000000000000000000000000000b1a2bc2ec50000", + "blockNumber": 12679108, + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 293, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x2A76d7C1a9f3e7C409fa881Eab016CE810643520", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000067df14e8a52e22436299c081551a19fe9c535914", + "0x000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d" + ], + "data": "0x0000000000000000000000000000000000000000000000008fa99db994316f63", + "blockNumber": 12679108, + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 294, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 tokens)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x67df14e8a52e22436299c081551a19fe9c535914" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xfbdcf399ecb8a082668696a19b7f914c5232a64d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "tokens", + "type": "uint256", + "decoded": "10351978638868574051" + } + ] + } + }, + { + "address": "0x67Df14e8a52E22436299C081551A19fe9c535914", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000002a85d24abda3752378000000000000000000000000000000000000000000000000351d57343d6243e4", + "blockNumber": 12679108, + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 295, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x67Df14e8a52E22436299C081551A19fe9c535914", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000008fa99db994316f630000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 296, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080400000000000000000000000030000000000000000000000000000000000000000000002000000080000000000000000000000000040000000000000000008000000200000000000000000000000008000000000000800000001000000000000000000000000000000000000000010000020000000000000000000004000000000000000000001000000080000004000000000000000002000000000000000000024000000000000000000000000000000000000000002000000000000000000000000000000010000001000000000001020000000200000000000000000000000000008000000000000400000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionIndex": 170, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbdcf399ecb8a082668696a19b7f914c5232a64d", + "callType": "call", + "gas": "0x1d274", + "input": "0x7ff36ab500000000000000000000000000000000000000000000000088d24d1243fe51b30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000002a76d7c1a9f3e7c409fa881eab016ce810643520", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xb1a2bc2ec50000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1953b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000008fa99db994316f63" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1b8b2", + "input": "0x0902f1ac", + "to": "0x67df14e8a52e22436299c081551a19fe9c535914", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000002b157be87737a692db000000000000000000000000000000000000000000000000346bb4780e9d43e40000000000000000000000000000000000000000000000000000000060d0d201" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x185f1", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xb1a2bc2ec50000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x12507", + "input": "0xa9059cbb00000000000000000000000067df14e8a52e22436299c081551a19fe9c53591400000000000000000000000000000000000000000000000000b1a2bc2ec50000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0xfe07", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000008fa99db994316f630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x67df14e8a52e22436299c081551a19fe9c535914", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xc30e", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x67df14e8a52e22436299c081551a19fe9c535914", + "callType": "call", + "gas": "0xc6a1", + "input": "0xa9059cbb000000000000000000000000fbdcf399ecb8a082668696a19b7f914c5232a64d0000000000000000000000000000000000000000000000008fa99db994316f63", + "to": "0x2a76d7c1a9f3e7c409fa881eab016ce810643520", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3aa6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x67df14e8a52e22436299c081551a19fe9c535914", + "callType": "staticcall", + "gas": "0x8a79", + "input": "0x70a0823100000000000000000000000067df14e8a52e22436299c081551a19fe9c535914", + "to": "0x2a76d7c1a9f3e7c409fa881eab016ce810643520", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x233", + "output": "0x00000000000000000000000000000000000000000000002a85d24abda3752378" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + }, + { + "action": { + "from": "0x67df14e8a52e22436299c081551a19fe9c535914", + "callType": "staticcall", + "gas": "0x86b9", + "input": "0x70a0823100000000000000000000000067df14e8a52e22436299c081551a19fe9c535914", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000351d57343d6243e4" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xdcc4b611b85db800af80645570af485c569cbe3234b758ed26af8a737209ba64", + "transactionPosition": 170, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x13A9548Dda7807224FA3804aFa5edE801Be19b7A", + "gas": 250404, + "gasPrice": "31000000000", + "hash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "input": "0x441a3e700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "nonce": 492, + "to": "0x6f27C4E4888A7090CAD2e1b82D6e02eBb4FA06EC", + "transactionIndex": 171, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xd1e6d6e3e48cbc128c571bdfdb8145cd4d3a9067aa3c41f580794ee5da62c31e", + "s": "0x873a265c358f814d5e469a8096f205cf7e6326a339fe16770578b53f7f0fd2d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12151552", + "effectiveGasPrice": "31000000000", + "from": "0x13a9548dda7807224fa3804afa5ede801be19b7a", + "gasUsed": "136936", + "logs": [ + { + "address": "0x84810bcF08744d5862B8181f12d17bfd57d3b078", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007fffa34b95b8234b454f311e23ed15179ff3ab1b", + "0x00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a" + ], + "data": "0x000000000000000000000000000000000000000000000000d427b674b33fc774", + "blockNumber": 12679108, + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionIndex": 171, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 297, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 amount)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x7fffa34b95b8234b454f311e23ed15179ff3ab1b" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x13a9548dda7807224fa3804afa5ede801be19b7a" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "15287388072472201076" + } + ] + } + }, + { + "address": "0xe37E2a01feA778BC1717d72Bd9f018B6A6B241D5", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "0x00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a" + ], + "data": "0x000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "blockNumber": 12679108, + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionIndex": 171, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 298, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x13a9548dda7807224fa3804afa5ede801be19b7a" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "13744243456779724156" + } + ] + } + }, + { + "address": "0x6f27C4E4888A7090CAD2e1b82D6e02eBb4FA06EC", + "topics": [ + "0xf279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568", + "0x00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "blockNumber": 12679108, + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionIndex": 171, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 299, + "removed": false, + "decoded": { + "signature": "Withdraw(address,uint256,uint256)", + "signature_with_arg_names": "Withdraw(address indexed user,uint256 indexed pid,uint256 amount)", + "name": "Withdraw", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "user", + "type": "address", + "decoded": "0x13a9548dda7807224fa3804afa5ede801be19b7a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "pid", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "13744243456779724156" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000001000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000400000000000000020000000000000000001800000000000000000000000010000000000000000000000000000000020000000010000000000000000000000000000810040000000000000000002000000000000000000400000008000000020000000000000002000000000080000000000000000000000020000000000000000020000024040000000000000000000000000000008000000000000001000000000000", + "status": true, + "to": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionIndex": 171, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x13a9548dda7807224fa3804afa5ede801be19b7a", + "callType": "call", + "gas": "0x37e7c", + "input": "0x441a3e700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "to": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x23870", "output": "0x" }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "callType": "staticcall", + "gas": "0x3421a", + "input": "0x70a082310000000000000000000000006f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "to": "0xe37e2a01fea778bc1717d72bd9f018b6a6b241d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9ce", + "output": "0x0000000000000000000000000000000000000000000000c0899f4ec48011f768" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "callType": "call", + "gas": "0x2ceb9", + "input": "0xa5f2a15200000000000000000000000084810bcf08744d5862b8181f12d17bfd57d3b07800000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000d427b674b33fc774", + "to": "0x7fffa34b95b8234b454f311e23ed15179ff3ab1b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa66a", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0x7fffa34b95b8234b454f311e23ed15179ff3ab1b", + "callType": "call", + "gas": "0x2aaaa", + "input": "0xa9059cbb00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000d427b674b33fc774", + "to": "0x84810bcf08744d5862b8181f12d17bfd57d3b078", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x8b40", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0x6f27c4e4888a7090cad2e1b82d6e02ebb4fa06ec", + "callType": "call", + "gas": "0x20ddd", + "input": "0xa9059cbb00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "to": "0xe37e2a01fea778bc1717d72bd9f018b6a6b241d5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xc714", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [2], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0xe37e2a01fea778bc1717d72bd9f018b6a6b241d5", + "callType": "call", + "gas": "0x1f0f2", + "input": "0xc00c125c00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "to": "0xdec2157831d6abc3ec328291119cc91b337272b5", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4637", "output": "0x" }, + "subtraces": 1, + "traceAddress": [2, 0], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0xdec2157831d6abc3ec328291119cc91b337272b5", + "callType": "delegatecall", + "gas": "0x1df06", + "input": "0xc00c125c00000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "to": "0x5847f8177221268d279cf377d0e01ab3fd993628", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x3bc4", "output": "0x" }, + "subtraces": 1, + "traceAddress": [2, 0, 0], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + }, + { + "action": { + "from": "0xdec2157831d6abc3ec328291119cc91b337272b5", + "callType": "delegatecall", + "gas": "0x1c2f5", + "input": "0xe9252d4600000000000000000000000000000000000000000000000000000000000000c900000000000000000000000013a9548dda7807224fa3804afa5ede801be19b7a000000000000000000000000000000000000000000000000bebd5c9a93d7a57c", + "to": "0x149bbb210051851016f57a2824c0444f642833a6", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x26af", "output": "0x" }, + "subtraces": 0, + "traceAddress": [2, 0, 0, 0], + "transactionHash": "0x47b07a213d0ac488e4ff26c30e84efa9c7006abeaa8edfc69e1f23f66f7d4301", + "transactionPosition": 171, + "type": "call" + } + ], + "decoded": { + "signature": "withdraw(uint256,uint256)", + "signature_with_arg_names": "withdraw(uint256 _pid,uint256 _amount)", + "name": "withdraw", + "decoded": [ + { + "internalType": "uint256", + "name": "_pid", + "type": "uint256", + "decoded": "0" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256", + "decoded": "13744243456779724156" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xcE0b352177038599b1df4505F50ff731FF6421eb", + "gas": 77781, + "gasPrice": "31000000000", + "hash": "0xbed4d9271b8562a4382c4971d55fbcc7fc0e2dde389824a2e072161f1993b546", + "input": "0xa9059cbb0000000000000000000000001763f1a93815ee6e6bc3c4475d31cc9570716db20000000000000000000000000000000000000000000029668658343eae0a57ab", + "nonce": 199, + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "transactionIndex": 172, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x7ca7ae7fb74dadc8d86de66d3ca2cbfa2a98b2a7af0df41a4c2612825ca3ccd", + "s": "0x20332136b70bd410f90e2394860c260ff18226f7c7e6de2a9d1b58c3213f5b3a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12188406", + "effectiveGasPrice": "31000000000", + "from": "0xce0b352177038599b1df4505f50ff731ff6421eb", + "gasUsed": "36854", + "logs": [ + { + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ce0b352177038599b1df4505f50ff731ff6421eb", + "0x0000000000000000000000001763f1a93815ee6e6bc3c4475d31cc9570716db2" + ], + "data": "0x0000000000000000000000000000000000000000000029668658343eae0a57ab", + "blockNumber": 12679108, + "transactionHash": "0xbed4d9271b8562a4382c4971d55fbcc7fc0e2dde389824a2e072161f1993b546", + "transactionIndex": 172, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 300, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "src", + "type": "address", + "decoded": "0xce0b352177038599b1df4505f50ff731ff6421eb" + }, + { + "indexed": true, + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000800000000000010000000000000000000010000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000200000000000000002000000000000000000000000000000000000000000800000000008000000000000000000000000000000000000", + "status": true, + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "transactionHash": "0xbed4d9271b8562a4382c4971d55fbcc7fc0e2dde389824a2e072161f1993b546", + "transactionIndex": 172, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xce0b352177038599b1df4505f50ff731ff6421eb", + "callType": "call", + "gas": "0xdb25", + "input": "0xa9059cbb0000000000000000000000001763f1a93815ee6e6bc3c4475d31cc9570716db20000000000000000000000000000000000000000000029668658343eae0a57ab", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x75de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xbed4d9271b8562a4382c4971d55fbcc7fc0e2dde389824a2e072161f1993b546", + "transactionPosition": 172, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address dst,uint256 wad)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "dst", + "type": "address", + "decoded": "0x1763f1a93815ee6e6bc3c4475d31cc9570716db2" + }, + { + "internalType": "uint256", + "name": "wad", + "type": "uint256", + "decoded": "195508274238016673437611" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0C90A9d2b0f573c21c499DDaC720e2c6E2899f7C", + "gas": 46242, + "gasPrice": "31000000000", + "hash": "0x589943e0cc822c82e7553f8ec037acf782171707eaf7741109f52267eb6d8022", + "input": "0x095ea7b3000000000000000000000000b70bc06d2c9bf03b3373799606dc7d39346c06b30000000000000000000000000000000000000000000031485b80be2019cb0a5c", + "nonce": 1121, + "to": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "transactionIndex": 173, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x83167519ebb448ef8a42f11de6a7b18899fd5dccb2cd81667a35c9289aa870d", + "s": "0x6b74646c6ea8cf5af0753cfc5b60fcb3e3f113dd47b5202efadc062409880074", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12234648", + "effectiveGasPrice": "31000000000", + "from": "0x0c90a9d2b0f573c21c499ddac720e2c6e2899f7c", + "gasUsed": "46242", + "logs": [ + { + "address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000000c90a9d2b0f573c21c499ddac720e2c6e2899f7c", + "0x000000000000000000000000b70bc06d2c9bf03b3373799606dc7d39346c06b3" + ], + "data": "0x0000000000000000000000000000000000000000000031485b80be2019cb0a5c", + "blockNumber": 12679108, + "transactionHash": "0x589943e0cc822c82e7553f8ec037acf782171707eaf7741109f52267eb6d8022", + "transactionIndex": 173, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 301, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x0c90a9d2b0f573c21c499ddac720e2c6e2899f7c" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xb70bc06d2c9bf03b3373799606dc7d39346c06b3" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "232730716712819254561372" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000200000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000100000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000010000000000000000000000020000000000000000000000000000000000000000000000000100000000000000000000000000000000002000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000008000000000000", + "status": true, + "to": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "transactionHash": "0x589943e0cc822c82e7553f8ec037acf782171707eaf7741109f52267eb6d8022", + "transactionIndex": 173, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0c90a9d2b0f573c21c499ddac720e2c6e2899f7c", + "callType": "call", + "gas": "0x5ff2", + "input": "0x095ea7b3000000000000000000000000b70bc06d2c9bf03b3373799606dc7d39346c06b30000000000000000000000000000000000000000000031485b80be2019cb0a5c", + "to": "0xc944e90c64b2c07662a292be6244bdf05cda44a7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5ff2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x589943e0cc822c82e7553f8ec037acf782171707eaf7741109f52267eb6d8022", + "transactionPosition": 173, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xb70bc06d2c9bf03b3373799606dc7d39346c06b3" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "232730716712819254561372" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9E2E0e8d16534F342bC14c83C1b8dA212F620e27", + "gas": 55951, + "gasPrice": "30800000000", + "hash": "0xc219f0a887680398d4d3c3c86429b16214214bc8dfe2e6f0c62f0b8756b3bd4e", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 432, + "to": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "transactionIndex": 174, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x90a7e3a84bd817fbe03b7d5f43acb82e4e79982f19f066a568da7dffdeae4ad9", + "s": "0x5aeef50f2d1fdda2c50b60df346bf88f87d743a4bc1765fe4fe3f76db620f769", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12281274", + "effectiveGasPrice": "30800000000", + "from": "0x9e2e0e8d16534f342bc14c83c1b8da212f620e27", + "gasUsed": "46626", + "logs": [ + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000009e2e0e8d16534f342bc14c83c1b8da212f620e27", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0xc219f0a887680398d4d3c3c86429b16214214bc8dfe2e6f0c62f0b8756b3bd4e", + "transactionIndex": 174, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 302, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039187866301927156757085" + } + ] + } + } + ], + "logsBloom": "0x00000000004000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000004000010000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000010000000000000000000000000001000000000000000000010000000000000", + "status": true, + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "transactionHash": "0xc219f0a887680398d4d3c3c86429b16214214bc8dfe2e6f0c62f0b8756b3bd4e", + "transactionIndex": 174, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9e2e0e8d16534f342bc14c83c1b8da212f620e27", + "callType": "call", + "gas": "0x84d7", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x606a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc219f0a887680398d4d3c3c86429b16214214bc8dfe2e6f0c62f0b8756b3bd4e", + "transactionPosition": 174, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6B4A52E6F9FEC1Fa921cAE0bcD13e3548951a4D2", + "gas": 21000, + "gasPrice": "30800000000", + "hash": "0x51a3ccaacf6a629950f04812985d1c067690d4505f8bcaabc51899c2d6ffc2a2", + "input": "0x", + "nonce": 32, + "to": "0xEeB1870575CA23521bf1a6edA37266d0b390bC6a", + "transactionIndex": 175, + "value": "26060397577425441", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xdabf2dd3b03745b2f043819b498e852279f0267ccbdd20768d9cda6cc0fd3043", + "s": "0x1d25594d9764d3f4c9abfbd338f7ab1f02d594556640a659f99452ee4856dd9f", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12302274", + "effectiveGasPrice": "30800000000", + "from": "0x6b4a52e6f9fec1fa921cae0bcd13e3548951a4d2", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xeeb1870575ca23521bf1a6eda37266d0b390bc6a", + "transactionHash": "0x51a3ccaacf6a629950f04812985d1c067690d4505f8bcaabc51899c2d6ffc2a2", + "transactionIndex": 175, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6b4a52e6f9fec1fa921cae0bcd13e3548951a4d2", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xeeb1870575ca23521bf1a6eda37266d0b390bc6a", + "value": "0x5c95cb244ed221" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x51a3ccaacf6a629950f04812985d1c067690d4505f8bcaabc51899c2d6ffc2a2", + "transactionPosition": 175, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xbE055B90e9C23486d306A821046055d94C97CFfF", + "gas": 55950, + "gasPrice": "30800000000", + "hash": "0xf3ce7348df110a83f6ceb7c55dc800fca2b1b277960a6db979b4ceb3406d00f1", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "nonce": 75, + "to": "0x106552C11272420aAd5d7e94f8AcAb9095A6c952", + "transactionIndex": 176, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x8c9940455a3b8fe2a2342cf6e76fe9727d87969e3ec3856a8721f8790cdefc53", + "s": "0x389e38016f8e9f31cb3c89c456a5e4596a031802820b985402140d78e2a6f41", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12348899", + "effectiveGasPrice": "30800000000", + "from": "0xbe055b90e9c23486d306a821046055d94c97cfff", + "gasUsed": "46625", + "logs": [ + { + "address": "0x106552C11272420aAd5d7e94f8AcAb9095A6c952", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000be055b90e9c23486d306a821046055d94c97cfff", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "blockNumber": 12679108, + "transactionHash": "0xf3ce7348df110a83f6ceb7c55dc800fca2b1b277960a6db979b4ceb3406d00f1", + "transactionIndex": 176, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 303, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xbe055b90e9c23486d306a821046055d94c97cfff" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000008000000040000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000020000000000000000000000000000000000800000020000000000000000000000000000000000000000000000000000000000000000000000000000000020000010000000100000000000000000000000000000002000000000000000000000", + "status": true, + "to": "0x106552c11272420aad5d7e94f8acab9095a6c952", + "transactionHash": "0xf3ce7348df110a83f6ceb7c55dc800fca2b1b277960a6db979b4ceb3406d00f1", + "transactionIndex": 176, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xbe055b90e9c23486d306a821046055d94c97cfff", + "callType": "call", + "gas": "0x84d6", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0x106552c11272420aad5d7e94f8acab9095a6c952", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6069", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xf3ce7348df110a83f6ceb7c55dc800fca2b1b277960a6db979b4ceb3406d00f1", + "transactionPosition": 176, + "type": "call" + } + ], + "decoded": { + "signature": "approve(address,uint256)", + "signature_with_arg_names": "approve(address spender,uint256 amount)", + "name": "approve", + "decoded": [ + { + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007913129639935" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd0568638BE6ee1bD8Be4fE0b3fbC255597C8e0aD", + "gas": 421507, + "gasPrice": "30800000000", + "hash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "input": "0x791ac94700000000000000000000000000000000000000000000000e9f15c8918f29cda200000000000000000000000000000000000000000000000000f4d5871da0521000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d0568638be6ee1bd8be4fe0b3fbc255597c8e0ad0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 66, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 177, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xfeae8a0c6d96ec65d1ee3ecedd539fd3a298d1ed7ec1d22852811e836844ae8f", + "s": "0x4edf0be6925c94eb54e93d86178d2ba4b7c5214b43a9eeab06e02e6164be2649", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12624267", + "effectiveGasPrice": "30800000000", + "from": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad", + "gasUsed": "275368", + "logs": [ + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 304, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039187866301927156757085" + } + ] + } + }, + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "0x000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 305, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "234654404207796408080" + } + ] + } + }, + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 306, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039187866301927156757085" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000005748e6a6b9cec", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 307, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xD35a8Ef615586C86e926f969b2617E57C03Ac9f3", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000002b69d4e0ae7535f1d000000000000000000000000000000000000000000002268f3048be1844c2e66", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 308, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xD35a8Ef615586C86e926f969b2617E57C03Ac9f3", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000005748e6a6b9cec0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 309, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000005748e6a6b9cec", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 310, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + }, + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0x32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f4000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 311, + "removed": false, + "decoded": { + "signature": "SwapTokensForETH(uint256,address[])", + "signature_with_arg_names": "SwapTokensForETH(uint256 amountIn,address[] path)", + "name": "SwapTokensForETH", + "decoded": [ + { + "indexed": false, + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "5000000000000000000" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + } + ] + } + }, + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d0568638be6ee1bd8be4fe0b3fbc255597c8e0ad", + "0x000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3" + ], + "data": "0x00000000000000000000000000000000000000000000000cb87be95feaa1cf10", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 312, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "234654404207796408080" + } + ] + } + }, + { + "address": "0xcb6214Fcfc4e8b3B21BcD6b386005B6a186A5ca2", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000d0568638be6ee1bd8be4fe0b3fbc255597c8e0ad", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffff160ea376e70d6325d", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 313, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039187866301927156757085" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000001001f9d8e279963", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 314, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xD35a8Ef615586C86e926f969b2617E57C03Ac9f3", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000002b59d2e6d592bc5ba000000000000000000000000000000000000000000002275b197cccbaab4740b", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 315, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xD35a8Ef615586C86e926f969b2617E57C03Ac9f3", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cbe9340ea266845a500000000000000000000000000000000000000000000000001001f9d8e2799630000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 316, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000001001f9d8e279963", + "blockNumber": 12679108, + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 317, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x40200000000000000000000080000000000000000000000000010000000000000000000000000000000000000000000002000040080000000000000000200000000000000000000000000018000000200000000000400000000000000000000000000000000000000000000001000000000000040000040000002010000200000000000000000080004000000000000010000000000000080000005000000000020000000000000000000000800000000000008000000000000000000000000000000022000000000000000040020000000000000000001000000002000020000010200000000000000000000000001000100000000000000010000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionIndex": 177, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad", + "callType": "call", + "gas": "0x6146f", + "input": "0x791ac94700000000000000000000000000000000000000000000000e9f15c8918f29cda200000000000000000000000000000000000000000000000000f4d5871da0521000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d0568638be6ee1bd8be4fe0b3fbc255597c8e0ad0000000000000000000000000000000000000000000000000000000060d0d9090000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4f978", "output": "0x" }, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x5ea1f", + "input": "0x23b872dd000000000000000000000000d0568638be6ee1bd8be4fe0b3fbc255597c8e0ad000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f300000000000000000000000000000000000000000000000e9f15c8918f29cda2", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3f17b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "traceAddress": [0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "callType": "staticcall", + "gas": "0x54ea8", + "input": "0xad5c4648", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x113", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "callType": "call", + "gas": "0x4eb41", + "input": "0x791ac9470000000000000000000000000000000000000000000000004563918244f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca20000000000000000000000000000000000000000000000000000000060d0d26d0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2361b", "output": "0x" }, + "subtraces": 7, + "traceAddress": [0, 1], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4cf33", + "input": "0x23b872dd000000000000000000000000cb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f30000000000000000000000000000000000000000000000004563918244f40000", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb6b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x40b05", + "input": "0x0902f1ac", + "to": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000002b6a2c29951befc09000000000000000000000000000000000000000000002268ada0fa5f3f582e660000000000000000000000000000000000000000000000000000000060d0d1f1" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3ff5b", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000002268f3048be1844c2e66" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x3f008", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000005748e6a6b9cec00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x104ae", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 1, 3], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "call", + "gas": "0x3acda", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000005748e6a6b9cec", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "staticcall", + "gas": "0x33737", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000002b69d4e0ae7535f1d" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 1], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "staticcall", + "gas": "0x33394", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000002268f3048be1844c2e66" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 2], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2ed9f", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000005748e6a6b9cec" + }, + "subtraces": 0, + "traceAddress": [0, 1, 4], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2e9e9", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000005748e6a6b9cec", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 5], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x5748e6a6b9cec" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 5, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2ab1a", + "input": "0x", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x5748e6a6b9cec" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x37", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 6], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xa8fb832afdb227b33359fd625f09ef5681e2608f", + "value": "0x48bcc0359ad6c" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x201b1", + "input": "0x0902f1ac", + "to": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f8", + "output": "0x000000000000000000000000000000000000000000000002b69d4e0ae7535f1d000000000000000000000000000000000000000000002268f3048be1844c2e660000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1fdb8", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000002275b197cccbaab4740b" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1ee66", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000001001f9d8e27996300000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x954a", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "call", + "gas": "0x1d3ee", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000001001f9d8e279963", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5a7a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "staticcall", + "gas": "0x17871", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000002b59d2e6d592bc5ba" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xd35a8ef615586c86e926f969b2617e57c03ac9f3", + "callType": "staticcall", + "gas": "0x174ce", + "input": "0x70a08231000000000000000000000000d35a8ef615586c86e926f969b2617e57c03ac9f3", + "to": "0xcb6214fcfc4e8b3b21bcd6b386005b6a186a5ca2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000002275b197cccbaab4740b" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x159a3", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000001001f9d8e279963" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x155ed", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000001001f9d8e279963", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x1001f9d8e279963" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1171e", + "input": "0x", + "to": "0xd0568638be6ee1bd8be4fe0b3fbc255597c8e0ad", + "value": "0x1001f9d8e279963" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0xc300b2078b0c04afedff16b070180a306c2d6359f0a0bfe7e5b6deaf9ab6af8e", + "transactionPosition": 177, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "11501758286181452164306" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "883654538300447116" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298125" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x6f670D3A1C2173a5972ca2A33dDBA46Ee573261B", + "gas": 279021, + "gasPrice": "30800000000", + "hash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000004434eb775c04454b300000000000000000000000000000000000000000000000000000000000000800000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b0000000000000000000000000000000000000000000000000000000060d0d2bf0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000003c0a9d9b70a253b47443470a28e2d8422b9c882f", + "nonce": 13, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 178, + "value": "40000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x247fc79ca3854cf381c1fdcad5beb689710d232e3f6db6917026d07817d197da", + "s": "0x2f3f7208f1859b1b2ed95e2eb953994635feeefb18c3edb40a2876e20ce6b9ac", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "12838539", + "effectiveGasPrice": "30800000000", + "from": "0x6f670d3a1c2173a5972ca2a33ddba46ee573261b", + "gasUsed": "214272", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000008e1bc9bf040000", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 318, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852" + ], + "data": "0x000000000000000000000000000000000000000000000000008e1bc9bf040000", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 319, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "0x000000000000000000000000b64f3d0eed138132a7782244625618959e008432" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000048ed5bc", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 320, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "76469692" + } + ] + } + }, + { + "address": "0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000cfece5b5609f89c9c3a00000000000000000000000000000000000000000000000000006b0626bb0280", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 321, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000b64f3d0eed138132a7782244625618959e008432" + ], + "data": "0x000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048ed5bc", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 322, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0x3C0a9D9b70A253B47443470A28E2D8422B9c882F", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b64f3d0eed138132a7782244625618959e008432", + "0x0000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b" + ], + "data": "0x000000000000000000000000000000000000000000000004c88c72ef1d8a2df6", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 323, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xb64f3d0eed138132a7782244625618959e008432" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x6f670d3a1c2173a5972ca2a33ddba46ee573261b" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "88238027970481630710" + } + ] + } + }, + { + "address": "0xB64F3D0EEd138132A7782244625618959e008432", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000167995a7ddd1d11f7df400000000000000000000000000000000000000000000000000000014f134b477", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 324, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xB64F3D0EEd138132A7782244625618959e008432", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b" + ], + "data": "0x0000000000000000000000000000000000000000000000000006ca4604d1824f00000000000000000000000000000000000000000000000000000000048ed5bc000000000000000000000000000000000000000000000004e18a173d235dfaa60000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 325, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000004000000000000000010000000000000000000000000008400000000000010002000000080000000000000000000000000000100000000000000008000000200000000000000000000000408040000000000000000000000000000000000000000000000000000000000010010000000800800000000000004002000010000000000001000000080000004000100000020000000000000000000080000000000000200000000000000010000000000000000002000000000000000000000000000000000000001000000000000022000000200000000000000004000000000000000200000040400000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionIndex": 178, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x6f670d3a1c2173a5972ca2a33ddba46ee573261b", + "callType": "call", + "gas": "0x3e731", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000004434eb775c04454b300000000000000000000000000000000000000000000000000000000000000800000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b0000000000000000000000000000000000000000000000000000000060d0d2bf0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000003c0a9d9b70a253b47443470a28e2d8422b9c882f", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x8e1bc9bf040000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x34de0", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000008e1bc9bf04000000000000000000000000000000000000000000000000000000000000048ed5bc000000000000000000000000000000000000000000000004e18a173d235dfaa6" + }, + "subtraces": 6, + "traceAddress": [], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3c524", + "input": "0x0902f1ac", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000cfecdcd3a4039989c3a00000000000000000000000000000000000000000000000000006b062b49d83c0000000000000000000000000000000000000000000000000000000060d0d25c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3a8f1", + "input": "0x0902f1ac", + "to": "0xb64f3d0eed138132a7782244625618959e008432", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000167e772b2ac8efabf64b00000000000000000000000000000000000000000000000000000014eca5debb0000000000000000000000000000000000000000000000000000000060d0d25c" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x37631", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x8e1bc9bf040000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x31550", + "input": "0xa9059cbb0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852000000000000000000000000000000000000000000000000008e1bc9bf040000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2ebc1", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048ed5bc000000000000000000000000b64f3d0eed138132a7782244625618959e00843200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xe972", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "call", + "gas": "0x2ac86", + "input": "0xa9059cbb000000000000000000000000b64f3d0eed138132a7782244625618959e00843200000000000000000000000000000000000000000000000000000000048ed5bc", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5fb5", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "staticcall", + "gas": "0x24c6d", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000cfece5b5609f89c9c3a" + }, + "subtraces": 0, + "traceAddress": [4, 1], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "callType": "staticcall", + "gas": "0x248ca", + "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x407", + "output": "0x00000000000000000000000000000000000000000000000000006b0626bb0280" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1feb6", + "input": "0x022c0d9f000000000000000000000000000000000000000000000004e18a173d235dfaa600000000000000000000000000000000000000000000000000000000000000000000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb64f3d0eed138132a7782244625618959e008432", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x16b75", "output": "0x" }, + "subtraces": 3, + "traceAddress": [5], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0xb64f3d0eed138132a7782244625618959e008432", + "callType": "call", + "gas": "0x1c34e", + "input": "0xa9059cbb0000000000000000000000006f670d3a1c2173a5972ca2a33ddba46ee573261b000000000000000000000000000000000000000000000004e18a173d235dfaa6", + "to": "0x3c0a9d9b70a253b47443470a28e2d8422b9c882f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xd9c4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0xb64f3d0eed138132a7782244625618959e008432", + "callType": "staticcall", + "gas": "0xea84", + "input": "0x70a08231000000000000000000000000b64f3d0eed138132a7782244625618959e008432", + "to": "0x3c0a9d9b70a253b47443470a28e2d8422b9c882f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x98e", + "output": "0x00000000000000000000000000000000000000000000167995a7ddd1d11f7df4" + }, + "subtraces": 0, + "traceAddress": [5, 1], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + }, + { + "action": { + "from": "0xb64f3d0eed138132a7782244625618959e008432", + "callType": "staticcall", + "gas": "0xdf86", + "input": "0x70a08231000000000000000000000000b64f3d0eed138132a7782244625618959e008432", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x407", + "output": "0x00000000000000000000000000000000000000000000000000000014f134b477" + }, + "subtraces": 0, + "traceAddress": [5, 2], + "transactionHash": "0x8ece422ac51415538f69646aa392b0c453d9612bbb8268d77f01f21cbfaee3e8", + "transactionPosition": 178, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xCF7058370dC4376536a58e09D619b5Ff2969516c", + "gas": 286984, + "gasPrice": "30800000000", + "hash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "input": "0xac9650d8000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000c4f3995c67000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000009f193f2700000000000000000000000000000000000000000000000000000000060d0da13000000000000000000000000000000000000000000000000000000000000001bfc2157efb1aa9f9d78953427ec997b408b1f3fa2ee93f6945c665d4e72ceee9963781bb9fd782631d8e542ed69b4ab907594dc819d8e5295b1882f457f3379c9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000009f193f270000000000000000000000000000000000000000000000001342fecd6b039c081000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000001342fecd6b039c081000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c00000000000000000000000000000000000000000000000000000000", + "nonce": 480, + "to": "0xE592427A0AEce92De3Edee1F18E0157C05861564", + "transactionIndex": 179, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xe90c22aebd5619579863ec3eb327eef4c84f771c27d958726339991cb3338760", + "s": "0x4c56fbf4e06c4b0fa9c79b2f32959b6514932c0ef26be809e8e0b0cec18323ca", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13021776", + "effectiveGasPrice": "30800000000", + "from": "0xcf7058370dc4376536a58e09d619b5ff2969516c", + "gasUsed": "183237", + "logs": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x00000000000000000000000000000000000000000000000000000009f193f270", + "blockNumber": 12679108, + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 326, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xcf7058370dc4376536a58e09d619b5ff2969516c" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "42707710576" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x00000000000000000000000000000000000000000000000134a4cdf37bd0fec4", + "blockNumber": 12679108, + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 327, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c", + "0x00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ], + "data": "0x00000000000000000000000000000000000000000000000000000009f193f270", + "blockNumber": 12679108, + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 328, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "address": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x00000000000000000000000000000000000000000000000000000009f193f270fffffffffffffffffffffffffffffffffffffffffffffffecb5b320c842f013c00000000000000000000000000000000000059238a61090f0125cee95b755a6a000000000000000000000000000000000000000000000000193b86b423cc9872000000000000000000000000000000000000000000000000000000000003100d", + "blockNumber": 12679108, + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 329, + "removed": false, + "decoded": { + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "signature_with_arg_names": "Swap(address indexed sender,address indexed recipient,int256 amount0,int256 amount1,uint160 sqrtPriceX96,uint128 liquidity,int24 tick)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address", + "decoded": "0xe592427a0aece92de3edee1f18e0157c05861564" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount0", + "type": "int256", + "decoded": "42707710576" + }, + { + "indexed": false, + "internalType": "int256", + "name": "amount1", + "type": "int256", + "decoded": "-22240127305500393156" + }, + { + "indexed": false, + "internalType": "uint160", + "name": "sqrtPriceX96", + "type": "uint160", + "decoded": "1807950266652935849992195652541034" + }, + { + "indexed": false, + "internalType": "uint128", + "name": "liquidity", + "type": "uint128", + "decoded": "1818194982826973298" + }, + { + "indexed": false, + "internalType": "int24", + "name": "tick", + "type": "int24", + "decoded": "200717" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564" + ], + "data": "0x00000000000000000000000000000000000000000000000134a4cdf37bd0fec4", + "blockNumber": 12679108, + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 330, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00000002010000000000000000000000000000000000000000000000040000000080000000000000000008000000000002000000080020000080000000200000000000000000000808000008000000000000000000400000000000000000000000000000000000000000100000000000000000000000040000000010000800000000000000000000000000000000000000000000010000000000000000000000020000000000200000000000800000000000000000000000002000000008000000000002000000000000000000000000000000000000000000000002000000000010200000000000000010001000000000000000000000000000000000000000", + "status": true, + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionIndex": 179, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xcf7058370dc4376536a58e09d619b5ff2969516c", + "callType": "call", + "gas": "0x3f798", + "input": "0xac9650d8000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000c4f3995c67000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000009f193f2700000000000000000000000000000000000000000000000000000000060d0da13000000000000000000000000000000000000000000000000000000000000001bfc2157efb1aa9f9d78953427ec997b408b1f3fa2ee93f6945c665d4e72ceee9963781bb9fd782631d8e542ed69b4ab907594dc819d8e5295b1882f457f3379c9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104414bf389000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000009f193f270000000000000000000000000000000000000000000000001342fecd6b039c081000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c000000000000000000000000000000000000000000000001342fecd6b039c081000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c00000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x33865", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000134a4cdf37bd0fec40000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x3e2e2", + "input": "0xf3995c67000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000009f193f2700000000000000000000000000000000000000000000000000000000060d0da13000000000000000000000000000000000000000000000000000000000000001bfc2157efb1aa9f9d78953427ec997b408b1f3fa2ee93f6945c665d4e72ceee9963781bb9fd782631d8e542ed69b4ab907594dc819d8e5295b1882f457f3379c9", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xd036", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x3c627", + "input": "0xd505accf000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156400000000000000000000000000000000000000000000000000000009f193f2700000000000000000000000000000000000000000000000000000000060d0da13000000000000000000000000000000000000000000000000000000000000001bfc2157efb1aa9f9d78953427ec997b408b1f3fa2ee93f6945c665d4e72ceee9963781bb9fd782631d8e542ed69b4ab907594dc819d8e5295b1882f457f3379c9", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xc29c", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x39b16", + "input": "0xd505accf000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156400000000000000000000000000000000000000000000000000000009f193f2700000000000000000000000000000000000000000000000000000000060d0da13000000000000000000000000000000000000000000000000000000000000001bfc2157efb1aa9f9d78953427ec997b408b1f3fa2ee93f6945c665d4e72ceee9963781bb9fd782631d8e542ed69b4ab907594dc819d8e5295b1882f457f3379c9", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa608", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x31361", + "input": "0x414bf389000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d0d6b100000000000000000000000000000000000000000000000000000009f193f270000000000000000000000000000000000000000000000001342fecd6b039c0810000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2119c", + "output": "0x00000000000000000000000000000000000000000000000134a4cdf37bd0fec4" + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x2ebfe", + "input": "0x128acb08000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000009f193f27000000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f48d", + "output": "0x00000000000000000000000000000000000000000000000000000009f193f270fffffffffffffffffffffffffffffffffffffffffffffffecb5b320c842f013c" + }, + "subtraces": 4, + "traceAddress": [1, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "callType": "call", + "gas": "0x1db5a", + "input": "0xa9059cbb000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156400000000000000000000000000000000000000000000000134a4cdf37bd0fec4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "callType": "staticcall", + "gas": "0x164bd", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcf3", + "output": "0x000000000000000000000000000000000000000000000000000002c230553c47" + }, + "subtraces": 1, + "traceAddress": [1, 0, 1], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x15c50", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9e1", + "output": "0x000000000000000000000000000000000000000000000000000002c230553c47" + }, + "subtraces": 0, + "traceAddress": [1, 0, 1, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "callType": "call", + "gas": "0x154e7", + "input": "0xfa461e3300000000000000000000000000000000000000000000000000000009f193f270fffffffffffffffffffffffffffffffffffffffffffffffecb5b320c842f013c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x4cc0", "output": "0x" }, + "subtraces": 1, + "traceAddress": [1, 0, 2], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0x14137", + "input": "0x23b872dd000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f564000000000000000000000000000000000000000000000000000000009f193f270", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3ce8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [1, 0, 2, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x1394f", + "input": "0x23b872dd000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f564000000000000000000000000000000000000000000000000000000009f193f270", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x39cd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 0, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "callType": "staticcall", + "gas": "0x106e1", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x523", + "output": "0x000000000000000000000000000000000000000000000000000002cc21e92eb7" + }, + "subtraces": 1, + "traceAddress": [1, 0, 3], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0xffec", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x211", + "output": "0x000000000000000000000000000000000000000000000000000002cc21e92eb7" + }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "delegatecall", + "gas": "0x10752", + "input": "0x49404b7c000000000000000000000000000000000000000000000001342fecd6b039c081000000000000000000000000cf7058370dc4376536a58e09d619b5ff2969516c", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x46fd", "output": "0x" }, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "staticcall", + "gas": "0x10074", + "input": "0x70a08231000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000134a4cdf37bd0fec4" + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0xfcac", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000134a4cdf37bd0fec4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [2, 1], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xe592427a0aece92de3edee1f18e0157c05861564", + "value": "0x134a4cdf37bd0fec4" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [2, 1, 0], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + }, + { + "action": { + "from": "0xe592427a0aece92de3edee1f18e0157c05861564", + "callType": "call", + "gas": "0xbddd", + "input": "0x", + "to": "0xcf7058370dc4376536a58e09d619b5ff2969516c", + "value": "0x134a4cdf37bd0fec4" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0xd5f11f62e787c3cc446a02e0149d4138c10b42aceb44fb7138ed2886b4d73336", + "transactionPosition": 179, + "type": "call" + } + ], + "decoded": null + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xa1f867a933Cfb14f57AD0d2574C4cDCC52a1c0Ca", + "gas": 546025, + "gasPrice": "30800000000", + "hash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "input": "0x791ac9470000000000000000000000000000000000000000000000012245b1b5a5ec59d200000000000000000000000000000000000000000000000000c75ac27e3a799900000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca0000000000000000000000000000000000000000000000000000000060d0d90900000000000000000000000000000000000000000000000000000000000000020000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 32, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 180, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xb3cb3ec5019f6a9a732f764992944852cf66f7c4df951aa9acb93babb8248a96", + "s": "0x382a24692c22a644db751fa4c888e200cfe2c341f7eb7a73f4ab676b45935de3", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13375409", + "effectiveGasPrice": "30800000000", + "from": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca", + "gasUsed": "353633", + "logs": [ + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 331, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039376667688475006576173" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 332, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "18197197911167065474" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 333, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039376667688475006576173" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000039334a0be1b56f", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 334, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000db0d273cb5c3e5d128d00000000000000000000000000000000000000000000000b51a5f0df9ac88655", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 335, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039334a0be1b56f", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 336, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000039334a0be1b56f", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 337, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0x32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7" + ], + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 338, + "removed": false, + "decoded": { + "signature": "SwapTokensForETH(uint256,address[])", + "signature_with_arg_names": "SwapTokensForETH(uint256 amountIn,address[] path)", + "name": "SwapTokensForETH", + "decoded": [ + { + "indexed": false, + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "5000000000000000000" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000023c7ab0ee25714", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 339, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4" + ], + "data": "0x0000000000000000000000000000000000000000000000000023c7ab0ee25714", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 340, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "0x000000000000000000000000000000000000000000000000000000000000dead" + ], + "data": "0x000000000000000000000000000000000000000000000000258957306679aa20", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 341, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "18197197911167065474" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000db0a755b74b1591f03300000000000000000000000000000000000000000000000b51c9b88aa9aadd69", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 342, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000000000000000000000000000000000000000dead" + ], + "data": "0x0000000000000000000000000000000000000000000000000007240329af0e100000000000000000000000000000000000000000000000000023c7ab0ee257140000000000000000000000000000000000000000000000002b253814527a306a0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 343, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0x6fd378a9d8b7345c2e5b18229aaf1e39d32b177b501d0a0d26a0a858a23a9624" + ], + "data": "0x0000000000000000000000000000000000000000000000000023c7ab0ee2571400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 344, + "removed": false, + "decoded": { + "signature": "SwapETHForTokens(uint256,address[])", + "signature_with_arg_names": "SwapETHForTokens(uint256 amountIn,address[] path)", + "name": "SwapETHForTokens", + "decoded": [ + { + "indexed": false, + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "10071161687922452" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7" + ] + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4" + ], + "data": "0x000000000000000000000000000000000000000000000000fc896f165a97dd82", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 345, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "18197197911167065474" + } + ] + } + }, + { + "address": "0x3f9078B8fBCb1C4e03B41fa9e5a0532A28848dB7", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000a1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffffb9d0f7c2f1ea3a62d", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 346, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039376667688475006576173" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000d0470434bc3ad2", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 347, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000db1a40f344aacb9c46d00000000000000000000000000000000000000000000000b50f9718674eea297", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 348, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x6Bc4FBE8b72512d994fBa72adE9DE502B3d88AC4", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000fcb97cff9727d43a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0470434bc3ad2", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 349, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000d0470434bc3ad2", + "blockNumber": 12679108, + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 350, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000010000000000080000000000000000000000000090000000000000000000000000000000000000000000002000000080000000000000000200020000000120000000000000018000000200000000000400000000000008000020000000000000000000000020000000000000001400000040000000010000000000000008000000000004004000000000000080001004000080000004000000000020000000000000000000000000000000000018000000000000000000000000000000402000000000000000000020000000000000010001000000002000020000010200000000000000000008000000000000002000020408000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionIndex": 180, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca", + "callType": "call", + "gas": "0x7fac9", + "input": "0x791ac9470000000000000000000000000000000000000000000000012245b1b5a5ec59d200000000000000000000000000000000000000000000000000c75ac27e3a799900000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca0000000000000000000000000000000000000000000000000000000060d0d90900000000000000000000000000000000000000000000000000000000000000020000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x68ec1", "output": "0x" }, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x7c8e9", + "input": "0x23b872dd000000000000000000000000a1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac40000000000000000000000000000000000000000000000012245b1b5a5ec59d2", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x586f6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 5, + "traceAddress": [0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "callType": "staticcall", + "gas": "0x725f6", + "input": "0xad5c4648", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x113", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "callType": "call", + "gas": "0x6c28f", + "input": "0x791ac9470000000000000000000000000000000000000000000000004563918244f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db70000000000000000000000000000000000000000000000000000000060d0d26d00000000000000000000000000000000000000000000000000000000000000020000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x235e9", "output": "0x" }, + "subtraces": 7, + "traceAddress": [0, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x69f2d", + "input": "0x23b872dd0000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db70000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac40000000000000000000000000000000000000000000000004563918244f40000", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb6b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x5db13", + "input": "0x0902f1ac", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000db08d1039d9f969128d00000000000000000000000000000000000000000000000b51df2429a6aa3bc40000000000000000000000000000000000000000000000000000000060d0d1f1" + }, + "subtraces": 0, + "traceAddress": [0, 1, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x5cf73", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000000db0d273cb5c3e5d128d" + }, + "subtraces": 0, + "traceAddress": [0, 1, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x5c02a", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039334a0be1b56f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x104ae", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 1, 3], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "call", + "gas": "0x5759d", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000039334a0be1b56f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x5000e", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000000db0d273cb5c3e5d128d" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x4f52f", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000b51a5f0df9ac88655" + }, + "subtraces": 0, + "traceAddress": [0, 1, 3, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x4bdc1", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000039334a0be1b56f" + }, + "subtraces": 0, + "traceAddress": [0, 1, 4], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x4ba0b", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000039334a0be1b56f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 1, 5], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x39334a0be1b56f" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 5, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x47b3c", + "input": "0x", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x39334a0be1b56f" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x37", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1, 6], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xa51b67084e8dfdb0f0993f275c6627c6d64e2c30", + "value": "0x1c99a505f0dab2" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "callType": "staticcall", + "gas": "0x43b36", + "input": "0xad5c4648", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x113", + "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "callType": "call", + "gas": "0x41adb", + "input": "0xb6f9de9500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000060d0d3990000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000003f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x23c7ab0ee25714" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x17014", "output": "0x" }, + "subtraces": 7, + "traceAddress": [0, 4], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x3ed7c", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x23c7ab0ee25714" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x55d6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 4, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x3946b", + "input": "0xa9059cbb0000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac40000000000000000000000000000000000000000000000000023c7ab0ee25714", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xcbe", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 4, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x38601", + "input": "0x70a08231000000000000000000000000000000000000000000000000000000000000dead", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x190f", + "output": "0x0000000000000000000000000000000000000000000001bd305570dbfb9dc211" + }, + "subtraces": 0, + "traceAddress": [0, 4, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3674c", + "input": "0x0902f1ac", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f8", + "output": "0x000000000000000000000000000000000000000000000db0d273cb5c3e5d128d00000000000000000000000000000000000000000000000b51a5f0df9ac886550000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0, 4, 3], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x36353", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000b51c9b88aa9aadd69" + }, + "subtraces": 0, + "traceAddress": [0, 4, 4], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x35b3f", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000002b253814527a306a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dead00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xb1d5", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0, 4, 5], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "call", + "gas": "0x33b14", + "input": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000002b253814527a306a", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7708", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0, 4, 5, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x2c37b", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000000db0a755b74b1591f033" + }, + "subtraces": 0, + "traceAddress": [0, 4, 5, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x2b89c", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000b51c9b88aa9aadd69" + }, + "subtraces": 0, + "traceAddress": [0, 4, 5, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2aa21", + "input": "0x70a08231000000000000000000000000000000000000000000000000000000000000dead", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x0000000000000000000000000000000000000000000001bd55dfb0555bfc21f8" + }, + "subtraces": 0, + "traceAddress": [0, 4, 6], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2516a", + "input": "0x0902f1ac", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f8", + "output": "0x000000000000000000000000000000000000000000000db0a755b74b1591f03300000000000000000000000000000000000000000000000b51c9b88aa9aadd690000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x24d7b", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000000db1a40f344aacb9c46d" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x23e32", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0470434bc3ad20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x954a", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "call", + "gas": "0x2225c", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000d0470434bc3ad2", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5a7a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x1c6f3", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x96f", + "output": "0x000000000000000000000000000000000000000000000db1a40f344aacb9c46d" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x6bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "callType": "staticcall", + "gas": "0x1bc14", + "input": "0x70a082310000000000000000000000006bc4fbe8b72512d994fba72ade9de502b3d88ac4", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000b50f9718674eea297" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1a970", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000000d0470434bc3ad2" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1a5ba", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000000d0470434bc3ad2", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xd0470434bc3ad2" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x166eb", + "input": "0x", + "to": "0xa1f867a933cfb14f57ad0d2574c4cdcc52a1c0ca", + "value": "0xd0470434bc3ad2" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0xcce54ee9e9453ce54e8e8d121c2c3fa02b2c1014155f6162f160253539289039", + "transactionPosition": 180, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "11501758286181452164306" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "883654538300447116" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298125" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x9EB97BF8fef03F7599736e8263CB78F4F087384C", + "gas": 247652, + "gasPrice": "30800000000", + "hash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "input": "0x38ed17390000000000000000000000000000000000000000000000000000000d7fe6d9fb00000000000000000000000000000000000000000000000008cd04551d2c1d1700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c0000000000000000000000000000000000000000000000000000000060d0d6bb00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000258f474786ddfd37abce6df6bbb1dd5dfc4434a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000062359ed7505efc61ff1d56fef82158ccaffa23d7", + "nonce": 1518, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 181, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x265a93e55068df5343969cc69b0a32b931c2cce65ddf1ab6ff95b86e05789409", + "s": "0x4e6c6ad15380567df5690cce56a6c04e120265f63da8c5fbdd9c9e0a1355921d", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13547713", + "effectiveGasPrice": "30800000000", + "from": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c", + "gasUsed": "172304", + "logs": [ + { + "address": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c", + "0x0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000d7fe6d9fb", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 351, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "57980410363" + } + ] + } + }, + { + "address": "0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffcbe691e6ae", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 352, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "name": "owner", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "indexed": true, + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564039457584007689364694702" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "0x00000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b" + ], + "data": "0x0000000000000000000000000000000000000000000000001b04c4c235a76e50", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 353, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x6C8b0Dee9E90EA9F790DA5DaF6f5B20D23B39689", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000000004f93efbfa9c500000000000000000000000000000000000000000000009fa4ba9033f03f1752", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 354, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x6C8b0Dee9E90EA9F790DA5DaF6f5B20D23B39689", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000d7fe6d9fb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b04c4c235a76e50", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 355, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b", + "0x0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c" + ], + "data": "0x00000000000000000000000000000000000000000000000008d1d389366a5559", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 356, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "635521608712869209" + } + ] + } + }, + { + "address": "0x32Ce7e48debdccbFE0CD037Cc89526E4382cb81b", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000af41b37fafffe3f810000000000000000000000000000000000000000000000218f8678a16c102535", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 357, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x32Ce7e48debdccbFE0CD037Cc89526E4382cb81b", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b04c4c235a76e5000000000000000000000000000000000000000000000000008d1d389366a55590000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 358, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000400000200000000000000000000000002000000080000000800000400200000000000000000000000000008000000200000000000000000000000000100000000000000000000000000000000000000000000000000280000000010000000000000000000000000004000000000002000000000000000080000004100000008020020100000000000000000000000000000000000000000000003000000000000008002000000000800000000000000000000001000001000000000000020000010200000000000000000000000000800000000400002000000000000000020", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionIndex": 181, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c", + "callType": "call", + "gas": "0x36bf8", + "input": "0x38ed17390000000000000000000000000000000000000000000000000000000d7fe6d9fb00000000000000000000000000000000000000000000000008cd04551d2c1d1700000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c0000000000000000000000000000000000000000000000000000000060d0d6bb00000000000000000000000000000000000000000000000000000000000000030000000000000000000000000258f474786ddfd37abce6df6bbb1dd5dfc4434a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000062359ed7505efc61ff1d56fef82158ccaffa23d7", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2961c", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000d7fe6d9fb0000000000000000000000000000000000000000000000001b04c4c235a76e5000000000000000000000000000000000000000000000000008d1d389366a5559" + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x34bf4", + "input": "0x0902f1ac", + "to": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000000004f866fd8cfca00000000000000000000000000000000000000000000009fbfbf54f625e685a20000000000000000000000000000000000000000000000000000000060d0d26d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x32fc2", + "input": "0x0902f1ac", + "to": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000afced0b84366894da0000000000000000000000000000000000000000000000217481b3df3668b6e50000000000000000000000000000000000000000000000000000000060d0cff5" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x311af", + "input": "0x23b872dd0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c0000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b396890000000000000000000000000000000000000000000000000000000d7fe6d9fb", + "to": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4fd2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2b7dd", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b04c4c235a76e5000000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x9194", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "call", + "gas": "0x27972", + "input": "0xa9059cbb00000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b0000000000000000000000000000000000000000000000001b04c4c235a76e50", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x323e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "staticcall", + "gas": "0x245a3", + "input": "0x70a082310000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "to": "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d1", + "output": "0x00000000000000000000000000000000000000000000000000004f93efbfa9c5" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x6c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "callType": "staticcall", + "gas": "0x24244", + "input": "0x70a082310000000000000000000000006c8b0dee9e90ea9f790da5daf6f5b20d23b39689", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000009fa4ba9033f03f1752" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x22150", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000008d1d389366a555900000000000000000000000000000000000000000000000000000000000000000000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1520e", "output": "0x" }, + "subtraces": 3, + "traceAddress": [4], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "callType": "call", + "gas": "0x1e55d", + "input": "0xa9059cbb0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c00000000000000000000000000000000000000000000000008d1d389366a5559", + "to": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xc98f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "traceAddress": [4, 0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "callType": "call", + "gas": "0x1b3d2", + "input": "0x301a580100000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c00000000000000000000000000000000000000000000000008d1d389366a5559", + "to": "0x2e2a33ceca9aef101d679ed058368ac994118e7a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6fb9", + "output": "0x00000000000000000000000000000000000000000000000008d1d389366a55590000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [4, 0, 0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x2e2a33ceca9aef101d679ed058368ac994118e7a", + "callType": "delegatecall", + "gas": "0x1912b", + "input": "0x301a580100000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b0000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c00000000000000000000000000000000000000000000000008d1d389366a5559", + "to": "0xc0d019a4ffd6d1ba7fba6de77caa81af60586167", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x5344", + "output": "0x00000000000000000000000000000000000000000000000008d1d389366a55590000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [4, 0, 0, 0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x2e2a33ceca9aef101d679ed058368ac994118e7a", + "callType": "staticcall", + "gas": "0x16688", + "input": "0x18160ddd", + "to": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x954", + "output": "0x000000000000000000000000000000000000000000000010f611120a4635177d" + }, + "subtraces": 0, + "traceAddress": [4, 0, 0, 0, 0], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "callType": "staticcall", + "gas": "0x13707", + "input": "0xaabc9a31000000000000000000000000000000000000000000000000000000000000008000000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000009eb97bf8fef03f7599736e8263cb78f4f087384c000000000000000000000000000000000000000000000000000000000000000b53656e646572206973203a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5265636970656e74206973203a00000000000000000000000000000000000000", + "to": "0x000000000000000000636f6e736f6c652e6c6f67", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4, 0, 1], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "callType": "staticcall", + "gas": "0x133ff", + "input": "0x9710a9d0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000008d1d389366a5559000000000000000000000000000000000000000000000000000000000000000a616d6f756e742069732000000000000000000000000000000000000000000000", + "to": "0x000000000000000000636f6e736f6c652e6c6f67", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [4, 0, 2], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "callType": "staticcall", + "gas": "0x11c87", + "input": "0x70a0823100000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b", + "to": "0x62359ed7505efc61ff1d56fef82158ccaffa23d7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x24a", + "output": "0x00000000000000000000000000000000000000000000000af41b37fafffe3f81" + }, + "subtraces": 0, + "traceAddress": [4, 1], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + }, + { + "action": { + "from": "0x32ce7e48debdccbfe0cd037cc89526e4382cb81b", + "callType": "staticcall", + "gas": "0x118b1", + "input": "0x70a0823100000000000000000000000032ce7e48debdccbfe0cd037cc89526e4382cb81b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000218f8678a16c102535" + }, + "subtraces": 0, + "traceAddress": [4, 2], + "transactionHash": "0x549982eb702ea5d5296c61e099d9917d62cceac4a022776347b829c6b7a85403", + "transactionPosition": 181, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "57980410363" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "634167886137269527" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0x0258f474786ddfd37abce6df6bbb1dd5dfc4434a", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x62359ed7505efc61ff1d56fef82158ccaffa23d7" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x9eb97bf8fef03f7599736e8263cb78f4f087384c" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299195" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x0262f31b32dA2c0A08B5FcAA51d08cf50c835278", + "gas": 152433, + "gasPrice": "30800000000", + "hash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "input": "0x7ff36ab5000000000000000000000000000000000000000000745837effc910269454c1e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c8352780000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000002b5ca2f9510cf1e3595ff219f24d75d4244585ea", + "nonce": 163, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 182, + "value": "300000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x3b2400e6619658eade80c0d50314370a6a2b2a8ba68b7cc1a62b9b1c69e45a44", + "s": "0x228f9c6d5557fa6624d0660fce7a63f1cbea205bf93a238858fdee254cababfb", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13649530", + "effectiveGasPrice": "30800000000", + "from": "0x0262f31b32da2c0a08b5fcaa51d08cf50c835278", + "gasUsed": "101817", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 359, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000376079a32d73b3942639486da4841ca31afa9960" + ], + "data": "0x0000000000000000000000000000000000000000000000000429d069189e0000", + "blockNumber": 12679108, + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 360, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x2b5cA2F9510cf1e3595Ff219f24D75D4244585EA", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000376079a32d73b3942639486da4841ca31afa9960", + "0x0000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c835278" + ], + "data": "0x00000000000000000000000000000000000000000076abe722ddc71c0f3752c3", + "blockNumber": 12679108, + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 361, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x376079a32d73b3942639486da4841ca31afa9960" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0262f31b32da2c0a08b5fcaa51d08cf50c835278" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "143465035093361069324194499" + } + ] + } + }, + { + "address": "0x376079a32d73B3942639486dA4841cA31AFa9960", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000002765d0a9b56894a131ee9650b000000000000000000000000000000000000000000000016109ba9deecab60c2", + "blockNumber": 12679108, + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 362, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x376079a32d73B3942639486dA4841cA31AFa9960", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c835278" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000429d069189e000000000000000000000000000000000000000000000076abe722ddc71c0f3752c30000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 363, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x0020000000000000000000008000200000000000000000000001000000000000000000001000a000000000000000000002000000080000000040000000000000000000000000000000000008000000200400000000000000000000008000000000400000000000000000000000000020000000000000000000000010000000000000000000000000004000000000000000000001000000080000404004000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000020000000000000000000000001000000000000020000000200000000000000000000000000000000400000000400000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionIndex": 182, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x0262f31b32da2c0a08b5fcaa51d08cf50c835278", + "callType": "call", + "gas": "0x1fa0d", + "input": "0x7ff36ab5000000000000000000000000000000000000000000745837effc910269454c1e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c8352780000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000002b5ca2f9510cf1e3595ff219f24d75d4244585ea", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x429d069189e0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x18d01", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000429d069189e000000000000000000000000000000000000000000000076abe722ddc71c0f3752c3" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1dfac", + "input": "0x0902f1ac", + "to": "0x376079a32d73b3942639486da4841ca31afa9960", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000276d3b6827967112f2e20b7ce0000000000000000000000000000000000000000000000160c71d975d40d60c20000000000000000000000000000000000000000000000000000000060d0d1dc" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1acec", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x429d069189e0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14c01", + "input": "0xa9059cbb000000000000000000000000376079a32d73b3942639486da4841ca31afa99600000000000000000000000000000000000000000000000000429d069189e0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x12502", + "input": "0x022c0d9f00000000000000000000000000000000000000000076abe722ddc71c0f3752c300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c83527800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x376079a32d73b3942639486da4841ca31afa9960", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbad4", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x376079a32d73b3942639486da4841ca31afa9960", + "callType": "call", + "gas": "0xed00", + "input": "0xa9059cbb0000000000000000000000000262f31b32da2c0a08b5fcaa51d08cf50c83527800000000000000000000000000000000000000000076abe722ddc71c0f3752c3", + "to": "0x2b5ca2f9510cf1e3595ff219f24d75d4244585ea", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3255", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x376079a32d73b3942639486da4841ca31afa9960", + "callType": "staticcall", + "gas": "0xb908", + "input": "0x70a08231000000000000000000000000376079a32d73b3942639486da4841ca31afa9960", + "to": "0x2b5ca2f9510cf1e3595ff219f24d75d4244585ea", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x24a", + "output": "0x0000000000000000000000000000000000000002765d0a9b56894a131ee9650b" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x376079a32d73b3942639486da4841ca31afa9960", + "callType": "staticcall", + "gas": "0xb531", + "input": "0x70a08231000000000000000000000000376079a32d73b3942639486da4841ca31afa9960", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000016109ba9deecab60c2" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x7f2f81fe9bfe36c032ec945512de977ec1470e2b62e6cc0ae455da6d5b8edebb", + "transactionPosition": 182, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x2f98B029A411D182FF9F61420E8b7d2cBf0Ae9b8", + "gas": 21000, + "gasPrice": "30800000000", + "hash": "0x9844be5337976064e6c6d3876894331280860b7fca1b0a9ff1820ff2acee62f2", + "input": "0x", + "nonce": 121, + "to": "0xc5efc85fE0baA6C223Ab1A78f83B9562d298E9b8", + "transactionIndex": 183, + "value": "991997433543681696", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xa4b4248f892b5b15adc8102509d07e0f025e18875005d3e30dedf89b68e04fc0", + "s": "0x70fd1198ba763db7bdb83b06f12b3fe9b763315318f46dcacb505968668f8f5", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13670530", + "effectiveGasPrice": "30800000000", + "from": "0x2f98b029a411d182ff9f61420e8b7d2cbf0ae9b8", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xc5efc85fe0baa6c223ab1a78f83b9562d298e9b8", + "transactionHash": "0x9844be5337976064e6c6d3876894331280860b7fca1b0a9ff1820ff2acee62f2", + "transactionIndex": 183, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x2f98b029a411d182ff9f61420e8b7d2cbf0ae9b8", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xc5efc85fe0baa6c223ab1a78f83b9562d298e9b8", + "value": "0xdc44868f47866a0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x9844be5337976064e6c6d3876894331280860b7fca1b0a9ff1820ff2acee62f2", + "transactionPosition": 183, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x879246D39A6ff0d8954B36644E2DfD578455C95b", + "gas": 21000, + "gasPrice": "30800000000", + "hash": "0xcca16e8deb80e1cb4fa2a916fe09f978521eb919178e354685730db7d7d02863", + "input": "0x", + "nonce": 10, + "to": "0x2D7DC4b590A62F26486b69eff84fa2aCd9eeD61C", + "transactionIndex": 184, + "value": "78181192732276323", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x3d3475a624627c0a0b9d2f3144c8f59a3056521f5f6b26a85923eaba3591a72a", + "s": "0x75bf6ac5b8eeacec6ff398fd150b4ee64997fc6be2c50c053527f3f68ac812db", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13691530", + "effectiveGasPrice": "30800000000", + "from": "0x879246d39a6ff0d8954b36644e2dfd578455c95b", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2d7dc4b590a62f26486b69eff84fa2acd9eed61c", + "transactionHash": "0xcca16e8deb80e1cb4fa2a916fe09f978521eb919178e354685730db7d7d02863", + "transactionIndex": 184, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x879246d39a6ff0d8954b36644e2dfd578455c95b", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x2d7dc4b590a62f26486b69eff84fa2acd9eed61c", + "value": "0x115c1616cec7663" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcca16e8deb80e1cb4fa2a916fe09f978521eb919178e354685730db7d7d02863", + "transactionPosition": 184, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xdB05bD3092190a89eE0264b91cd7969a7685155d", + "gas": 238123, + "gasPrice": "30800000000", + "hash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "input": "0x7ff36ab50000000000000000000000000000000000000000000000000f65a1006accab960000000000000000000000000000000000000000000000000000000000000080000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d0000000000000000000000000000000000000000000000000000000060d0d6bb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007d8a133b3fdda2bdc340b6402943110dae3f299e", + "nonce": 1067, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 185, + "value": "30000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x3afb16e997a0e6ec09fc163fa9efc02b8ef2c6bf0256c2bda03df5390a8e853f", + "s": "0x1ead2e33353850e093b2b87e8d12669503d7dee95c438d1f5fc01ca7fb42a2ac", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13863638", + "effectiveGasPrice": "30800000000", + "from": "0xdb05bd3092190a89ee0264b91cd7969a7685155d", + "gasUsed": "172108", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x000000000000000000000000000000000000000000000000006a94d74f430000", + "blockNumber": 12679108, + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 364, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000493f66e5f3a4f1b8fd138581486193bf2f6118f7" + ], + "data": "0x000000000000000000000000000000000000000000000000006a94d74f430000", + "blockNumber": 12679108, + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 365, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x7D8A133B3fDDa2bDC340b6402943110dAE3f299E", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "0x000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d" + ], + "data": "0x0000000000000000000000000000000000000000000000000ff970a3a201253a", + "blockNumber": 12679108, + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 366, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xdb05bd3092190a89ee0264b91cd7969a7685155d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1151075027869836602" + } + ] + } + }, + { + "address": "0x493f66e5f3A4F1b8fD138581486193Bf2F6118f7", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000001c09e905f4b24087080000000000000000000000000000000000000000000000009b36453ba7e80086", + "blockNumber": 12679108, + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 367, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x493f66e5f3A4F1b8fD138581486193Bf2F6118f7", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d" + ], + "data": "0x000000000000000000000000000000000000000000000000007f6b36e81702dc000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000133f0940857fd67c0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 368, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200100000000000000000080000000000000000020000000010000000000000000000000000000000000000000000002000000080000000000000000000000000000000000000002000008000004200000000000000000000000008000000000000000000000000000000000000000000000000200000000000010000000000000000000000000004000000000000000000001000000080000004000000000000000000000000000000000000000000000000400000100000000000002000000000002000000000000000000000008000000000000009000000000800020000000200000000000000000000000000000000200000000400000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionIndex": 185, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xdb05bd3092190a89ee0264b91cd7969a7685155d", + "callType": "call", + "gas": "0x348f7", + "input": "0x7ff36ab50000000000000000000000000000000000000000000000000f65a1006accab960000000000000000000000000000000000000000000000000000000000000080000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d0000000000000000000000000000000000000000000000000000000060d0d6bb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007d8a133b3fdda2bdc340b6402943110dae3f299e", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x6a94d74f430000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29fc4", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000133f0940857fd67c" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x3295b", + "input": "0x0902f1ac", + "to": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000001c1ca8a3fe4fa95aa80000000000000000000000000000000000000000000000009acbb06458a500860000000000000000000000000000000000000000000000000000000060d0d1f1" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2f69a", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x6a94d74f430000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x295b0", + "input": "0xa9059cbb000000000000000000000000493f66e5f3a4f1b8fd138581486193bf2f6118f7000000000000000000000000000000000000000000000000006a94d74f430000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x26eb0", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000133f0940857fd67c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1cd97", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "callType": "call", + "gas": "0x23188", + "input": "0xa9059cbb000000000000000000000000db05bd3092190a89ee0264b91cd7969a7685155d000000000000000000000000000000000000000000000000133f0940857fd67c", + "to": "0x7d8a133b3fdda2bdc340b6402943110dae3f299e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x13cf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "callType": "staticcall", + "gas": "0xf71d", + "input": "0x70a08231000000000000000000000000493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "to": "0x7d8a133b3fdda2bdc340b6402943110dae3f299e", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa74", + "output": "0x00000000000000000000000000000000000000000000001c09e905f4b2408708" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + }, + { + "action": { + "from": "0x493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "callType": "staticcall", + "gas": "0xeb3e", + "input": "0x70a08231000000000000000000000000493f66e5f3a4f1b8fd138581486193bf2f6118f7", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000009b36453ba7e80086" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x4e96169ca305a7be5cf0e197dab4b4d51478f82de5de5f08fbca900b40f1686c", + "transactionPosition": 185, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x86FF465d4EC0052fcCdcD3529EE15c46ab56295a", + "gas": 182953, + "gasPrice": "30800000000", + "hash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "input": "0x7ff36ab500000000000000000000000000000000000000003788c2f1948031c5b21aacac000000000000000000000000000000000000000000000000000000000000008000000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a0000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f046bfa2699aa676455729f7a0b9716164c6a793", + "nonce": 492, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 186, + "value": "70000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x8da2baa6da7bf0f29b9f82701852ac8d32d48e56e381d0f6c388b8d69a47b167", + "s": "0x62ff2ec0f0ed5097e3eb41b9cb998aa318aeec7116479950fba92c15a2391467", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "13990490", + "effectiveGasPrice": "30800000000", + "from": "0x86ff465d4ec0052fccdcd3529ee15c46ab56295a", + "gasUsed": "126852", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000f8b0a10e470000", + "blockNumber": 12679108, + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 369, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000008d09f872d06fda1572100e316b5b23c7b922b333" + ], + "data": "0x00000000000000000000000000000000000000000000000000f8b0a10e470000", + "blockNumber": 12679108, + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 370, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xf046BFa2699aA676455729f7a0B9716164c6a793", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008d09f872d06fda1572100e316b5b23c7b922b333", + "0x00000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a" + ], + "data": "0x00000000000000000000000000000000000000003f167feaa8b597165c7778fc", + "blockNumber": 12679108, + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 371, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed _from,address indexed _to,uint256 _value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "_from", + "type": "address", + "decoded": "0x8d09f872d06fda1572100e316b5b23c7b922b333" + }, + { + "indexed": true, + "internalType": "address", + "name": "_to", + "type": "address", + "decoded": "0x86ff465d4ec0052fccdcd3529ee15c46ab56295a" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "_value", + "type": "uint256", + "decoded": "19524756056014487755934890236" + } + ] + } + }, + { + "address": "0x8d09f872d06Fda1572100E316B5B23c7b922B333", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x000000000000000000000000000000000000000000000000e3bdb3a1aaf3e9320000000000000000000000000000000000000039b340db6cbf088186af0b28d5", + "blockNumber": 12679108, + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 372, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x8d09f872d06Fda1572100E316B5B23c7b922B333", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x00000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a" + ], + "data": "0x00000000000000000000000000000000000000000000000000f8b0a10e4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f167feaa8b597165c7778fc", + "blockNumber": 12679108, + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 373, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000002100000000000010000000000000000000000000000000000000000040002000000080000000000000000000000000000000000000000000008000000210000000000000000100000008000000000000000000000000000400000000000200000000000000000000010000000000000000000000000004080000000000000000001000000080000004000000000000000000000000000000000000000000000000000000000000000000001000000000002000800000000000000000000000000000000001000000000000020000000200001000000000000000000000000000000000000400400000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionIndex": 186, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x86ff465d4ec0052fccdcd3529ee15c46ab56295a", + "callType": "call", + "gas": "0x27139", + "input": "0x7ff36ab500000000000000000000000000000000000000003788c2f1948031c5b21aacac000000000000000000000000000000000000000000000000000000000000008000000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a0000000000000000000000000000000000000000000000000000000060d0d9130000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000f046bfa2699aa676455729f7a0b9716164c6a793", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xf8b0a10e470000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1eec0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000003f167feaa8b597165c7778fc" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2550f", + "input": "0x0902f1ac", + "to": "0x8d09f872d06fda1572100e316b5b23c7b922b333", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x000000000000000000000000000000000000000000000000e2c503009cace9320000000000000000000000000000000000000039f2575b5767be189d0b82a1d10000000000000000000000000000000000000000000000000000000060d0d25c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x22259", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xf8b0a10e470000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1c178", + "input": "0xa9059cbb0000000000000000000000008d09f872d06fda1572100e316b5b23c7b922b33300000000000000000000000000000000000000000000000000f8b0a10e470000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x19a96", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f167feaa8b597165c7778fc00000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x8d09f872d06fda1572100e316b5b23c7b922b333", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x11cd9", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x8d09f872d06fda1572100e316b5b23c7b922b333", + "callType": "call", + "gas": "0x160a0", + "input": "0xa9059cbb00000000000000000000000086ff465d4ec0052fccdcd3529ee15c46ab56295a00000000000000000000000000000000000000003f167feaa8b597165c7778fc", + "to": "0xf046bfa2699aa676455729f7a0b9716164c6a793", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x94b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x8d09f872d06fda1572100e316b5b23c7b922b333", + "callType": "staticcall", + "gas": "0xcbe1", + "input": "0x70a082310000000000000000000000008d09f872d06fda1572100e316b5b23c7b922b333", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000e3bdb3a1aaf3e932" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + }, + { + "action": { + "from": "0x8d09f872d06fda1572100e316b5b23c7b922b333", + "callType": "staticcall", + "gas": "0xc83e", + "input": "0x70a082310000000000000000000000008d09f872d06fda1572100e316b5b23c7b922b333", + "to": "0xf046bfa2699aa676455729f7a0b9716164c6a793", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1ec", + "output": "0x0000000000000000000000000000000000000039b340db6cbf088186af0b28d5" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xfcd20dfda84eb17ed6eaf90d71af6d0986132fd0a120c32b86b7fdd5ba261ed9", + "transactionPosition": 186, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x134C61dE61F0c30FCF355E26Fa8840af78cf3347", + "gas": 185632, + "gasPrice": "30500000000", + "hash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "input": "0x791ac94700000000000000000000000000000000000000000000026f82f5fe5adb1f2cd20000000000000000000000000000000000000000000000000c435f1eeb8f598c00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000134c61de61f0c30fcf355e26fa8840af78cf33470000000000000000000000000000000000000000000000000000000060d0d28d0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000da1e53e088023fe4d1dc5a418581748f52cbd1b8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "nonce": 59, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 187, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xacf2158abe58bb37f51996112d4ca628367785419c74bbc90acf3abd2790f086", + "s": "0x1491aba388b95e2e094653fd20f116117ac9fdf1cd69fb006e39d08adb2ad267", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14134359", + "effectiveGasPrice": "30500000000", + "from": "0x134c61de61f0c30fcf355e26fa8840af78cf3347", + "gasUsed": "143869", + "logs": [ + { + "address": "0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000134c61de61f0c30fcf355e26fa8840af78cf3347", + "0x000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e672" + ], + "data": "0x0000000000000000000000000000000000000000000002630a94e9e866196e7c", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 374, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xa7cc68376682ff7e861ac4e616486407f944e672" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "11271723120457823121020" + } + ] + } + }, + { + "address": "0xdA1E53E088023Fe4D1DC5a418581748f52CBd1b8", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000134c61de61f0c30fcf355e26fa8840af78cf3347", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0xfffffffffffffffffffffffffffffffffffffffffffffd907d0a01a524e0d32d", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 375, + "removed": false, + "decoded": { + "signature": "Approval(address,address,uint256)", + "signature_with_arg_names": "Approval(address indexed owner,address indexed spender,uint256 value)", + "name": "Approval", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "115792089237316195423570985008687907853269984665640564027955825721731677475629" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e672", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000c9ff4f165d1134a", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 376, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xA7cC68376682FF7E861AC4e616486407f944E672", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000000000758184824f5f6dd7a0000000000000000000000000000000000000000000164e5fbd0f86611dc47fc", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 377, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xA7cC68376682FF7E861AC4e616486407f944E672", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002634062deb0ac7d8ce80000000000000000000000000000000000000000000000000c9ff4f165d1134a0000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 378, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000c9ff4f165d1134a", + "blockNumber": 12679108, + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 379, + "removed": false, + "decoded": { + "signature": "Withdrawal(address,uint256)", + "signature_with_arg_names": "Withdrawal(address indexed src,uint256 wad)", + "name": "Withdrawal", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "909714967384625994" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000010000040000000000008000800002000000080000000000000000200000000000000000200000000008000000200000000000400000000000000000000000008400000000000200000000000000000000000000040200000010000000000000000000000000004000000000000000000000000000080000004000000000020000000000000000000000000000000001000000000000000000000000000000000002000000000000000000000000000000000000001000000002000021000010200000000000000080000000000000000000000000000000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionIndex": 187, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x134c61de61f0c30fcf355e26fa8840af78cf3347", + "callType": "call", + "gas": "0x27ae8", + "input": "0x791ac94700000000000000000000000000000000000000000000026f82f5fe5adb1f2cd20000000000000000000000000000000000000000000000000c435f1eeb8f598c00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000134c61de61f0c30fcf355e26fa8840af78cf33470000000000000000000000000000000000000000000000000000000060d0d28d0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000da1e53e088023fe4d1dc5a418581748f52cbd1b8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x23071", "output": "0x" }, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x25efe", + "input": "0x23b872dd000000000000000000000000134c61de61f0c30fcf355e26fa8840af78cf3347000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e67200000000000000000000000000000000000000000000026f82f5fe5adb1f2cd2", + "to": "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xac8c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1a4cf", + "input": "0x0902f1ac", + "to": "0xa7cc68376682ff7e861ac4e616486407f944e672", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000000000764b83d165bc7f0c4000000000000000000000000000000000000000000016282bb6e19b5655ebb140000000000000000000000000000000000000000000000000000000060d0cf6f" + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x19925", + "input": "0x70a08231000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e672", + "to": "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6e7", + "output": "0x0000000000000000000000000000000000000000000164e5fbd0f86611dc47fc" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x18c50", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000c9ff4f165d1134a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa7cc68376682ff7e861ac4e616486407f944e672", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x10226", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0xa7cc68376682ff7e861ac4e616486407f944e672", + "callType": "call", + "gas": "0x152b1", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000c9ff4f165d1134a", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0xa7cc68376682ff7e861ac4e616486407f944e672", + "callType": "staticcall", + "gas": "0xdd0e", + "input": "0x70a08231000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e672", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000758184824f5f6dd7a" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0xa7cc68376682ff7e861ac4e616486407f944e672", + "callType": "staticcall", + "gas": "0xd96b", + "input": "0x70a08231000000000000000000000000a7cc68376682ff7e861ac4e616486407f944e672", + "to": "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6e7", + "output": "0x0000000000000000000000000000000000000000000164e5fbd0f86611dc47fc" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x8c65", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000000c9ff4f165d1134a" + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x88af", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000c9ff4f165d1134a", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2407", "output": "0x" }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xc9ff4f165d1134a" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x53", "output": "0x" }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x49e0", + "input": "0x", + "to": "0x134c61de61f0c30fcf355e26fa8840af78cf3347", + "value": "0xc9ff4f165d1134a" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0xd6e9ade3cfe85915580385f459f65eb6b8ca0f79e225e4b0ed62ba82eeed8340", + "transactionPosition": 187, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountIn", + "type": "uint256", + "decoded": "11501758286181452164306" + }, + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "883654538300447116" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xda1e53e088023fe4d1dc5a418581748f52cbd1b8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x134c61de61f0c30fcf355e26fa8840af78cf3347" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624298125" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xdC72a6796AEB8313cF6101016A214D17cD67563C", + "gas": 46302, + "gasPrice": "30000000000", + "hash": "0x83482e44d3955105217890a3d40aee044beb122cdf9fd40c43950e94d77af007", + "input": "0xa22cb4650000000000000000000000007a3e562ca233b3186761e3cfb4e730acee3207c10000000000000000000000000000000000000000000000000000000000000001", + "nonce": 36, + "to": "0x312d09D1160316A0946503391B3D1bcBC583181b", + "transactionIndex": 188, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x3e90e0e8c1004da104ed450d9787f4e8d90508f6af23120814c69bc229ea931b", + "s": "0x5ebef3ffef626381e164f4679fe99cb70fff4e14950a7c37ed3db6c8e6f7b1c3", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14180661", + "effectiveGasPrice": "30000000000", + "from": "0xdc72a6796aeb8313cf6101016a214d17cd67563c", + "gasUsed": "46302", + "logs": [ + { + "address": "0x312d09D1160316A0946503391B3D1bcBC583181b", + "topics": [ + "0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31", + "0x000000000000000000000000dc72a6796aeb8313cf6101016a214d17cd67563c", + "0x0000000000000000000000007a3e562ca233b3186761e3cfb4e730acee3207c1" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 12679108, + "transactionHash": "0x83482e44d3955105217890a3d40aee044beb122cdf9fd40c43950e94d77af007", + "transactionIndex": 188, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 380, + "removed": false, + "decoded": { + "signature": "ApprovalForAll(address,address,bool)", + "signature_with_arg_names": "ApprovalForAll(address indexed owner,address indexed operator,bool approved)", + "name": "ApprovalForAll", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xdc72a6796aeb8313cf6101016a214d17cd67563c" + }, + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x7a3e562ca233b3186761e3cfb4e730acee3207c1" + }, + { + "indexed": false, + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": true + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000010000000000000900000000000000000002000000040000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000004000000000000000200800000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x312d09d1160316a0946503391b3d1bcbc583181b", + "transactionHash": "0x83482e44d3955105217890a3d40aee044beb122cdf9fd40c43950e94d77af007", + "transactionIndex": 188, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xdc72a6796aeb8313cf6101016a214d17cd67563c", + "callType": "call", + "gas": "0x609a", + "input": "0xa22cb4650000000000000000000000007a3e562ca233b3186761e3cfb4e730acee3207c10000000000000000000000000000000000000000000000000000000000000001", + "to": "0x312d09d1160316a0946503391b3d1bcbc583181b", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x609a", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x83482e44d3955105217890a3d40aee044beb122cdf9fd40c43950e94d77af007", + "transactionPosition": 188, + "type": "call" + } + ], + "decoded": { + "signature": "setApprovalForAll(address,bool)", + "signature_with_arg_names": "setApprovalForAll(address operator,bool approved)", + "name": "setApprovalForAll", + "decoded": [ + { + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x7a3e562ca233b3186761e3cfb4e730acee3207c1" + }, + { + "internalType": "bool", + "name": "approved", + "type": "bool", + "decoded": true + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xd6A5Db692e41bb9C721c373c8210a023d8Bde1B3", + "gas": 217084, + "gasPrice": "30000000000", + "hash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "input": "0x7ff36ab50000000000000000000000000000000000000000000eec93583001f93c0d47940000000000000000000000000000000000000000000000000000000000000080000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b30000000000000000000000000000000000000000000000000000017a2fbdd9530000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "nonce": 0, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 189, + "value": "67680000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0xbfffab97052dd4bf249a14b0308915e1ccb56159f014778d1983cb30a27cca58", + "s": "0x376915ae0352bfce11f584126fe22969d41fbc45a4cb3cdcba5db96f4bc12d04", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14299897", + "effectiveGasPrice": "30000000000", + "from": "0xd6a5db692e41bb9c721c373c8210a023d8bde1b3", + "gasUsed": "119236", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x00000000000000000000000000000000000000000000000000f07299f6660000", + "blockNumber": 12679108, + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 381, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000811beed0119b4afce20d2583eb608c6f7af1954f" + ], + "data": "0x00000000000000000000000000000000000000000000000000f07299f6660000", + "blockNumber": 12679108, + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 382, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000811beed0119b4afce20d2583eb608c6f7af1954f", + "0x000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b3" + ], + "data": "0x0000000000000000000000000000000000000000000fefd49a7da5b65164e743", + "blockNumber": 12679108, + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 383, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x811beed0119b4afce20d2583eb608c6f7af1954f" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xd6a5db692e41bb9c721c373c8210a023d8bde1b3" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19266454725604965649540931" + } + ] + } + }, + { + "address": "0x811beEd0119b4AfCE20D2583EB608C6F7AF1954f", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x0000000000000000000000000000000000000005abb36b4914a948065b0676ad0000000000000000000000000000000000000000000000554dd3204d02a194ad", + "blockNumber": 12679108, + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 384, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0x811beEd0119b4AfCE20D2583EB608C6F7AF1954f", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b3" + ], + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f07299f66600000000000000000000000000000000000000000000000fefd49a7da5b65164e7430000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 385, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000000000000000000000000000000002010000080000000000000000100000000000000000000000000008000000200000000000000000000000008000000000000000000000000004000000000000000000001000000000000010000000000000000000000000004000000100000400000001000000080000004000000000000000400000000000000000800000000020000000000000000000000000000000010002000000400000000000000000000000000000001000000000000020000000200000000000000000000000000000000000000000400000000000000000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionIndex": 189, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xd6a5db692e41bb9c721c373c8210a023d8bde1b3", + "callType": "call", + "gas": "0x2f680", + "input": "0x7ff36ab50000000000000000000000000000000000000000000eec93583001f93c0d47940000000000000000000000000000000000000000000000000000000000000080000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b30000000000000000000000000000000000000000000000000000017a2fbdd9530000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0xf07299f6660000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1d0f4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000f07299f66600000000000000000000000000000000000000000000000fefd49a7da5b65164e743" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x2d82e", + "input": "0x0902f1ac", + "to": "0x811beed0119b4afce20d2583eb608c6f7af1954f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000005abc35b1daf26edbcac6b5df00000000000000000000000000000000000000000000000554ce2adb30c3b94ad0000000000000000000000000000000000000000000000000000000060d0d25c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x2a56d", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0xf07299f6660000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x24483", + "input": "0xa9059cbb000000000000000000000000811beed0119b4afce20d2583eb608c6f7af1954f00000000000000000000000000000000000000000000000000f07299f6660000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x21d83", + "input": "0x022c0d9f0000000000000000000000000000000000000000000fefd49a7da5b65164e7430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x811beed0119b4afce20d2583eb608c6f7af1954f", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xfec7", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x811beed0119b4afce20d2583eb608c6f7af1954f", + "callType": "call", + "gas": "0x1e19f", + "input": "0xa9059cbb000000000000000000000000d6a5db692e41bb9c721c373c8210a023d8bde1b30000000000000000000000000000000000000000000fefd49a7da5b65164e743", + "to": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x7613", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x811beed0119b4afce20d2583eb608c6f7af1954f", + "callType": "staticcall", + "gas": "0x16af8", + "input": "0x70a08231000000000000000000000000811beed0119b4afce20d2583eb608c6f7af1954f", + "to": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x27f", + "output": "0x0000000000000000000000000000000000000005abb36b4914a948065b0676ad" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + }, + { + "action": { + "from": "0x811beed0119b4afce20d2583eb608c6f7af1954f", + "callType": "staticcall", + "gas": "0x166ed", + "input": "0x70a08231000000000000000000000000811beed0119b4afce20d2583eb608c6f7af1954f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000554dd3204d02a194ad" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xaa0086ec2a351461df5e65a6bc9d373efd8d13cc75aa80d47a341e4e588c56e1", + "transactionPosition": 189, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015b0a843d5c0800", + "nonce": 10410814, + "to": "0xD86EE6F5B6CB023eC66d9A861434B52C64a1aCcB", + "transactionIndex": 190, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x40ada657277935d60df8f47aa3118a70700fa09ece323cabda7a1081373f2db2", + "s": "0xfbad5c9214ed853c6893c66a06b86abe0621bc461744f64e1d20554548ffc71", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14356482", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "56585", + "logs": [ + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x000000000000000000000000d86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000000000000000000000000000015b0a843d5c0800", + "blockNumber": 12679108, + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionIndex": 190, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 386, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000800000000000000000000000000800040000000000000000000000000000000000000000000000400000000000020000000000000000000800000000000000000000000100000000000000000000000000800000000000000000000000008000000000000000000000000000000000000000000000400000000001000000000000000000000000000000000000000000000000000000000000000000000000000400000000000020000000000000000000000000000000000000000000000000000000000080000000", + "status": true, + "to": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionIndex": 190, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f654", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015b0a843d5c0800", + "to": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x896d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x1dad6", + "input": "0x3c18d3180000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "delegatecall", + "gas": "0x1bd8d", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015b0a843d5c0800", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x574e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "traceAddress": [1], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x1b2eb", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x1a5c4", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x1986f", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x18c56", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "value": "0x15b0a843d5c0800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + }, + { + "action": { + "from": "0xd86ee6f5b6cb023ec66d9a861434b52c64a1accb", + "callType": "call", + "gas": "0x16b72", + "input": "0x28090abb000000000000000000000000d86ee6f5b6cb023ec66d9a861434b52c64a1accb000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015b0a843d5c0800", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0x8b9fdea824f7fb94f894370dc2b5e1333307cb00e2044e98336b4689791ba1ab", + "transactionPosition": 190, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1c5c4fe1b7000", + "nonce": 10410815, + "to": "0x43078fCF70f53F57F23DA776bDdb3D8B6D834EBf", + "transactionIndex": 191, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x666616b8cffe63d50569fe93be665c240923f6b2188ff16aff53eec805bd8cfb", + "s": "0x657dabd7abc7ec2eb9dc5a699149d8f315a5ff9d8ff091f7316dd4e259c73223", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14413055", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "56573", + "logs": [ + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x00000000000000000000000043078fcf70f53f57f23da776bddb3d8b6d834ebf", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x00000000000000000000000000000000000000000000000000d1c5c4fe1b7000", + "blockNumber": 12679108, + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionIndex": 191, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 387, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000200000000800000000000000000000000000000000200000000000000800000000000000000000000000800040000000000000000000000000000000000000000000000000000000000020000000000000000000800000000000000000000000100000000000000000000000000800000000000000000000000008000000000000000000000000000000000000000004000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000020000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionIndex": 191, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f660", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1c5c4fe1b7000", + "to": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x896d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x1dae2", + "input": "0x3c18d3180000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "delegatecall", + "gas": "0x1bd99", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1c5c4fe1b7000", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x574e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "traceAddress": [1], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x1b2f7", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x1a5cf", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x1987b", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x18c62", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "value": "0xd1c5c4fe1b7000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + }, + { + "action": { + "from": "0x43078fcf70f53f57f23da776bddb3d8b6d834ebf", + "callType": "call", + "gas": "0x16b7d", + "input": "0x28090abb00000000000000000000000043078fcf70f53f57f23da776bddb3d8b6d834ebf000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1c5c4fe1b7000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0xa0926937655c08eb80047d4a38f732ed9cc38a2015a97c39352b519f8eea08be", + "transactionPosition": 191, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "input": "0x6ea056a900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e14948ad11de800", + "nonce": 10410816, + "to": "0x75FfC6A4d776024EFfbb5421A0AbbB8FB2A6E5e7", + "transactionIndex": 192, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x57f6b72ac412892ac1fceca3e0efa510ed0ab10a1ad42b634fee21f1c8727008", + "s": "0x3775c324927d2e959a28d0af38e3a6d0c22c6f43a5d5b699ad73f8348b550537", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14469640", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "56585", + "logs": [ + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x00000000000000000000000075ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x0000000000000000000000000000000000000000000000000e14948ad11de800", + "blockNumber": 12679108, + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionIndex": 192, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 388, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000200000000000000800000000000000000000000000800040000000000000000000000000000000000000000000000000000000000020000000000000000000800200000000000000000000100000000000000000000000000800000000000000000000000008000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001000000400000000000020000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionIndex": 192, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f654", + "input": "0x6ea056a900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e14948ad11de800", + "to": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x896d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x1dad6", + "input": "0x3c18d3180000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "delegatecall", + "gas": "0x1bd8d", + "input": "0x6ea056a900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e14948ad11de800", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x574e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "traceAddress": [1], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x1b2eb", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x1a5c4", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x1986f", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x18c56", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "value": "0xe14948ad11de800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + }, + { + "action": { + "from": "0x75ffc6a4d776024effbb5421a0abbb8fb2a6e5e7", + "callType": "call", + "gas": "0x16b72", + "input": "0x28090abb00000000000000000000000075ffc6a4d776024effbb5421a0abbb8fb2a6e5e7000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb9800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e14948ad11de800", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0x18bade9bee95a730a697569d366912bb3d5d6444f1504c109459f44d8a3514d2", + "transactionPosition": 192, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ea1b684725d70000", + "nonce": 10410817, + "to": "0xFC1E1Fd1D25d915c7EAe1ece7112eb141dCA540d", + "transactionIndex": 193, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x75f57a665b633a3c312ce0a90e1486c85fd1bbe080c800488c6cb8569fa0bac9", + "s": "0x36c01a0b73ede0bb709e4284df2d997d962d0fc2be43a3b1cd4dbae365cb9b12", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14526225", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "56585", + "logs": [ + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x000000000000000000000000fc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x000000000000000000000000000000000000000000000007ea1b684725d70000", + "blockNumber": 12679108, + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionIndex": 193, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 389, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000800000000000000000000000000800040000000000000000000000040000000000000000000000000000000000020000000000000000000800000000000000000000000100000000000000000000000000800000000000000000000000008800000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000020000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionIndex": 193, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f654", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ea1b684725d70000", + "to": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x896d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x1dad6", + "input": "0x3c18d3180000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "delegatecall", + "gas": "0x1bd8d", + "input": "0x6ea056a90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ea1b684725d70000", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x574e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "traceAddress": [1], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x1b2eb", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x1a5c4", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x1986f", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x18c56", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "value": "0x7ea1b684725d70000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + }, + { + "action": { + "from": "0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d", + "callType": "call", + "gas": "0x16b72", + "input": "0x28090abb000000000000000000000000fc1e1fd1d25d915c7eae1ece7112eb141dca540d000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb980000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ea1b684725d70000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480", + "transactionPosition": 193, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "input": "0x6ea056a9000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "nonce": 10410818, + "to": "0x16C48dE49c24D54d47a689292161E7A8b1994234", + "transactionIndex": 194, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2708ee6eae6f43fc41db49f3c056e6a55fc79c71567299e865b829e97ae2b652", + "s": "0x77feb808aa5959f0691a31a0b21798f7c298e74e4fc6a514634247d8ae6c7eed", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14579036", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "52811", + "logs": [ + { + "address": "0xFF44b5719f0B77A9951636fc5e69d3a1fc9E7d73", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000016c48de49c24d54d47a689292161e7a8b1994234", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + ], + "data": "0x000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "blockNumber": 12679108, + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionIndex": 194, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 390, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x16c48de49c24d54d47a689292161e7a8b1994234" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "73000000000000000000000" + } + ] + } + }, + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x00000000000000000000000016c48de49c24d54d47a689292161e7a8b1994234", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73" + ], + "data": "0x000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "blockNumber": 12679108, + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionIndex": 194, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 391, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000800000000000000000000000000800040000000008000000000200000100000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000800000000002001000000000008000004000000000000000000000000000000000000000400000000000000000000000000000000010000000004002000000000000000000000000000000000000000400000000000000000000000000100000000000000000000000000000000000010000000000000000", + "status": true, + "to": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionIndex": 194, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f558", + "input": "0x6ea056a9000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "to": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xb44b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x1d9de", + "input": "0x3c18d318000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "delegatecall", + "gas": "0x1bc95", + "input": "0x6ea056a9000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x822c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 7, + "traceAddress": [1], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x1b1f7", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x1a4d0", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x1977b", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x18b62", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x17c32", + "input": "0x70a0823100000000000000000000000016c48de49c24d54d47a689292161e7a8b1994234", + "to": "0xff44b5719f0b77a9951636fc5e69d3a1fc9e7d73", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa45", + "output": "0x000000000000000000000000000000000000000000000f7556828d6c7ba00000" + }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x16f54", + "input": "0xa9059cbb000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "to": "0xff44b5719f0b77a9951636fc5e69d3a1fc9e7d73", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x2d3b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + }, + { + "action": { + "from": "0x16c48de49c24d54d47a689292161e7a8b1994234", + "callType": "call", + "gas": "0x1404b", + "input": "0x28090abb00000000000000000000000016c48de49c24d54d47a689292161e7a8b1994234000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98000000000000000000000000ff44b5719f0b77a9951636fc5e69d3a1fc9e7d73000000000000000000000000000000000000000000000f7556828d6c7ba00000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 6], + "transactionHash": "0x6eb74ca2c7df3333611ac47604e91263206b27894d532eedee43d539d22e3751", + "transactionPosition": 194, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98", + "gas": 150000, + "gasPrice": "30000000000", + "hash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6eeacf06c9800", + "nonce": 10410819, + "to": "0xC0F874d652Cd46AD233971FC61008309778730Dd", + "transactionIndex": 195, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x639bc72001369f431c2a6fb52507ea739437d632c508d51b7d6eb80785e586e7", + "s": "0x388e1e1ca89193e5158f32b7f7ddecf80b48c9f854377414060574975ae34535", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14635621", + "effectiveGasPrice": "30000000000", + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "gasUsed": "56585", + "logs": [ + { + "address": "0xa3C1E324CA1ce40db73eD6026c4A177F099B5770", + "topics": [ + "0xa64da754fccf55aa65a1f0128a648633fade3884b236e879ee9f64c78df5d5d7", + "0x000000000000000000000000c0f874d652cd46ad233971fc61008309778730dd", + "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "data": "0x00000000000000000000000000000000000000000000000002c6eeacf06c9800", + "blockNumber": 12679108, + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionIndex": 195, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 392, + "removed": false, + "decoded": { + "signature": "LogSweep(address,address,address,uint256)", + "signature_with_arg_names": "LogSweep(address indexed from,address indexed to,address indexed token,uint256 amount)", + "name": "LogSweep", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0xc0f874d652cd46ad233971fc61008309778730dd" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + { + "indexed": true, + "name": "token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "name": "amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000800000000000000000000000000800040000000000000000000000000000000000000000000000000000080000020000000000000000000800000000000000000000000100000002000000000000000000800000000000000000000000008000000000000000000000000000000000000000000000400000000000000000000000000000000800000000000000000000000000000000000000000000000000000400000000000020000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xc0f874d652cd46ad233971fc61008309778730dd", + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionIndex": 195, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "callType": "call", + "gas": "0x1f654", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6eeacf06c9800", + "to": "0xc0f874d652cd46ad233971fc61008309778730dd", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x896d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x1dad6", + "input": "0x3c18d3180000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x12f3", + "output": "0x000000000000000000000000b2233fcec42c588ee71a594d9a25aa695345426c" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "delegatecall", + "gas": "0x1bd8d", + "input": "0x6ea056a9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6eeacf06c9800", + "to": "0xb2233fcec42c588ee71a594d9a25aa695345426c", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x574e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 6, + "traceAddress": [1], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x1b2eb", + "input": "0x97dc97cb", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa2a", + "output": "0x0000000000000000000000006cace0528324a8afc2b157ceba3cdd2a27c4e21f" + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x1a5c4", + "input": "0x8da5cb5b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x1986f", + "input": "0xb9b8af0b", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0xa00", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x18c56", + "input": "0xb269681d", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x29c", + "output": "0x000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98" + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x8fc", + "input": "0x", + "to": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", + "value": "0x2c6eeacf06c9800" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + }, + { + "action": { + "from": "0xc0f874d652cd46ad233971fc61008309778730dd", + "callType": "call", + "gas": "0x16b72", + "input": "0x28090abb000000000000000000000000c0f874d652cd46ad233971fc61008309778730dd000000000000000000000000fbb1b73c4f0bda4f67dca266ce6ef42f520fbb98000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6eeacf06c9800", + "to": "0xa3c1e324ca1ce40db73ed6026c4a177f099b5770", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xa85", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1, 5], + "transactionHash": "0xaa0d1f4b355588ee626a39afe5eec0752f14039613055f94741dd0117537fbcf", + "transactionPosition": 195, + "type": "call" + } + ], + "decoded": { + "signature": "sweep(address,uint256)", + "signature_with_arg_names": "sweep(address _token,uint256 _amount)", + "name": "sweep", + "decoded": [ + { + "name": "_token", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_amount", + "type": "uint256", + "decoded": "200109660000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xC52B39AB373c6C5dCeB9b87658808F956dfD25fD", + "gas": 152390, + "gasPrice": "30000000000", + "hash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "input": "0x7ff36ab50000000000000000000000000000000000000000000cb6a0348310469c1a946f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd0000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000008424c5ac326834b404742de0067bcb654e86be30", + "nonce": 1087, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "transactionIndex": 196, + "value": "150000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0x2926e0e483e10cc44c53b1f58d12e5b351c44778938e40993bf696ab1a1a13ea", + "s": "0x1a435bd4e7067f6743899c3152ee89412a21e91abe5d4461965348b8358002f7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14737402", + "effectiveGasPrice": "30000000000", + "from": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd", + "gasUsed": "101781", + "logs": [ + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "data": "0x0000000000000000000000000000000000000000000000000214e8348c4f0000", + "blockNumber": 12679108, + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 393, + "removed": false, + "decoded": { + "signature": "Deposit(address,uint256)", + "signature_with_arg_names": "Deposit(address indexed dst,uint256 wad)", + "name": "Deposit", + "decoded": [ + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000c3d1eb891f24de439937c73748fc455588828489" + ], + "data": "0x0000000000000000000000000000000000000000000000000214e8348c4f0000", + "blockNumber": 12679108, + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 394, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed src,address indexed dst,uint256 wad)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "src", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": true, + "name": "dst", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": false, + "name": "wad", + "type": "uint256", + "decoded": "150000000000000000" + } + ] + } + }, + { + "address": "0x8424C5aC326834B404742de0067bCb654E86BE30", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c3d1eb891f24de439937c73748fc455588828489", + "0x000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd" + ], + "data": "0x0000000000000000000000000000000000000000000cc6e6204b661e00b96ec7", + "blockNumber": 12679108, + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 395, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc3d1eb891f24de439937c73748fc455588828489" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "15446383477186604559855303" + } + ] + } + }, + { + "address": "0xc3d1eb891f24DE439937C73748Fc455588828489", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "data": "0x00000000000000000000000000000000000000000c9fb9d05ff3aaf9b38c2f420000000000000000000000000000000000000000000000020f06e427cb8deda4", + "blockNumber": 12679108, + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 396, + "removed": false, + "decoded": { + "signature": "Sync(uint112,uint112)", + "signature_with_arg_names": "Sync(uint112 reserve0,uint112 reserve1)", + "name": "Sync", + "decoded": [ + { + "indexed": false, + "internalType": "uint112", + "name": "reserve0", + "type": "uint112", + "decoded": "3906916804811022921806655298" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "37976291767418219940" + } + ] + } + }, + { + "address": "0xc3d1eb891f24DE439937C73748Fc455588828489", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd" + ], + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000cc6e6204b661e00b96ec70000000000000000000000000000000000000000000000000000000000000000", + "blockNumber": 12679108, + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 397, + "removed": false, + "decoded": { + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "signature_with_arg_names": "Swap(address indexed sender,uint256 amount0In,uint256 amount1In,uint256 amount0Out,uint256 amount1Out,address indexed to)", + "name": "Swap", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "150000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "15446383477186604559855303" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + } + ] + } + } + ], + "logsBloom": "0x00200000000000000000000080000000000000000000000000010000000000000000000000000000000000000000000002000000080000000000000000000000000040000000000000000008000000200000000000000000000040008000000000000010000000000000000000000000000000000000000000000010000000000000000000000000004000000000010000000001000000080000004000080000000000000000004000000000000000000000000000000000000000000004000000000102000000000000000000000000000000001000001000000100000020000000200200000000000000000000000000000000000000400000000000040000", + "status": true, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionIndex": 196, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd", + "callType": "call", + "gas": "0x1f9e2", + "input": "0x7ff36ab50000000000000000000000000000000000000000000cb6a0348310469c1a946f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd0000000000000000000000000000000000000000000000000000000060d0d6b10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000008424c5ac326834b404742de0067bcb654e86be30", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x214e8348c4f0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x18cdd", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000cc6e6204b661e00b96ec7" + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "staticcall", + "gas": "0x1df82", + "input": "0x0902f1ac", + "to": "0xc3d1eb891f24de439937c73748fc455588828489", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x9c8", + "output": "0x00000000000000000000000000000000000000000cac80b6803f1117b4459e090000000000000000000000000000000000000000000000020cf1fbf33f3eeda40000000000000000000000000000000000000000000000000000000060d0886d" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x1acc2", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x214e8348c4f0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x5da6", "output": "0x" }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x14bd7", + "input": "0xa9059cbb000000000000000000000000c3d1eb891f24de439937c73748fc4555888284890000000000000000000000000000000000000000000000000214e8348c4f0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1f7e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "callType": "call", + "gas": "0x124d8", + "input": "0x022c0d9f0000000000000000000000000000000000000000000cc6e6204b661e00b96ec70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc3d1eb891f24de439937c73748fc455588828489", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xbab0", "output": "0x" }, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0xc3d1eb891f24de439937c73748fc455588828489", + "callType": "call", + "gas": "0xecd7", + "input": "0xa9059cbb000000000000000000000000c52b39ab373c6c5dceb9b87658808f956dfd25fd0000000000000000000000000000000000000000000cc6e6204b661e00b96ec7", + "to": "0x8424c5ac326834b404742de0067bcb654e86be30", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x3291", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0xc3d1eb891f24de439937c73748fc455588828489", + "callType": "staticcall", + "gas": "0xb8a3", + "input": "0x70a08231000000000000000000000000c3d1eb891f24de439937c73748fc455588828489", + "to": "0x8424c5ac326834b404742de0067bcb654e86be30", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x1ea", + "output": "0x00000000000000000000000000000000000000000c9fb9d05ff3aaf9b38c2f42" + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + }, + { + "action": { + "from": "0xc3d1eb891f24de439937c73748fc455588828489", + "callType": "staticcall", + "gas": "0xb52b", + "input": "0x70a08231000000000000000000000000c3d1eb891f24de439937c73748fc455588828489", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000020f06e427cb8deda4" + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x0254f2835f55d41b00364eb6b9e16d7cbfbdce1ffabd730994db1d0dc0fd9734", + "transactionPosition": 196, + "type": "call" + } + ], + "decoded": { + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "signature_with_arg_names": "swapExactETHForTokens(uint256 amountOutMin,address[] path,address to,uint256 deadline)", + "name": "swapExactETHForTokens", + "decoded": [ + { + "internalType": "uint256", + "name": "amountOutMin", + "type": "uint256", + "decoded": "15369535798195626427716719" + }, + { + "internalType": "address[]", + "name": "path", + "type": "address[]", + "decoded": [ + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x8424c5ac326834b404742de0067bcb654e86be30" + ] + }, + { + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc52b39ab373c6c5dceb9b87658808f956dfd25fd" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256", + "decoded": "1624299185" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xe9A75F81A34A5d1c39fB1eBb8DfC7904Cc104B8E", + "gas": 113389, + "gasPrice": "30000000000", + "hash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "input": "0x4faa8a26000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "nonce": 534, + "to": "0xA0c68C638235ee32657e8f720a23ceC1bFc77C77", + "transactionIndex": 197, + "value": "1000000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xed179bab89e8e5320c761c99b0837bb1b42d3a92b7c06de1c10fd26ac4651468", + "s": "0x105fad9c345b64fabb988acb3a0e5d8c77d1e1340d061c650dc666c33eb18ec1", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14814659", + "effectiveGasPrice": "30000000000", + "from": "0xe9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "gasUsed": "77257", + "logs": [ + { + "address": "0x8484Ef722627bf18ca5Ae6BcF031c23E6e922B30", + "topics": [ + "0x3e799b2d61372379e767ef8f04d65089179b7a6f63f9be3065806456c7309f1b", + "0x000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "0x000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e" + ], + "data": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000", + "blockNumber": 12679108, + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionIndex": 197, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 398, + "removed": false, + "decoded": { + "signature": "LockedEther(address,address,uint256)", + "signature_with_arg_names": "LockedEther(address indexed depositor,address indexed depositReceiver,uint256 amount)", + "name": "LockedEther", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "depositor", + "type": "address", + "decoded": "0xe9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e" + }, + { + "indexed": true, + "internalType": "address", + "name": "depositReceiver", + "type": "address", + "decoded": "0xe9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256", + "decoded": "1000000000000000000" + } + ] + } + }, + { + "address": "0x28e4F3a7f651294B9564800b2D01f35189A5bFbE", + "topics": [ + "0x103fed9db65eac19c4d870f49ab7520fe03b99f1838e5996caf47e9e43308392", + "0x0000000000000000000000000000000000000000000000000000000000071645", + "0x000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa" + ], + "data": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000010087a7811f4bfedea3d341ad165680ae306b01aaeacc205d227629cf157dd9f821000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000de0b6b3a7640000", + "blockNumber": 12679108, + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionIndex": 197, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 399, + "removed": false, + "decoded": null + } + ], + "logsBloom": "0x00000000000000000000004000000000000000000000000000000000001000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000010000000000000000000000040000000008000000010000000100000000000000000000000000000000000000000000000000080000004000000000000000000000000000000000000000240000000000000000000004000000000200000010000000000400000000000000000000000000000000000000000000000000000000000000000000000000800000100000000200000000000000000000000000000008000000000", + "status": true, + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionIndex": 197, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xe9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "callType": "call", + "gas": "0x16735", + "input": "0x4faa8a26000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "value": "0xde0b6b3a7640000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xda11", "output": "0x" }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "delegatecall", + "gas": "0x1359c", + "input": "0x4faa8a26000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e", + "to": "0x296ac8fb39279bbcff6edc9fddf1d2f4aea1631b", + "value": "0xde0b6b3a7640000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0xc52a", "output": "0x" }, + "subtraces": 3, + "traceAddress": [0], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "call", + "gas": "0x108a2", + "input": "0xe375b64e000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2867", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "callType": "delegatecall", + "gas": "0xd6eb", + "input": "0xe375b64e000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x499a865ac595e6167482d2bd5a224876bab85ab4", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x1362", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "call", + "gas": "0xbe5b", + "input": "0x16f19831000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010087a7811f4bfedea3d341ad165680ae306b01aaeacc205d227629cf157dd9f821000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x28e4f3a7f651294b9564800b2d01f35189a5bfbe", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x2f5e", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "callType": "call", + "gas": "0x743e", + "input": "0x", + "to": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "value": "0xde0b6b3a7640000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x51d", "output": "0x" }, + "subtraces": 1, + "traceAddress": [0, 2], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + }, + { + "action": { + "from": "0x8484ef722627bf18ca5ae6bcf031c23e6e922b30", + "callType": "delegatecall", + "gas": "0x4b0d", + "input": "0x", + "to": "0x499a865ac595e6167482d2bd5a224876bab85ab4", + "value": "0xde0b6b3a7640000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x262", "output": "0x" }, + "subtraces": 0, + "traceAddress": [0, 2, 0], + "transactionHash": "0x3bdceba7ab8465daea1fb72db20e0c8ec1af287a044ae22d66c8d89ff7355642", + "transactionPosition": 197, + "type": "call" + } + ], + "decoded": { + "signature": "depositEtherFor(address)", + "signature_with_arg_names": "depositEtherFor(address arg1)", + "name": "depositEtherFor", + "decoded": [ + { + "name": "arg1", + "type": "address", + "decoded": "0xe9a75f81a34a5d1c39fb1ebb8dfc7904cc104b8e" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x5fC7467F7b58Fba859231c0dF65c78d17271931F", + "gas": 21000, + "gasPrice": "30000000000", + "hash": "0xbd9430947ba5fbb3d07220bf780ba5b7ffbef121f282131aa7e390af4661cfe9", + "input": "0x", + "nonce": 4121, + "to": "0xe3B01E24deAfb5B5c6dfb1Bb7669deea393357de", + "transactionIndex": 198, + "value": "2200000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x51bf20bbe30d250ee2493d3f42f5bb5bf441f8920346bf7e7e4ae5b20d2afde9", + "s": "0x51b7290dc9201163aa7eff7bf7bddb615c918f4764f68a1f7e8d15e18b65f293", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14835659", + "effectiveGasPrice": "30000000000", + "from": "0x5fc7467f7b58fba859231c0df65c78d17271931f", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xe3b01e24deafb5b5c6dfb1bb7669deea393357de", + "transactionHash": "0xbd9430947ba5fbb3d07220bf780ba5b7ffbef121f282131aa7e390af4661cfe9", + "transactionIndex": 198, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x5fc7467f7b58fba859231c0df65c78d17271931f", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0xe3b01e24deafb5b5c6dfb1bb7669deea393357de", + "value": "0x1e87f85809dc0000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xbd9430947ba5fbb3d07220bf780ba5b7ffbef121f282131aa7e390af4661cfe9", + "transactionPosition": 198, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xB7300A5A1f409468c74a55374da4A35d28ECC42C", + "gas": 23000, + "gasPrice": "30000000000", + "hash": "0xd63c95562a4f056f790b0b033144f8827204f0fa8cad59400c98425e3e466ddb", + "input": "0x", + "nonce": 282, + "to": "0xaE9382a45bd2860EA1B4f739f089DB0C9fDa9544", + "transactionIndex": 199, + "value": "7288553846794598", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x81d83276531e51e15febbb6037598de64ab7ddb7bb94a4be04c33551a6b293d6", + "s": "0x24a83e40266efe4d7428e67dd15583ae5928a395e92124636494a2062a9d95a7", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14856659", + "effectiveGasPrice": "30000000000", + "from": "0xb7300a5a1f409468c74a55374da4a35d28ecc42c", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0xae9382a45bd2860ea1b4f739f089db0c9fda9544", + "transactionHash": "0xd63c95562a4f056f790b0b033144f8827204f0fa8cad59400c98425e3e466ddb", + "transactionIndex": 199, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xb7300a5a1f409468c74a55374da4a35d28ecc42c", + "callType": "call", + "gas": "0x7d0", + "input": "0x", + "to": "0xae9382a45bd2860ea1b4f739f089db0c9fda9544", + "value": "0x19e4e6aef6e966" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd63c95562a4f056f790b0b033144f8827204f0fa8cad59400c98425e3e466ddb", + "transactionPosition": 199, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0xc5a8859c44aC8AA2169aFaCF45B87C08593beC10", + "gas": 100000, + "gasPrice": "30000000000", + "hash": "0x3ca5a51460ba50568ce36133d4cdd1af268092b138d2e12118e3a254c4a4cdd5", + "input": "0xa9059cbb00000000000000000000000069c23a460b7c24251591a7962648dc978d2a4bd5000000000000000000000000000000000000000000000054f712baee04fd0000", + "nonce": 79194, + "to": "0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "transactionIndex": 200, + "value": "0", + "type": 0, + "v": "0x1c", + "r": "0xb229c0dd56db3f2ad54b3c8814dca342849c6ced62470d8dce469cca752d6266", + "s": "0x797a3f2492821a6d6df5652901c2c782db4802c5ecc566e8d063edb101b6948a", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14905904", + "effectiveGasPrice": "30000000000", + "from": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10", + "gasUsed": "49245", + "logs": [ + { + "address": "0x8E870D67F660D95d5be530380D0eC0bd388289E1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c5a8859c44ac8aa2169afacf45b87c08593bec10", + "0x00000000000000000000000069c23a460b7c24251591a7962648dc978d2a4bd5" + ], + "data": "0x000000000000000000000000000000000000000000000054f712baee04fd0000", + "blockNumber": 12679108, + "transactionHash": "0x3ca5a51460ba50568ce36133d4cdd1af268092b138d2e12118e3a254c4a4cdd5", + "transactionIndex": 200, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 400, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + } + ], + "logsBloom": "0x00000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010000000000000000080000000000000000000000000008000000000000000000002000000000000000200000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000080040000000200000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", + "transactionHash": "0x3ca5a51460ba50568ce36133d4cdd1af268092b138d2e12118e3a254c4a4cdd5", + "transactionIndex": 200, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0xc5a8859c44ac8aa2169afacf45b87c08593bec10", + "callType": "call", + "gas": "0x13214", + "input": "0xa9059cbb00000000000000000000000069c23a460b7c24251591a7962648dc978d2a4bd5000000000000000000000000000000000000000000000054f712baee04fd0000", + "to": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x6bd1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x3ca5a51460ba50568ce36133d4cdd1af268092b138d2e12118e3a254c4a4cdd5", + "transactionPosition": 200, + "type": "call" + }, + { + "action": { + "from": "0x8e870d67f660d95d5be530380d0ec0bd388289e1", + "callType": "delegatecall", + "gas": "0x11174", + "input": "0xa9059cbb00000000000000000000000069c23a460b7c24251591a7962648dc978d2a4bd5000000000000000000000000000000000000000000000054f712baee04fd0000", + "to": "0x86eee0422322710866af89e9cae3f7383d55310a", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x4f5f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x3ca5a51460ba50568ce36133d4cdd1af268092b138d2e12118e3a254c4a4cdd5", + "transactionPosition": 200, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address arg1,uint256 arg2)", + "name": "transfer", + "decoded": [ + { + "internalType": "address", + "name": "arg1", + "type": "address", + "decoded": "0x69c23a460b7c24251591a7962648dc978d2a4bd5" + }, + { + "internalType": "uint256", + "name": "arg2", + "type": "uint256", + "decoded": "1567330000000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x59711339C780AdD0Ce0bD1aa4f73463d56da04eB", + "gas": 52299, + "gasPrice": "29680333333", + "hash": "0xdcdce9fdc4b505f3f6c9819ac889583fe24b876187e21b419fe8f72018185118", + "input": "0xa9059cbb0000000000000000000000008165b31639bae7f24ea749bbbd6431317601812600000000000000000000000000000000000000000000000107fe34dd08d2c000", + "nonce": 0, + "to": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "transactionIndex": 201, + "value": "0", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x35e3830dbe4cbb8ed68b1d0ce3e88c51d232c7473c89627034a8657e455fe61b", + "s": "0x90e2077e9ff37b6da8e3450f5574d40949e601c2481773668be0031f13d289", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14943203", + "effectiveGasPrice": "29680333333", + "from": "0x59711339c780add0ce0bd1aa4f73463d56da04eb", + "gasUsed": "37299", + "logs": [ + { + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000059711339c780add0ce0bd1aa4f73463d56da04eb", + "0x0000000000000000000000008165b31639bae7f24ea749bbbd64313176018126" + ], + "data": "0x00000000000000000000000000000000000000000000000107fe34dd08d2c000", + "blockNumber": 12679108, + "transactionHash": "0xdcdce9fdc4b505f3f6c9819ac889583fe24b876187e21b419fe8f72018185118", + "transactionIndex": 201, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "logIndex": 401, + "removed": false, + "decoded": { + "signature": "Transfer(address,address,uint256)", + "signature_with_arg_names": "Transfer(address indexed from,address indexed to,uint256 value)", + "name": "Transfer", + "decoded": [ + { + "indexed": true, + "name": "from", + "type": "address", + "decoded": "0x59711339c780add0ce0bd1aa4f73463d56da04eb" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + } + ], + "logsBloom": "0x00008000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000010800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000002040200000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "transactionHash": "0xdcdce9fdc4b505f3f6c9819ac889583fe24b876187e21b419fe8f72018185118", + "transactionIndex": 201, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x59711339c780add0ce0bd1aa4f73463d56da04eb", + "callType": "call", + "gas": "0x77b3", + "input": "0xa9059cbb0000000000000000000000008165b31639bae7f24ea749bbbd6431317601812600000000000000000000000000000000000000000000000107fe34dd08d2c000", + "to": "0x19062190b1925b5b6689d7073fdfc8c2976ef8cb", + "value": "0x0" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { + "gasUsed": "0x77b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xdcdce9fdc4b505f3f6c9819ac889583fe24b876187e21b419fe8f72018185118", + "transactionPosition": 201, + "type": "call" + } + ], + "decoded": { + "signature": "transfer(address,uint256)", + "signature_with_arg_names": "transfer(address recipient,uint256 amount)", + "name": "transfer", + "decoded": [ + { + "name": "recipient", + "type": "address", + "decoded": "0x8165b31639bae7f24ea749bbbd64313176018126" + }, + { + "name": "amount", + "type": "uint256", + "decoded": "19022700000000000000" + } + ] + } + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x37a5072D7147A066BaF16Cfc619603b221810B56", + "gas": 21000, + "gasPrice": "29000000000", + "hash": "0x778c995e5a46d4a7bbb4b6e2fa3d5fb75785d031ed9a5837f41a797f7eedc2b9", + "input": "0x", + "nonce": 50, + "to": "0x2e14E8BDFeC3C2bb0AcB7119f71d02B39b3a1652", + "transactionIndex": 202, + "value": "5000000000000000", + "type": 0, + "chainId": "0x1", + "v": "0x25", + "r": "0x3b69ead2b4a3092f3bf866fa6923f1526fa4d1abff9dfc1480fc5ac3204cf816", + "s": "0x791ba5c0900e1172d6c74298a4e2af8c1ced7e7e37f25864f0b43f7722d44cf8", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14964203", + "effectiveGasPrice": "29000000000", + "from": "0x37a5072d7147a066baf16cfc619603b221810b56", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x2e14e8bdfec3c2bb0acb7119f71d02b39b3a1652", + "transactionHash": "0x778c995e5a46d4a7bbb4b6e2fa3d5fb75785d031ed9a5837f41a797f7eedc2b9", + "transactionIndex": 202, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x37a5072d7147a066baf16cfc619603b221810b56", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x2e14e8bdfec3c2bb0acb7119f71d02b39b3a1652", + "value": "0x11c37937e08000" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x778c995e5a46d4a7bbb4b6e2fa3d5fb75785d031ed9a5837f41a797f7eedc2b9", + "transactionPosition": 202, + "type": "call" + } + ] + }, + { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "from": "0x7Bd2DF6FdF848b96e747ab233A69D5a1C17E99EF", + "gas": 21000, + "gasPrice": "29000000000", + "hash": "0xb8639e45e13815dd691239dfc1e98fc75d77a5a89791ab4295f6b6864dc50fbe", + "input": "0x", + "nonce": 1, + "to": "0x25015E8748A4a6A2e909Dd31A5bc450d76Cf9906", + "transactionIndex": 203, + "value": "18977010000000000", + "type": 0, + "chainId": "0x1", + "v": "0x26", + "r": "0xf38f4738c70dc0b0257de804b0bf96874ace5ecac2d41948592baddacf1d8426", + "s": "0x35f59013d567b18ffc88ef907fd298b75bcb2efb0d4fcbac2325af87a89798bf", + "receipt": { + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "contractAddress": null, + "cumulativeGasUsed": "14985203", + "effectiveGasPrice": "29000000000", + "from": "0x7bd2df6fdf848b96e747ab233a69d5a1c17e99ef", + "gasUsed": "21000", + "logs": [], + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "status": true, + "to": "0x25015e8748a4a6a2e909dd31a5bc450d76cf9906", + "transactionHash": "0xb8639e45e13815dd691239dfc1e98fc75d77a5a89791ab4295f6b6864dc50fbe", + "transactionIndex": 203, + "type": "0x0" + }, + "traces": [ + { + "action": { + "from": "0x7bd2df6fdf848b96e747ab233a69d5a1c17e99ef", + "callType": "call", + "gas": "0x0", + "input": "0x", + "to": "0x25015e8748a4a6a2e909dd31a5bc450d76cf9906", + "value": "0x436b7d73f2f400" + }, + "blockHash": "0x10ed947e22a17964b60fc1cc7256c58b51e3fdc25ba7976bf9db579d686fe47d", + "blockNumber": 12679108, + "result": { "gasUsed": "0x0", "output": "0x" }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xb8639e45e13815dd691239dfc1e98fc75d77a5a89791ab4295f6b6864dc50fbe", + "transactionPosition": 203, + "type": "call" + } + ] + } + ], + "transactionsRoot": "0x4b4d92521893fa155ca4f72df697c5d31da45a7d2f36fe3485f28b0d91f71614", + "uncles": [], + "chainId": 1 +} diff --git a/src/transformers/_common/parties.spec.ts b/src/transformers/_common/parties.spec.ts index 56fbf21..c588dbd 100644 --- a/src/transformers/_common/parties.spec.ts +++ b/src/transformers/_common/parties.spec.ts @@ -3,91 +3,34 @@ import { loadBlockFixture } from '../../helpers/utils'; describe('transactionParties', () => { it('should return transaction parties', () => { - const block = loadBlockFixture('ethereum', '17686037_decode'); + const block = loadBlockFixture('ethereum', '12679108_decoded'); const result = transform(block); - const txResult = result.transactions.find( + const txResult1 = result.transactions.find( (tx) => tx.hash === - '0x900b1e7aa62740763448008840ac878886a34907395ae140a4f52e09bf3446cc', - ); - expect(txResult).toBeDefined(); - if (txResult) { - expect(txResult.parties).toStrictEqual([ - '0x16cac4f493db73c12ff9febbf794be4a31dc865d', - '0xc18360217d8f7ab5e7c516566761ea12ce7f9d72', - '0x08fb1aa2dbb2ef9cd930485c0ec84eddbea1851f', - '0x2b888954421b424c5d3d9ce9bb67c9bd47537d12', - ]); - } - - //The addresses sending/receiving in the assetTransfers should be in parties as well - const block1 = loadBlockFixture('ethereum', '6088920_decode'); - const result1 = transform(block1); - - const txResult1 = result1.transactions.find( - (tx) => - tx.hash === - '0x3ede752dffb235fe8e45e5c5c3cd2d025acd1a5255b3a8fd63ccf7ed7ed55115', + '0xf677a8d48d456fc124b3097ccb7e35171b5f8c048f4682ae1566da828bca4480', ); expect(txResult1).toBeDefined(); if (txResult1) { - expect(txResult1.parties.length).toBe(302); - } - - //NFT should be in parties - const block2 = loadBlockFixture('ethereum', '18230275_decode'); - const result2 = transform(block2); - - const txResult2 = result2.transactions.find( - (tx) => - tx.hash === - '0xece119678a421a7e4c4af38848ef84634028fce2b17720a565136f13e7881db6', - ); - expect(txResult2).toBeDefined(); - if (txResult2) { - expect(txResult2.parties).toStrictEqual([ - '0xd7029bdea1c17493893aafe29aad69ef892b8ff2', - '0xff9c1b15b16263c61d017ee9f65c50e4ae0113d7', + expect(txResult1.parties).toStrictEqual([ + '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', + '0xfc1e1fd1d25d915c7eae1ece7112eb141dca540d', + '0xa3c1e324ca1ce40db73ed6026c4a177f099b5770', + '0xb2233fcec42c588ee71a594d9a25aa695345426c', + '0xc0f874d652cd46ad233971fc61008309778730dd', '0x0000000000000000000000000000000000000000', - '0x8fc5d6afe572fefc4ec153587b63ce543f6fa2ea', - '0xff9c1b15b16263c61d017ee9f65c50e4ae0113d7-6605', ]); } - // Zora Sepolia - const block3 = loadBlockFixture('zora_sepolia', '479884_decode'); - const result3 = transform(block3); - const txResult3 = result3.transactions.find( - (tx) => - tx.hash === - '0xd9deb98a359b71243f74939985be840f54c658e23d4d81bc44003088ec28df29', - ); - expect(txResult3).toBeDefined(); - if (txResult3) { - expect(txResult3.parties).toStrictEqual([ - '0xfe44ae787a632c45acea658492ddbebe39f002ac', - '0xf21d42203af9af1c86e1e8ac501b41f5bc004a0a', - '0xf0b44c112630b2423c03080740d1a612474fc12a', - '0x9da2873b5ffe73d3ba353111920534f30076cbb4', - '0x0000000000000000000000000000000000000001', - '0x101707a0ba5f2eb87336994c2e8b9eb39b0cf20c', - '0x6e07bbf7fba8e43988aec5f2df6c40d1afb4400e', - ]); - } - - // Lyra Sepolia - const block4 = loadBlockFixture('lyra_sepolia', '3967804_decode'); - const result4 = transform(block4); - - const txResult4 = result4.transactions.find( + const txResult2 = result.transactions.find( (tx) => tx.hash === '0xfa58c800fbdc2f34312a6bed8fc8e5052ce59f26a2258a0930529efbcda21ceb', ); - expect(txResult4).toBeDefined(); - if (txResult4) { - expect(txResult4.parties).toStrictEqual([ + expect(txResult2).toBeDefined(); + if (txResult2) { + expect(txResult2.parties).toStrictEqual([ '0xfe44ae787a632c45acea658492ddbebe39f002ac', '0xf21d42203af9af1c86e1e8ac501b41f5bc004a0a', '0xf0b44c112630b2423c03080740d1a612474fc12a', diff --git a/src/transformers/_common/parties.ts b/src/transformers/_common/parties.ts index 676092b..08817bf 100644 --- a/src/transformers/_common/parties.ts +++ b/src/transformers/_common/parties.ts @@ -44,7 +44,7 @@ export function transform(block: RawBlock): RawBlock { // grab event inputs params from decoded trace const partiesFromTrace = trace.decoded?.decoded .map((param) => - param.type === 'address' && trace.decode + param.type === 'address' && trace.decoded ? param.decoded.toLowerCase() : '', ) @@ -61,7 +61,7 @@ export function transform(block: RawBlock): RawBlock { // grab event inputs params from decoded log const partiesFromLog = log.decoded?.decoded .map((param) => - param.type === 'address' && log.decode + param.type === 'address' && log.decoded ? param.decoded.toLowerCase() : '', ) From 102b0ee38c4c3a9085d981236396915076408583 Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 26 Feb 2024 10:25:50 -0800 Subject: [PATCH 3/4] feat: update parties --- src/transformers/_common/parties.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/transformers/_common/parties.ts b/src/transformers/_common/parties.ts index 08817bf..fe5cc87 100644 --- a/src/transformers/_common/parties.ts +++ b/src/transformers/_common/parties.ts @@ -73,6 +73,7 @@ export function transform(block: RawBlock): RawBlock { return result; }); // nfts +<<<<<<< HEAD const nftTransfers = tx.assetTransfers?.filter( (transfer) => transfer.type === AssetType.ERC721 || @@ -83,6 +84,19 @@ export function transform(block: RawBlock): RawBlock { (transfer) => `${transfer.asset.toLowerCase()}-${transfer.tokenId}`, ) : []; +======= + const nfts = tx.receipt.logs + .filter( + (log) => + (log.decoded?.name === 'Transfer' || + log.decoded?.name === 'Approval') && + log.decoded?.decoded[2]?.type === 'uint256', + ) + .map( + (log) => + `${log.address.toLowerCase()}-${log.decoded?.decoded[2].decoded}`, + ); +>>>>>>> abd39ae (feat: update parties) // contracts created const contractsCreated = tx.contracts?.map((contract) => contract.address); parties = [ From 2ea734452e22c3db50fc732eac1dd433bf8c1f8a Mon Sep 17 00:00:00 2001 From: ponyjackal Date: Mon, 26 Feb 2024 10:32:22 -0800 Subject: [PATCH 4/4] feat: update unit test --- src/transformers/_common/parties.spec.ts | 44 ++++++------------------ src/transformers/_common/parties.ts | 14 -------- 2 files changed, 10 insertions(+), 48 deletions(-) diff --git a/src/transformers/_common/parties.spec.ts b/src/transformers/_common/parties.spec.ts index c588dbd..bb372fb 100644 --- a/src/transformers/_common/parties.spec.ts +++ b/src/transformers/_common/parties.spec.ts @@ -26,45 +26,21 @@ describe('transactionParties', () => { const txResult2 = result.transactions.find( (tx) => tx.hash === - '0xfa58c800fbdc2f34312a6bed8fc8e5052ce59f26a2258a0930529efbcda21ceb', + '0x4e4959da92eae0e03e835c5c71e77fe58e8d1e0f9795e309d661fcc65abdc021', ); expect(txResult2).toBeDefined(); if (txResult2) { expect(txResult2.parties).toStrictEqual([ - '0xfe44ae787a632c45acea658492ddbebe39f002ac', - '0xf21d42203af9af1c86e1e8ac501b41f5bc004a0a', - '0xf0b44c112630b2423c03080740d1a612474fc12a', - '0x9da2873b5ffe73d3ba353111920534f30076cbb4', - '0x0000000000000000000000000000000000000001', - '0x6bf249f802b9afc6d10af75eb45d4559858c81a1', - '0x6e07bbf7fba8e43988aec5f2df6c40d1afb4400e', - ]); - } - // erc20 tokens should not be in parties - const block5 = loadBlockFixture('ethereum', '19149188'); - const result5 = transform(block5); - - const txResult5 = result5.transactions.find( - (tx) => - tx.hash === - '0xfb62665dd247906395ece8d563acd41a0072db658dbeeb875390fef23541e1aa', - ); - expect(txResult5).toBeDefined(); - if (txResult5) { - expect(txResult5.parties).toStrictEqual([ - '0x74b78e98093f5b522a7ebdac3b994641ca7c2b20', - '0xdef1c0ded9bec7f1a1670819833240f027b25eff', - '0x44a6999ec971cfca458aff25a808f272f6d492a2', - '0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74', - '0x22f9dcf4647084d6c31b2765f6910cd85c178c18', - '0x2fd08c1f9fc8406c1d7e3a799a13883a7e7949f0', - '0x5ebac8dbfbba22168471b0f914131d1976536a25', + '0xa6ae57b1da8238cd149bc718c40578e4620b752c', + '0x00000000003b3cc22af3ae1eac0440bcee416b40', '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', - '0xb2bc06a4efb20fc6553a69dbfa49b7be938034a7', - '0x8146cbbe327364b13d0699f2ced39c637f92501a', - '0x43a2a720cd0911690c248075f4a29a5e7716f758', - '0x818a4a855bfeb16c305cb65e8d4fb239a308bc48', - '0xea500d073652336a58846ada15c25f2c6d2d241f', + '0xa9bd7eef0c7affbdbdae92105712e9ff8b06ed49', + '0x725c263e32c72ddc3a19bea12c5a0479a81ee688', + '0x3421b1fb3f9e1bb232386ae055fa788ee0e01463', + '0xb9f77c41becc96bfcf9dd75623a72dd92309e4a6', + '0x7a250d5630b4cf539739df2c5dacb4c659f2488d', + '0xc3d1eb891f24de439937c73748fc455588828489', + '0xc52b39ab373c6c5dceb9b87658808f956dfd25fd', ]); } }); diff --git a/src/transformers/_common/parties.ts b/src/transformers/_common/parties.ts index fe5cc87..08817bf 100644 --- a/src/transformers/_common/parties.ts +++ b/src/transformers/_common/parties.ts @@ -73,7 +73,6 @@ export function transform(block: RawBlock): RawBlock { return result; }); // nfts -<<<<<<< HEAD const nftTransfers = tx.assetTransfers?.filter( (transfer) => transfer.type === AssetType.ERC721 || @@ -84,19 +83,6 @@ export function transform(block: RawBlock): RawBlock { (transfer) => `${transfer.asset.toLowerCase()}-${transfer.tokenId}`, ) : []; -======= - const nfts = tx.receipt.logs - .filter( - (log) => - (log.decoded?.name === 'Transfer' || - log.decoded?.name === 'Approval') && - log.decoded?.decoded[2]?.type === 'uint256', - ) - .map( - (log) => - `${log.address.toLowerCase()}-${log.decoded?.decoded[2].decoded}`, - ); ->>>>>>> abd39ae (feat: update parties) // contracts created const contractsCreated = tx.contracts?.map((contract) => contract.address); parties = [