diff --git a/src/commands/runContextualizers.ts b/src/commands/runContextualizers.ts index 7f55035f..c13db301 100644 --- a/src/commands/runContextualizers.ts +++ b/src/commands/runContextualizers.ts @@ -2,6 +2,7 @@ import { program } from './main'; import { fetchTransactions } from './utils'; import { Transaction } from '../types'; import { contextualizer } from '../contextualizers'; +import { Hash } from 'viem'; export function registerRunContextualizersCommand() { program @@ -36,6 +37,30 @@ export function registerRunContextualizersCommand() { err, ); } + + if (transaction.pseudotransactions?.length) { + transaction.pseudotransactions.forEach((pseudoTransaction) => { + const toContextualize = { + ...pseudoTransaction, + hash: pseudoTransaction.meta.key as unknown as Hash, + }; + + console.log(`Running contextualizer on pseudoTransaction`); + try { + const txResult = contextualizer.contextualize(toContextualize); + if (!txResult.from) { + console.error( + `No matching contextualizer on pseudoTransaction ${pseudoTransaction.meta}`, + ); + } + } catch (err) { + console.error( + `failed to run contextualizer on pseudoTransaction ${pseudoTransaction.meta}: `, + err, + ); + } + }); + } }); console.log('Successfully ran contextualizers'); diff --git a/src/contextualizers/contextualizer.spec.ts b/src/contextualizers/contextualizer.spec.ts index f221e013..e35546da 100644 --- a/src/contextualizers/contextualizer.spec.ts +++ b/src/contextualizers/contextualizer.spec.ts @@ -1,5 +1,6 @@ import { contextualizer } from './index'; import { Transaction } from '../types'; +import { contextSummary } from '../helpers/utils'; // contract deployed import contractDeployed0x88e7d866 from './test/transactions/contractDeployed-0x88e7d866.json'; @@ -44,6 +45,8 @@ import ens0xdb203e93 from './test/transactions/ens-0xdb203e93.json'; import ens0xea1b4ab6 from './test/transactions/ens-0xea1b4ab6.json'; import ensRegistrar0xb14b4771 from './test/transactions/ensRegistrar-0xb14b4771.json'; import ensBulkRenew0x25add712 from './test/transactions/ensBulkRenew-0x25add712.json'; +// ERC4337 +import accountAbstractionEthTransfer0x7a5e9ca7 from './test/transactions/erc4337-eth-transfer-0x7a5e9ca7.json'; describe('ContextualizerService', () => { describe('Detect transactions correctly', () => { @@ -235,4 +238,18 @@ describe('ContextualizerService', () => { expect(bulkRenew.context?.summaries?.en.title).toBe('ENS'); }); }); + + describe('pseudo transactions', () => { + it('Should detect ETH transfer', () => { + const transfer = contextualizer.contextualize( + (accountAbstractionEthTransfer0x7a5e9ca7 as unknown as Transaction) + .pseudotransactions![0], + ); + + expect(transfer.context?.summaries?.en.title).toBe('ETH Transfer'); + expect(contextSummary(transfer.context)).toBe( + '0x2991c3845396c9f1d262b2ca0674111a59e2c90a SENT 0.005 ETH to 0x5d72015cc621025c265fabffc2fa55ac4821d79f', + ); + }); + }); }); diff --git a/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.spec.ts b/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.spec.ts new file mode 100644 index 00000000..147ebf5e --- /dev/null +++ b/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.spec.ts @@ -0,0 +1,45 @@ +import { Transaction } from '../../../types'; +import { detect, generate } from './accountAbstraction'; +import { contextSummary } from '../../../helpers/utils'; + +import accountAbstractionSingleBundle0x6ae53f78 from '../../test/transactions/erc4337-eth-transfer-0x6ae53f78.json'; +import accountAbstractionMultipleBundles0xc7d49ad1 from '../../test/transactions/erc4337-multiple-ops-0xc7d49ad1.json'; +import catchall0xc35c01ac from '../../test/transactions/catchall-0xc35c01ac.json'; + +describe('Token Transfer', () => { + it('Should detect token transfer transaction', () => { + const accountAbstraction = detect( + accountAbstractionSingleBundle0x6ae53f78 as unknown as Transaction, + ); + expect(accountAbstraction).toBe(true); + }); + + it('Should not detect accountAbstraction transaction', () => { + const other = detect(catchall0xc35c01ac as unknown as Transaction); + expect(other).toBe(false); + }); + + describe('Should generate context', () => { + it('works with 1 bundle', () => { + const transaction = generate( + accountAbstractionSingleBundle0x6ae53f78 as unknown as Transaction, + ); + + expect(transaction.context?.summaries?.en.title).toBe('ERC4337 Bundle'); + expect(contextSummary(transaction.context)).toBe( + '0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE with 1 user op', + ); + }); + + it('works with multiple bundles', () => { + const transaction = generate( + accountAbstractionMultipleBundles0xc7d49ad1 as unknown as Transaction, + ); + + expect(transaction.context?.summaries?.en.title).toBe('ERC4337 Bundle'); + expect(contextSummary(transaction.context)).toBe( + '0x13284299074631de638be076a5aaf73b1d471afd SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE with 2 user ops', + ); + }); + }); +}); diff --git a/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.ts b/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.ts new file mode 100644 index 00000000..0d0ebaad --- /dev/null +++ b/src/contextualizers/heuristics/accountAbstraction/accountAbstraction.ts @@ -0,0 +1,44 @@ +import { HeuristicContextActionEnum, Transaction } from '../../../types'; + +export function contextualize(transaction: Transaction): Transaction { + if (!detect(transaction)) return transaction; + + return generate(transaction); +} + +export function detect(transaction: Transaction): boolean { + return !!transaction.pseudotransactions?.length; +} + +export function generate(transaction: Transaction): Transaction { + if (!transaction.pseudotransactions) return transaction; + + const userOps = transaction.pseudotransactions.length; + transaction.context = { + variables: { + subject: { + type: 'address', + value: transaction.from, + }, + userOps: { + type: 'number', + emphasis: true, + value: userOps, + unit: `user op${userOps > 1 ? 's' : ''}`, + }, + contextAction: { + type: 'contextAction', + value: HeuristicContextActionEnum.SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE, + }, + }, + summaries: { + category: 'ACCOUNT_ABSTRACTION', + en: { + title: 'ERC4337 Bundle', + default: '[[subject]][[contextAction]]with[[userOps]]', + }, + }, + }; + + return transaction; +} diff --git a/src/contextualizers/heuristics/accountAbstraction/index.ts b/src/contextualizers/heuristics/accountAbstraction/index.ts new file mode 100644 index 00000000..a748d2c2 --- /dev/null +++ b/src/contextualizers/heuristics/accountAbstraction/index.ts @@ -0,0 +1 @@ +export { contextualize as accountAbstractionContextualizer } from './accountAbstraction'; diff --git a/src/contextualizers/heuristics/index.ts b/src/contextualizers/heuristics/index.ts index 1c68199d..ba412946 100644 --- a/src/contextualizers/heuristics/index.ts +++ b/src/contextualizers/heuristics/index.ts @@ -12,6 +12,7 @@ import { erc20MintContextualizer } from './erc20Mint'; import { erc721MintContextualizer } from './erc721Mint'; import { erc1155MintContextualizer } from './erc1155Mint'; import { tokenTransferContextualizer } from './tokenTransfer'; +import { accountAbstractionContextualizer } from './accountAbstraction'; const children = { cancelPendingTransactionContextualizer, @@ -27,6 +28,7 @@ const children = { tokenAirdropContextualizer, tokenApprovalContextualizer, tokenTransferContextualizer, + accountAbstractionContextualizer, }; const contextualize = makeContextualize(children); diff --git a/src/contextualizers/test/transactions/erc4337-eth-transfer-0x6ae53f78.json b/src/contextualizers/test/transactions/erc4337-eth-transfer-0x6ae53f78.json new file mode 100644 index 00000000..c5985ba3 --- /dev/null +++ b/src/contextualizers/test/transactions/erc4337-eth-transfer-0x6ae53f78.json @@ -0,0 +1,3347 @@ +{ + "_id": "65ede4f1ca0b43b20d824e09", + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "from": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "gas": 865340, + "gasPrice": "4214827", + "maxPriorityFeePerGas": "1130000", + "maxFeePerGas": "7222570", + "hash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "input": "0x1fad948c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000008150872a36c9414912d1a54b8cc650774438eff30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000d2ef00000000000000000000000000000000000000000000000000000000000684eb0000000000000000000000000000000000000000000000000000000004555ca300000000000000000000000000000000000000000000000000000000006e352a0000000000000000000000000000000000000000000000000000000000113e100000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000589406cc6185a346906296840746125a0e449764545fbfb9cf000000000000000000000000d3ad766798204a86231fc8038ccf661f070857660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d59d6ac51b972544251fcc0f2902e633e3f9bd3f290000000000000000000000000000000000000000000000000000000065d5608d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4f5873bbd7b3a0764b7b57435182eb1f867002bbd92a1c5e60c930c66558d1a1d0a1eaab620edcd13748405d46c92ff33f97b5797d5834604a276bd2e61cd531c00000000000000000000000000000000000000000000000000000000000000000000000000000000000041b709aca4696c4f05b9d0ebef98a03f25eaa80cc89fb81a7c5a51efca7d8e75b06a1a92de3813b98c45a45fb11217401124b59ba20f2feeda13f132f7083f9e491c00000000000000000000000000000000000000000000000000000000000000", + "nonce": 10, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 5, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 10, + "v": "0x0", + "r": "0x395fa7b074468e6270a03e117593d7f6a52e3fdee4c1d0183db1e61a792bd7eb", + "s": "0x7d2f40126a85bd9661a21c81b93fdafd21221d8f91f8370a24b4e6d41e2b6cfe", + "receipt": { + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "contractAddress": null, + "cumulativeGasUsed": 1079767, + "effectiveGasPrice": 4214827, + "from": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "gasUsed": 425753, + "l1Fee": "0xdb9870b8fa25", + "l1FeeScalar": "0.684", + "l1GasPrice": "0x7855600a4", + "l1GasUsed": "0x2ab0", + "logsBloom": "0x000024800000000000000000000000004000001800200000000000000000000000180000000000000002000100000000801000000000000000000a000000200000000000000000000000000800000200010000000000400000000000000000000000000008000001000000000004000000001000000000400080001000000000000008000000000a00000010000000000000020000048000000000000a000000000000000000000000400000000400000000000000000000000002000000000000000022000000000001000008042040000000000000004000000000000000000000000000100000001000000008000000000000000000000000000000000000", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "type": "0x2", + "logs": [ + { + "_id": "65ede4f1ca0b43b20d824dce", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 20, + "removed": false, + "id": "log_9e4fa82e", + "decoded": { + "signature": "Upgraded(address)", + "signature_with_arg_names": "Upgraded(address indexed implementation)", + "name": "Upgraded", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address", + "decoded": "0x8abb13360b87be5eeb1b98647a016add927a136c" + } + ] + }, + "topic0": "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b", + "topic1": "0x0000000000000000000000008abb13360b87be5eeb1b98647a016add927a136c" + }, + { + "_id": "65ede4f1ca0b43b20d824dcf", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 21, + "removed": false, + "id": "log_1eea61e8", + "decoded": { + "signature": "SimpleAccountInitialized(address,address)", + "signature_with_arg_names": "SimpleAccountInitialized(address indexed entryPoint,address indexed owner)", + "name": "SimpleAccountInitialized", + "decoded": [ + { + "indexed": true, + "internalType": "contract IEntryPoint", + "name": "entryPoint", + "type": "address", + "decoded": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd3ad766798204a86231fc8038ccf661f07085766" + } + ] + }, + "topic0": "0x47e55c76e7a6f1fd8996a1da8008c1ea29699cca35e7bcd057f2dec313b6e5de", + "topic1": "0x0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "topic2": "0x000000000000000000000000d3ad766798204a86231fc8038ccf661f07085766" + }, + { + "_id": "65ede4f1ca0b43b20d824dd0", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 22, + "removed": false, + "id": "log_9364a88e", + "decoded": { + "signature": "Initialized(uint8)", + "signature_with_arg_names": "Initialized(uint8 version)", + "name": "Initialized", + "decoded": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8", + "decoded": "1" + } + ] + }, + "topic0": "0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498" + }, + { + "_id": "65ede4f1ca0b43b20d824dd1", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000009406cc6185a346906296840746125a0e449764540000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 23, + "removed": false, + "id": "log_6b78a024", + "decoded": { + "signature": "AccountDeployed(bytes32,address,address,address)", + "signature_with_arg_names": "AccountDeployed(bytes32 indexed userOpHash,address indexed sender,address factory,address paymaster)", + "name": "AccountDeployed", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": false, + "internalType": "address", + "name": "factory", + "type": "address", + "decoded": "0x9406cc6185a346906296840746125a0e44976454" + }, + { + "indexed": false, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ] + }, + "topic0": "0xd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "_id": "65ede4f1ca0b43b20d824dd2", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 24, + "removed": false, + "id": "log_df4822ca", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ede4f1ca0b43b20d824dd3", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "data": "0x00000000000000000000000000000000000000000000000000000000000186a0", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 25, + "removed": false, + "id": "log_448f20c9", + "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": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "100000" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic2": "0x000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "_id": "65ede4f1ca0b43b20d824dd4", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000011823b833513100000000000000000000000000000000000000000000000000000000045b1a13", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 26, + "removed": false, + "id": "log_31ff2e55", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "308016670003505" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "73079315" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic3": "0x0000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ] + }, + "decoded": null, + "assetTransfers": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0xc42f399d9f004700fbfef7b9005fcb90f37c703c", + "value": "100000", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "type": "eth", + "value": "308016670003505" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0x5273c", + "input": "0xc4d66de8000000000000000000000000d3ad766798204a86231fc8038ccf661f07085766", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x6602", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0x668a4", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006057833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad00000000000000000000000000000000000000000000000000000000000000000000000000000000000000008150872a36c9414912d1a54b8cc650774438eff30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000d2ef00000000000000000000000000000000000000000000000000000000000684eb0000000000000000000000000000000000000000000000000000000004555ca300000000000000000000000000000000000000000000000000000000006e352a0000000000000000000000000000000000000000000000000000000000113e100000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000589406cc6185a346906296840746125a0e449764545fbfb9cf000000000000000000000000d3ad766798204a86231fc8038ccf661f070857660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d59d6ac51b972544251fcc0f2902e633e3f9bd3f290000000000000000000000000000000000000000000000000000000065d5608d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4f5873bbd7b3a0764b7b57435182eb1f867002bbd92a1c5e60c930c66558d1a1d0a1eaab620edcd13748405d46c92ff33f97b5797d5834604a276bd2e61cd531c00000000000000000000000000000000000000000000000000000000000000000000000000000000000041b709aca4696c4f05b9d0ebef98a03f25eaa80cc89fb81a7c5a51efca7d8e75b06a1a92de3813b98c45a45fb11217401124b59ba20f2feeda13f132f7083f9e491c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x13b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 1, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0xce30", + "input": "0xb61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0xae72", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 3, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "gas": "0x9d75", + "input": "0xa9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0", + "to": "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x8253", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 3, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x7fc98430eaedbb6070b35b39d798725049088348", + "0x9406cc6185a346906296840746125a0e44976454", + "0x8150872a36c9414912d1a54b8cc650774438eff3", + "0x8abb13360b87be5eeb1b98647a016add927a136c", + "0x0000000000000000000000000000000000000001", + "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "0xd3ad766798204a86231fc8038ccf661f07085766", + "0xc42f399d9f004700fbfef7b9005fcb90f37c703c" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x7fc98430eaedbb6070b35b39d798725049088348", + "sigHash": "0x570e1a36" + }, + { + "from": "0x7fc98430eaedbb6070b35b39d798725049088348", + "to": "0x9406cc6185a346906296840746125a0e44976454", + "sigHash": "0x5fbfb9cf" + }, + { + "from": "0x9406cc6185a346906296840746125a0e44976454", + "sigHash": "undefined" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xc4d66de8" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x071d2137" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "sigHash": "0xf465c77e" + }, + { + "from": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xf41e125b" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "to": "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "sigHash": "0x" + } + ], + "timestamp": 1708479103, + "baseFeePerGas": 3084827, + "transactionFee": "241447772682789120001794475239731", + "logs": [ + { + "_id": "65ede4f1ca0b43b20d824dce", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 20, + "removed": false, + "id": "log_9e4fa82e", + "decoded": { + "signature": "Upgraded(address)", + "signature_with_arg_names": "Upgraded(address indexed implementation)", + "name": "Upgraded", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address", + "decoded": "0x8abb13360b87be5eeb1b98647a016add927a136c" + } + ] + }, + "topic0": "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b", + "topic1": "0x0000000000000000000000008abb13360b87be5eeb1b98647a016add927a136c" + }, + { + "_id": "65ede4f1ca0b43b20d824dcf", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 21, + "removed": false, + "id": "log_1eea61e8", + "decoded": { + "signature": "SimpleAccountInitialized(address,address)", + "signature_with_arg_names": "SimpleAccountInitialized(address indexed entryPoint,address indexed owner)", + "name": "SimpleAccountInitialized", + "decoded": [ + { + "indexed": true, + "internalType": "contract IEntryPoint", + "name": "entryPoint", + "type": "address", + "decoded": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd3ad766798204a86231fc8038ccf661f07085766" + } + ] + }, + "topic0": "0x47e55c76e7a6f1fd8996a1da8008c1ea29699cca35e7bcd057f2dec313b6e5de", + "topic1": "0x0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "topic2": "0x000000000000000000000000d3ad766798204a86231fc8038ccf661f07085766" + }, + { + "_id": "65ede4f1ca0b43b20d824dd0", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 22, + "removed": false, + "id": "log_9364a88e", + "decoded": { + "signature": "Initialized(uint8)", + "signature_with_arg_names": "Initialized(uint8 version)", + "name": "Initialized", + "decoded": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8", + "decoded": "1" + } + ] + }, + "topic0": "0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498" + }, + { + "_id": "65ede4f1ca0b43b20d824dd1", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000009406cc6185a346906296840746125a0e449764540000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 23, + "removed": false, + "id": "log_6b78a024", + "decoded": { + "signature": "AccountDeployed(bytes32,address,address,address)", + "signature_with_arg_names": "AccountDeployed(bytes32 indexed userOpHash,address indexed sender,address factory,address paymaster)", + "name": "AccountDeployed", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": false, + "internalType": "address", + "name": "factory", + "type": "address", + "decoded": "0x9406cc6185a346906296840746125a0e44976454" + }, + { + "indexed": false, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ] + }, + "topic0": "0xd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "_id": "65ede4f1ca0b43b20d824dd2", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 24, + "removed": false, + "id": "log_df4822ca", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ede4f1ca0b43b20d824dd3", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "data": "0x00000000000000000000000000000000000000000000000000000000000186a0", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 25, + "removed": false, + "id": "log_448f20c9", + "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": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "100000" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic2": "0x000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "_id": "65ede4f1ca0b43b20d824dd4", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000011823b833513100000000000000000000000000000000000000000000000000000000045b1a13", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 26, + "removed": false, + "id": "log_31ff2e55", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "308016670003505" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "73079315" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic3": "0x0000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ], + "netAssetTransfers": { + "0x8150872a36c9414912d1a54b8cc650774438eff3": { + "received": [], + "sent": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "type": "erc20", + "value": "100000" + } + ] + }, + "0xc42f399d9f004700fbfef7b9005fcb90f37c703c": { + "received": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "type": "erc20", + "value": "100000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "308016670003505" + } + ] + }, + "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d": { + "received": [ + { + "type": "eth", + "value": "308016670003505" + } + ], + "sent": [] + } + }, + "pseudotransactions": [ + { + "_id": "65ede4f1ca0b43b20d824e09", + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": 865340, + "gasPrice": "4214827", + "maxPriorityFeePerGas": "1130000", + "maxFeePerGas": "7222570", + "input": "0xa9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0", + "nonce": 10, + "to": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "transactionIndex": 5, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 10, + "v": "0x0", + "r": "0x395fa7b074468e6270a03e117593d7f6a52e3fdee4c1d0183db1e61a792bd7eb", + "s": "0x7d2f40126a85bd9661a21c81b93fdafd21221d8f91f8370a24b4e6d41e2b6cfe", + "decoded": null, + "assetTransfers": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0xc42f399d9f004700fbfef7b9005fcb90f37c703c", + "value": "100000", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "type": "eth", + "value": "308016670003505" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0x5273c", + "input": "0xc4d66de8000000000000000000000000d3ad766798204a86231fc8038ccf661f07085766", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x6602", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0x668a4", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006057833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad00000000000000000000000000000000000000000000000000000000000000000000000000000000000000008150872a36c9414912d1a54b8cc650774438eff30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000d2ef00000000000000000000000000000000000000000000000000000000000684eb0000000000000000000000000000000000000000000000000000000004555ca300000000000000000000000000000000000000000000000000000000006e352a0000000000000000000000000000000000000000000000000000000000113e100000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000589406cc6185a346906296840746125a0e449764545fbfb9cf000000000000000000000000d3ad766798204a86231fc8038ccf661f070857660000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d59d6ac51b972544251fcc0f2902e633e3f9bd3f290000000000000000000000000000000000000000000000000000000065d5608d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4f5873bbd7b3a0764b7b57435182eb1f867002bbd92a1c5e60c930c66558d1a1d0a1eaab620edcd13748405d46c92ff33f97b5797d5834604a276bd2e61cd531c00000000000000000000000000000000000000000000000000000000000000000000000000000000000041b709aca4696c4f05b9d0ebef98a03f25eaa80cc89fb81a7c5a51efca7d8e75b06a1a92de3813b98c45a45fb11217401124b59ba20f2feeda13f132f7083f9e491c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x13b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 1, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "gas": "0xce30", + "input": "0xb61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0xae72", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 3, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "gas": "0x9d75", + "input": "0xa9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a0", + "to": "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "value": "0x0" + }, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "blockNumber": 116440163, + "result": { + "gasUsed": "0x8253", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 3, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionPosition": 5, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x7fc98430eaedbb6070b35b39d798725049088348", + "0x9406cc6185a346906296840746125a0e44976454", + "0x8150872a36c9414912d1a54b8cc650774438eff3", + "0x8abb13360b87be5eeb1b98647a016add927a136c", + "0x0000000000000000000000000000000000000001", + "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "0xd3ad766798204a86231fc8038ccf661f07085766", + "0xc42f399d9f004700fbfef7b9005fcb90f37c703c" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x7fc98430eaedbb6070b35b39d798725049088348", + "sigHash": "0x570e1a36" + }, + { + "from": "0x7fc98430eaedbb6070b35b39d798725049088348", + "to": "0x9406cc6185a346906296840746125a0e44976454", + "sigHash": "0x5fbfb9cf" + }, + { + "from": "0x9406cc6185a346906296840746125a0e44976454", + "sigHash": "undefined" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xc4d66de8" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x071d2137" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "sigHash": "0xf465c77e" + }, + { + "from": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xf41e125b" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "to": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "to": "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "sigHash": "0x" + } + ], + "timestamp": 1708479103, + "baseFeePerGas": 3084827, + "transactionFee": "241447772682789120001794475239731", + "context": "INTERACTED_WITH", + "logs": [ + { + "_id": "65ede4f1ca0b43b20d824dce", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 20, + "removed": false, + "id": "log_9e4fa82e", + "decoded": { + "signature": "Upgraded(address)", + "signature_with_arg_names": "Upgraded(address indexed implementation)", + "name": "Upgraded", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address", + "decoded": "0x8abb13360b87be5eeb1b98647a016add927a136c" + } + ] + }, + "topic0": "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b", + "topic1": "0x0000000000000000000000008abb13360b87be5eeb1b98647a016add927a136c" + }, + { + "_id": "65ede4f1ca0b43b20d824dcf", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 21, + "removed": false, + "id": "log_1eea61e8", + "decoded": { + "signature": "SimpleAccountInitialized(address,address)", + "signature_with_arg_names": "SimpleAccountInitialized(address indexed entryPoint,address indexed owner)", + "name": "SimpleAccountInitialized", + "decoded": [ + { + "indexed": true, + "internalType": "contract IEntryPoint", + "name": "entryPoint", + "type": "address", + "decoded": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address", + "decoded": "0xd3ad766798204a86231fc8038ccf661f07085766" + } + ] + }, + "topic0": "0x47e55c76e7a6f1fd8996a1da8008c1ea29699cca35e7bcd057f2dec313b6e5de", + "topic1": "0x0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "topic2": "0x000000000000000000000000d3ad766798204a86231fc8038ccf661f07085766" + }, + { + "_id": "65ede4f1ca0b43b20d824dd0", + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "data": "0x0000000000000000000000000000000000000000000000000000000000000001", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 22, + "removed": false, + "id": "log_9364a88e", + "decoded": { + "signature": "Initialized(uint8)", + "signature_with_arg_names": "Initialized(uint8 version)", + "name": "Initialized", + "decoded": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8", + "decoded": "1" + } + ] + }, + "topic0": "0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498" + }, + { + "_id": "65ede4f1ca0b43b20d824dd1", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000009406cc6185a346906296840746125a0e449764540000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 23, + "removed": false, + "id": "log_6b78a024", + "decoded": { + "signature": "AccountDeployed(bytes32,address,address,address)", + "signature_with_arg_names": "AccountDeployed(bytes32 indexed userOpHash,address indexed sender,address factory,address paymaster)", + "name": "AccountDeployed", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": false, + "internalType": "address", + "name": "factory", + "type": "address", + "decoded": "0x9406cc6185a346906296840746125a0e44976454" + }, + { + "indexed": false, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ] + }, + "topic0": "0xd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "_id": "65ede4f1ca0b43b20d824dd2", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 24, + "removed": false, + "id": "log_df4822ca", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ede4f1ca0b43b20d824dd3", + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "data": "0x00000000000000000000000000000000000000000000000000000000000186a0", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 25, + "removed": false, + "id": "log_448f20c9", + "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": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0xc42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "100000" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic2": "0x000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c" + }, + { + "_id": "65ede4f1ca0b43b20d824dd4", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000011823b833513100000000000000000000000000000000000000000000000000000000045b1a13", + "blockNumber": 116440163, + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "transactionIndex": 5, + "blockHash": "0x45fbc8546a8529632dc872b66d6318356a620eea71239a38375057b063c83628", + "logIndex": 26, + "removed": false, + "id": "log_31ff2e55", + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x8150872a36c9414912d1a54b8cc650774438eff3" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "308016670003505" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "73079315" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "topic2": "0x0000000000000000000000008150872a36c9414912d1a54b8cc650774438eff3", + "topic3": "0x0000000000000000000000009d6ac51b972544251fcc0f2902e633e3f9bd3f29" + } + ], + "netAssetTransfers": { + "0x8150872a36c9414912d1a54b8cc650774438eff3": { + "received": [], + "sent": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "type": "erc20", + "value": "100000" + } + ] + }, + "0xc42f399d9f004700fbfef7b9005fcb90f37c703c": { + "received": [ + { + "contract": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "type": "erc20", + "value": "100000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "308016670003505" + } + ] + }, + "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d": { + "received": [ + { + "type": "eth", + "value": "308016670003505" + } + ], + "sent": [] + } + }, + "data": "0xb61d27f60000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000c42f399d9f004700fbfef7b9005fcb90f37c703c00000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x57833bf0b1374decf2accdf50a0765526cd4e5ed79905f2ea7588d2f4e4c0dad", + "type": "ERC4337", + "bundler": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "benficiary": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + } + ], + "contractsCreated": [ + { + "_id": "65ede4f1ca0b43b20d824db9", + "chainId": 10, + "address": "0x8150872a36c9414912d1a54b8cc650774438eff3", + "deployer": "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d", + "directDeployer": "0x9406cc6185a346906296840746125a0e44976454", + "bytecode": "0x60806040523661001357610011610017565b005b6100115b610027610022610074565b6100b9565b565b606061004e83836040518060600160405280602781526020016102f1602791396100dd565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b90565b60006100b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e8080156100d8573d6000f35b3d6000fd5b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516101079190610283565b600060405180830381855af49150503d8060008114610142576040519150601f19603f3d011682016040523d82523d6000602084013e610147565b606091505b509150915061015886838387610162565b9695505050505050565b606083156101fd5782516000036101f65773ffffffffffffffffffffffffffffffffffffffff85163b6101f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b5081610207565b610207838361020f565b949350505050565b81511561021f5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ed919061029f565b60005b8381101561026e578181015183820152602001610256565b8381111561027d576000848401525b50505050565b60008251610295818460208701610253565b9190910192915050565b60208152600082518060208401526102be816040850160208701610253565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212201cd78ab6a31213989661cff2d7d05fc9b9c38b1a848e8249e2e398659a9eb7e364736f6c634300080f0033", + "fingerprint": "0x0acbd632c56f6f227951f6c832b36177319145deddb8df3a12c3bcc91fbf49b3", + "gas": "0x5a7ee", + "gasUsed": "0x367f1", + "transactionHash": "0x6ae53e45ff55fc8b85745d50717bc20b4181aa53c704d221bfa9ec51197c3f78", + "type": "create", + "traceIndex": 3, + "timestamp": 1708479103 + } + ], + "enrichedParties": { + "0xa5fdfcbceeceb5741ef73f86cf3ed6e80e5e920d": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x7fc98430eaedbb6070b35b39d798725049088348": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9406cc6185a346906296840746125a0e44976454": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 252, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8150872a36c9414912d1a54b8cc650774438eff3": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8abb13360b87be5eeb1b98647a016add927a136c": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 252, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000001": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x9d6ac51b972544251fcc0f2902e633e3f9bd3f29": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0b2c639c533813f4aa9d7837caf62653d097ff85": [ + { + "chainId": 10, + "label": { + "public": "USD Coin" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 6, + "symbol": "USDC", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": "0", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xded3b9a8dbedc2f9cb725b55d0e686a81e6d06dc": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": "0", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xd3ad766798204a86231fc8038ccf661f07085766": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xc42f399d9f004700fbfef7b9005fcb90f37c703c": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/erc4337-eth-transfer-0x7a5e9ca7.json b/src/contextualizers/test/transactions/erc4337-eth-transfer-0x7a5e9ca7.json new file mode 100644 index 00000000..1c7cfea2 --- /dev/null +++ b/src/contextualizers/test/transactions/erc4337-eth-transfer-0x7a5e9ca7.json @@ -0,0 +1,1376 @@ +{ + "_id": "65ec36e048ead33a563538be", + "accessList": [], + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "chainId": 1, + "from": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "gas": 335190, + "gasPrice": "28550810583", + "hash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000012a39672ae8ae8e87e12a5de53c34690d830365c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000019ba4000000000000000000000000000000000000000000000000000000000000cb26000000000000000000000000000000000000000000000000000000000000bf4d00000000000000000000000000000000000000000000000000000007e56e92800000000000000000000000000000000000000000000000000000000026be3680000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008470641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000065d9ff807327715eef13ada99bc22b693f00f9996b5e0f75c013595df77f5e591e9e6d206565a7ca6cf3aa76b1d0cbb0fc39252dee8df8fa7f56f418690f954d6d3fb6df1c000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "33914000000", + "maxPriorityFeePerGas": "650000000", + "nonce": 482, + "r": "0xac75920bcd687291a64c6020f070cd1025d26402c8c1cdd16c0ee4f92b42bc19", + "s": "0x2740089fdf04eefecb03ccc7958386a06228795c2d5ab38e00b5b2b6c4415c0d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 153, + "type": 2, + "v": "0x0", + "value": "0", + "receipt": { + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "contractAddress": null, + "cumulativeGasUsed": 11512712, + "effectiveGasPrice": 28550810583, + "from": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "gasUsed": 124951, + "logsBloom": "0x000000000000000000000000000000000000000000000000000000000000000000080000000000000002000100000000001000000000000000000200000000000000000000000040000000000000000000000000000000000000000000000000000080000a0000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000400000000000000000000000000000000002000000000000000000000000000001000000000000000000000000000000000000000020000000000000050000000000000000000000000000400000000000000000000000", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "type": "0x2", + "logs": [ + { + "_id": "65ec36e048ead33a5635338d", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x", + "logIndex": 208, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ec36e048ead33a5635338e", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000cf2cb129b3741000000000000000000000000000000000000000000000000000000000001f2a7", + "logIndex": 209, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "16" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "3644653724972865" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "127655" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37", + "topic2": "0x0000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ] + }, + "decoded": null, + "assetTransfers": [ + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "type": "eth", + "value": "5000000000000000" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "type": "eth", + "value": "3644653724972865" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "gas": "0xb4b9", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006008190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f3700000000000000000000000000000000000000000000000000000000000000000000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000019ba4000000000000000000000000000000000000000000000000000000000000cb26000000000000000000000000000000000000000000000000000000000000bf4d00000000000000000000000000000000000000000000000000000007e56e92800000000000000000000000000000000000000000000000000000000026be3680000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008470641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000065d9ff807327715eef13ada99bc22b693f00f9996b5e0f75c013595df77f5e591e9e6d206565a7ca6cf3aa76b1d0cbb0fc39252dee8df8fa7f56f418690f954d6d3fb6df1c000000000000000000000000000000000000000000000000000000000000", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "value": "0x0" + }, + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "result": { + "gasUsed": "0x3f15", + "output": "0x000000000000000065d9ff800000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionPosition": 153, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "gas": "0x193cc", + "input": "0x70641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "value": "0x0" + }, + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "result": { + "gasUsed": "0x9457", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 1, + 0, + 0 + ], + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionPosition": 153, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "0x228e505d1f21948968fb52794ea823f65053a294", + "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "0x0000000000000000000000000000000000000000" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x228e505d1f21948968fb52794ea823f65053a294", + "sigHash": "0xadb66249" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "sigHash": "0x70641a22" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "sigHash": "0x70641a22" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "sigHash": "0x" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "sigHash": "0x" + } + ], + "timestamp": 1708785203, + "baseFeePerGas": 27900810583, + "transactionFee": "3567452333156433", + "logs": [ + { + "_id": "65ec36e048ead33a5635338d", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x", + "logIndex": 208, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ec36e048ead33a5635338e", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000cf2cb129b3741000000000000000000000000000000000000000000000000000000000001f2a7", + "logIndex": 209, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "16" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "3644653724972865" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "127655" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37", + "topic2": "0x0000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "netAssetTransfers": { + "0x2991c3845396c9f1d262b2ca0674111a59e2c90a": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "5000000000000000" + } + ] + }, + "0x5d72015cc621025c265fabffc2fa55ac4821d79f": { + "received": [ + { + "type": "eth", + "value": "5000000000000000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "3644653724972865" + } + ] + }, + "0x12a39672ae8ae8e87e12a5de53c34690d830365c": { + "received": [ + { + "type": "eth", + "value": "3644653724972865" + } + ], + "sent": [] + } + }, + "pseudotransactions": [ + { + "_id": "65ec36e048ead33a563538be", + "accessList": [], + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "chainId": 1, + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "gas": 335190, + "gasPrice": "28550810583", + "input": "0x", + "maxFeePerGas": "33914000000", + "maxPriorityFeePerGas": "650000000", + "nonce": 482, + "r": "0xac75920bcd687291a64c6020f070cd1025d26402c8c1cdd16c0ee4f92b42bc19", + "s": "0x2740089fdf04eefecb03ccc7958386a06228795c2d5ab38e00b5b2b6c4415c0d", + "to": "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "transactionIndex": 153, + "type": 2, + "v": "0x0", + "value": "5000000000000000", + "decoded": null, + "assetTransfers": [ + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "type": "eth", + "value": "5000000000000000" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "type": "eth", + "value": "3644653724972865" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "gas": "0xb4b9", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006008190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f3700000000000000000000000000000000000000000000000000000000000000000000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000019ba4000000000000000000000000000000000000000000000000000000000000cb26000000000000000000000000000000000000000000000000000000000000bf4d00000000000000000000000000000000000000000000000000000007e56e92800000000000000000000000000000000000000000000000000000000026be3680000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008470641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062000000000000000000000000000000000000000000000000000000000065d9ff807327715eef13ada99bc22b693f00f9996b5e0f75c013595df77f5e591e9e6d206565a7ca6cf3aa76b1d0cbb0fc39252dee8df8fa7f56f418690f954d6d3fb6df1c000000000000000000000000000000000000000000000000000000000000", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "value": "0x0" + }, + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "result": { + "gasUsed": "0x3f15", + "output": "0x000000000000000065d9ff800000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionPosition": 153, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "gas": "0x193cc", + "input": "0x70641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "value": "0x0" + }, + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "result": { + "gasUsed": "0x9457", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 1, + 0, + 0 + ], + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionPosition": 153, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "0x228e505d1f21948968fb52794ea823f65053a294", + "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "0x0000000000000000000000000000000000000000" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x228e505d1f21948968fb52794ea823f65053a294", + "sigHash": "0xadb66249" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "sigHash": "0x70641a22" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5147ce3947a407c95687131be01a2b8d55fd0a40", + "sigHash": "0x70641a22" + }, + { + "from": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a", + "to": "0x5d72015cc621025c265fabffc2fa55ac4821d79f", + "sigHash": "0x" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "sigHash": "0x" + } + ], + "timestamp": 1708785203, + "baseFeePerGas": 27900810583, + "transactionFee": "3567452333156433", + "context": "INTERACTED_WITH", + "logs": [ + { + "_id": "65ec36e048ead33a5635338d", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x", + "logIndex": 208, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ec36e048ead33a5635338e", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xd5e715d19b2a8c42c19cb7e3602e1c644c85b672ca50cb662c4122ed49705352", + "blockNumber": 19298068, + "data": "0x00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000cf2cb129b3741000000000000000000000000000000000000000000000000000000000001f2a7", + "logIndex": 209, + "removed": false, + "transactionHash": "0x7a5e7d32380ae2ca3064b7fbc41e0d698cb7826f61a941737902f4a74a979ca7", + "transactionIndex": 153, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x2991c3845396c9f1d262b2ca0674111a59e2c90a" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "16" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "3644653724972865" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "127655" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37", + "topic2": "0x0000000000000000000000002991c3845396c9f1d262b2ca0674111a59e2c90a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "netAssetTransfers": { + "0x2991c3845396c9f1d262b2ca0674111a59e2c90a": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "5000000000000000" + } + ] + }, + "0x5d72015cc621025c265fabffc2fa55ac4821d79f": { + "received": [ + { + "type": "eth", + "value": "5000000000000000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "3644653724972865" + } + ] + }, + "0x12a39672ae8ae8e87e12a5de53c34690d830365c": { + "received": [ + { + "type": "eth", + "value": "3644653724972865" + } + ], + "sent": [] + } + }, + "data": "0x70641a220000000000000000000000005d72015cc621025c265fabffc2fa55ac4821d79f0000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x08190d3b85fc58e23e82b35d0f92e116b99f29c511484b244fa2e58117938f37", + "type": "ERC4337", + "bundler": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "benficiary": "0x12a39672ae8ae8e87e12a5de53c34690d830365c", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + } + ], + "contractsCreated": [], + "enrichedParties": { + "0x12a39672ae8ae8e87e12a5de53c34690d830365c": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x2991c3845396c9f1d262b2ca0674111a59e2c90a": [ + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5147ce3947a407c95687131be01a2b8d55fd0a40": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x228e505d1f21948968fb52794ea823f65053a294": [ + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5d72015cc621025c265fabffc2fa55ac4821d79f": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0000000000000000000000000000000000000000": [ + { + "chainId": 11155111, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 10, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/contextualizers/test/transactions/erc4337-multiple-ops-0xc7d49ad1.json b/src/contextualizers/test/transactions/erc4337-multiple-ops-0xc7d49ad1.json new file mode 100644 index 00000000..1281a526 --- /dev/null +++ b/src/contextualizers/test/transactions/erc4337-multiple-ops-0xc7d49ad1.json @@ -0,0 +1,3922 @@ +{ + "_id": "65ebdf2a55ed79213218892e", + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "from": "0x13284299074631de638be076a5aaf73b1d471afd", + "gas": 1307961, + "gasPrice": "46708147207", + "maxPriorityFeePerGas": "100000000", + "maxFeePerGas": "70163099769", + "hash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "input": "0x1fad948c000000000000000000000000000000000000000000000000000000000000004000000000000000000000000013284299074631de638be076a5aaf73b1d471afd0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415b699e5b9347b5d6313553b5cfcbfea209526c637115b9302f7cb64782c7189d1cad82ef4d53b7f08d8e2f7a5652d436e90a51dfc0187a8f54841e99d4cf353e1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4b61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415ff9a3a0f2457a8ebeec5064ffb98e2f35eb32bb9f5df4c031d49abce5db25073e07348acf2c643b60974079dfa2d0b655b06f4dea5bba5cd8f0b9f16f3d1a6e1c00000000000000000000000000000000000000000000000000000000000000", + "nonce": 16, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 182, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 1, + "v": "0x0", + "r": "0x4626aa723a73df588b4e6750244a441f5e553d812fdad33cd30ac6c095cb8ccc", + "s": "0x214241af3adc2eff7eba09af6d20a26896814aec4b05e50b87edf2a04dbe900e", + "receipt": { + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "contractAddress": null, + "cumulativeGasUsed": 16169662, + "effectiveGasPrice": 46708147207, + "from": "0x13284299074631de638be076a5aaf73b1d471afd", + "gasUsed": 242123, + "logsBloom": "0x0020000002000400000000208000000000080000100200000001000000000000008800000000000000020001000001000010000000000000000002000020040000000000000000000800000804000020000200000000000000000000000000000000000008000000000000000000000000000000000000000000001000008000000000000000000000400000000400000000000001000088000000400010020002000000000020000040008000000000000010000000000000002a000000000000000002000000000001000000000000002000000000001400000000000020000010000000000000000000000000000000000000000000000000000012000000", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "type": "0x2", + "logs": [ + { + "_id": "65ebdf2a55ed79213218858f", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 442, + "removed": false, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ebdf2a55ed792132188590", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 443, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "_id": "65ebdf2a55ed792132188591", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000131f3579128659000000000000000000000000000000000000000000000000000000000001b99f", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 444, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "4" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "5382339082487385" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "113055" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "_id": "65ebdf2a55ed792132188592", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 445, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "_id": "65ebdf2a55ed792132188593", + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 446, + "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": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "540705900" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188594", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x00000000000000000000000000000000000000000000000000000a6cdb013da800000000000000000000000000000000000000000000000000000a6c711f2623", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 447, + "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": "11462647037352" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "11460870612515" + } + ] + }, + "topic0": "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + }, + { + "_id": "65ebdf2a55ed792132188595", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 448, + "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": "542391294" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "540705900" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + } + ] + }, + "topic0": "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "topic1": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188596", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000001e51052974da1f000000000000000000000000000000000000000000000000000000000002bc29", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 449, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "5" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "8533331913529887" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "179241" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + } + ] + }, + "decoded": null, + "assetTransfers": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "value": "542391294", + "type": "erc20" + }, + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa", + "value": "540705900", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "type": "eth", + "value": "13915670996017272" + } + ], + "delegateCalls": [ + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x55b20", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006009bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415b699e5b9347b5d6313553b5cfcbfea209526c637115b9302f7cb64782c7189d1cad82ef4d53b7f08d8e2f7a5652d436e90a51dfc0187a8f54841e99d4cf353e1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b81", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56c49", + "input": "0x3a871cdd00000000000000000000000000000000000000000000000000000000000000606cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4b61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415ff9a3a0f2457a8ebeec5064ffb98e2f35eb32bb9f5df4c031d49abce5db25073e07348acf2c643b60974079dfa2d0b655b06f4dea5bba5cd8f0b9f16f3d1a6e1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x13b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cf6", + "input": "0xb61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe00000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x6312", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 4, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x5173a", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x369a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 4, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cd3", + "input": "0xb61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b7a5", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 5, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x4f377", + "input": "0x23b872dd00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd440000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x419d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3c3bb", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000a6cdb013da8" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 2, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x13284299074631de638be076a5aaf73b1d471afd", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "0x8abb13360b87be5eeb1b98647a016add927a136c", + "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "0xdac17f958d2ee523a2206206994597c13d831ec7", + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x13284299074631de638be076a5aaf73b1d471afd", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x095ea7b3" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x095ea7b3" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "sigHash": "0x38ed1739" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x0902f1ac" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x23b872dd" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x23b872dd" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x022c0d9f" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x70a08231" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x70a08231" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0x70a08231" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "sigHash": "0x" + } + ], + "timestamp": 1685986787, + "baseFeePerGas": 46608147207, + "transactionFee": "11309116726200461", + "logs": [ + { + "_id": "65ebdf2a55ed79213218858f", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 442, + "removed": false, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ebdf2a55ed792132188590", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 443, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "_id": "65ebdf2a55ed792132188591", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000131f3579128659000000000000000000000000000000000000000000000000000000000001b99f", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 444, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "4" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "5382339082487385" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "113055" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "_id": "65ebdf2a55ed792132188592", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 445, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "_id": "65ebdf2a55ed792132188593", + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 446, + "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": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "540705900" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188594", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x00000000000000000000000000000000000000000000000000000a6cdb013da800000000000000000000000000000000000000000000000000000a6c711f2623", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 447, + "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": "11462647037352" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "11460870612515" + } + ] + }, + "topic0": "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + }, + { + "_id": "65ebdf2a55ed792132188595", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 448, + "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": "542391294" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "540705900" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + } + ] + }, + "topic0": "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "topic1": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188596", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000001e51052974da1f000000000000000000000000000000000000000000000000000000000002bc29", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 449, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "5" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "8533331913529887" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "179241" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + } + ], + "netAssetTransfers": { + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44": { + "received": [], + "sent": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ] + }, + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f": { + "received": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ], + "sent": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ] + }, + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa": { + "received": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "13915670996017272" + } + ] + }, + "0x13284299074631de638be076a5aaf73b1d471afd": { + "received": [ + { + "type": "eth", + "value": "13915670996017272" + } + ], + "sent": [] + } + }, + "pseudotransactions": [ + { + "_id": "65ebdf2a55ed79213218892e", + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "gas": 1307961, + "gasPrice": "46708147207", + "maxPriorityFeePerGas": "1000000000", + "maxFeePerGas": "100000000000", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe", + "nonce": 16, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "transactionIndex": 182, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 1, + "v": "0x0", + "r": "0x4626aa723a73df588b4e6750244a441f5e553d812fdad33cd30ac6c095cb8ccc", + "s": "0x214241af3adc2eff7eba09af6d20a26896814aec4b05e50b87edf2a04dbe900e", + "decoded": null, + "assetTransfers": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "value": "542391294", + "type": "erc20" + }, + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa", + "value": "540705900", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "type": "eth", + "value": "13915670996017272" + } + ], + "delegateCalls": [ + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x55b20", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006009bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415b699e5b9347b5d6313553b5cfcbfea209526c637115b9302f7cb64782c7189d1cad82ef4d53b7f08d8e2f7a5652d436e90a51dfc0187a8f54841e99d4cf353e1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b81", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56c49", + "input": "0x3a871cdd00000000000000000000000000000000000000000000000000000000000000606cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4b61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415ff9a3a0f2457a8ebeec5064ffb98e2f35eb32bb9f5df4c031d49abce5db25073e07348acf2c643b60974079dfa2d0b655b06f4dea5bba5cd8f0b9f16f3d1a6e1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x13b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cf6", + "input": "0xb61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe00000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x6312", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 4, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x5173a", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x369a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 4, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cd3", + "input": "0xb61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b7a5", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 5, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x4f377", + "input": "0x23b872dd00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd440000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x419d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3c3bb", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000a6cdb013da8" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 2, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x13284299074631de638be076a5aaf73b1d471afd", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "0x8abb13360b87be5eeb1b98647a016add927a136c", + "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "0xdac17f958d2ee523a2206206994597c13d831ec7", + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x13284299074631de638be076a5aaf73b1d471afd", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x095ea7b3" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x095ea7b3" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "sigHash": "0x38ed1739" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x0902f1ac" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x23b872dd" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x23b872dd" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x022c0d9f" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x70a08231" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x70a08231" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0x70a08231" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "sigHash": "0x" + } + ], + "timestamp": 1685986787, + "baseFeePerGas": 46608147207, + "transactionFee": "11309116726200461", + "context": "INTERACTED_WITH", + "logs": [ + { + "_id": "65ebdf2a55ed79213218858f", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 442, + "removed": false, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ebdf2a55ed792132188590", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 443, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "_id": "65ebdf2a55ed792132188591", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000131f3579128659000000000000000000000000000000000000000000000000000000000001b99f", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 444, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "4" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "5382339082487385" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "113055" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "_id": "65ebdf2a55ed792132188592", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 445, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "_id": "65ebdf2a55ed792132188593", + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 446, + "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": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "540705900" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188594", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x00000000000000000000000000000000000000000000000000000a6cdb013da800000000000000000000000000000000000000000000000000000a6c711f2623", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 447, + "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": "11462647037352" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "11460870612515" + } + ] + }, + "topic0": "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + }, + { + "_id": "65ebdf2a55ed792132188595", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 448, + "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": "542391294" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "540705900" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + } + ] + }, + "topic0": "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "topic1": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188596", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000001e51052974da1f000000000000000000000000000000000000000000000000000000000002bc29", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 449, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "5" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "8533331913529887" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "179241" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + } + ], + "netAssetTransfers": { + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44": { + "received": [], + "sent": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ] + }, + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f": { + "received": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ], + "sent": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ] + }, + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa": { + "received": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "13915670996017272" + } + ] + }, + "0x13284299074631de638be076a5aaf73b1d471afd": { + "received": [ + { + "type": "eth", + "value": "13915670996017272" + } + ], + "sent": [] + } + }, + "data": "0xb61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe00000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "type": "ERC4337", + "bundler": "0x13284299074631de638be076a5aaf73b1d471afd", + "benficiary": "0x13284299074631de638be076a5aaf73b1d471afd", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + }, + { + "_id": "65ebdf2a55ed79213218892e", + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "gas": 1307961, + "gasPrice": "46708147207", + "maxPriorityFeePerGas": "1000000000", + "maxFeePerGas": "100000000000", + "input": "0x38ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "nonce": 16, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "transactionIndex": 182, + "value": "0", + "type": 2, + "accessList": [], + "chainId": 1, + "v": "0x0", + "r": "0x4626aa723a73df588b4e6750244a441f5e553d812fdad33cd30ac6c095cb8ccc", + "s": "0x214241af3adc2eff7eba09af6d20a26896814aec4b05e50b87edf2a04dbe900e", + "decoded": null, + "assetTransfers": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "value": "542391294", + "type": "erc20" + }, + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa", + "value": "540705900", + "type": "erc20" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "type": "eth", + "value": "13915670996017272" + } + ], + "delegateCalls": [ + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x55b20", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006009bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4b61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415b699e5b9347b5d6313553b5cfcbfea209526c637115b9302f7cb64782c7189d1cad82ef4d53b7f08d8e2f7a5652d436e90a51dfc0187a8f54841e99d4cf353e1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b81", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56c49", + "input": "0x3a871cdd00000000000000000000000000000000000000000000000000000000000000606cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000005847c000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a4b61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000140b55dcdcf9aa7146cef45a7eaeebcd500e20e08500000000000000000000000000000000000000000000000000000000000000000000000000000000000000415ff9a3a0f2457a8ebeec5064ffb98e2f35eb32bb9f5df4c031d49abce5db25073e07348acf2c643b60974079dfa2d0b655b06f4dea5bba5cd8f0b9f16f3d1a6e1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x13b1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cf6", + "input": "0xb61d27f6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe00000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x6312", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 4, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x5173a", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x369a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 4, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "callType": "delegatecall", + "gas": "0x56cd3", + "input": "0xb61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x1b7a5", + "output": "0x" + }, + "subtraces": 1, + "traceAddress": [ + 5, + 0, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x4f377", + "input": "0x23b872dd00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd440000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f0000000000000000000000000000000000000000000000000000000020543bfe", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x419d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + }, + { + "action": { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "callType": "delegatecall", + "gas": "0x3c3bb", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "blockNumber": 17415848, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000a6cdb013da8" + }, + "subtraces": 0, + "traceAddress": [ + 5, + 0, + 0, + 0, + 2, + 1, + 0 + ], + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionPosition": 182, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x13284299074631de638be076a5aaf73b1d471afd", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "0x8abb13360b87be5eeb1b98647a016add927a136c", + "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "0xdac17f958d2ee523a2206206994597c13d831ec7", + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x13284299074631de638be076a5aaf73b1d471afd", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085", + "sigHash": "0xf465c77e" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x095ea7b3" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x095ea7b3" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x8abb13360b87be5eeb1b98647a016add927a136c", + "sigHash": "0xb61d27f6" + }, + { + "from": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "sigHash": "0x38ed1739" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x0902f1ac" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x23b872dd" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x23b872dd" + }, + { + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "sigHash": "0x022c0d9f" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0xa9059cbb" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "sigHash": "0x70a08231" + }, + { + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "sigHash": "0x70a08231" + }, + { + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "sigHash": "0x70a08231" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x13284299074631de638be076a5aaf73b1d471afd", + "sigHash": "0x" + } + ], + "timestamp": 1685986787, + "baseFeePerGas": 46608147207, + "transactionFee": "11309116726200461", + "context": "INTERACTED_WITH", + "logs": [ + { + "_id": "65ebdf2a55ed79213218858f", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 442, + "removed": false, + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "_id": "65ebdf2a55ed792132188590", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 443, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address", + "decoded": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "_id": "65ebdf2a55ed792132188591", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000131f3579128659000000000000000000000000000000000000000000000000000000000001b99f", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 444, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "4" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "5382339082487385" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "113055" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x09bab722de456e18981820e62fa8b63a9f9fbb2931a65de12153f039d2e238c1", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "_id": "65ebdf2a55ed792132188592", + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 445, + "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": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "542391294" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic2": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "_id": "65ebdf2a55ed792132188593", + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 446, + "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": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f" + }, + { + "indexed": true, + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "indexed": false, + "name": "value", + "type": "uint256", + "decoded": "540705900" + } + ] + }, + "topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "topic1": "0x0000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188594", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x00000000000000000000000000000000000000000000000000000a6cdb013da800000000000000000000000000000000000000000000000000000a6c711f2623", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 447, + "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": "11462647037352" + }, + { + "indexed": false, + "internalType": "uint112", + "name": "reserve1", + "type": "uint112", + "decoded": "11460870612515" + } + ] + }, + "topic0": "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + }, + { + "_id": "65ebdf2a55ed792132188595", + "address": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "data": "0x0000000000000000000000000000000000000000000000000000000020543bfe0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000203a846c", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 448, + "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": "542391294" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1In", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount0Out", + "type": "uint256", + "decoded": "0" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount1Out", + "type": "uint256", + "decoded": "540705900" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + } + ] + }, + "topic0": "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "topic1": "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "topic2": "0x0000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa" + }, + { + "_id": "65ebdf2a55ed792132188596", + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "data": "0x00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000001e51052974da1f000000000000000000000000000000000000000000000000000000000002bc29", + "blockNumber": 17415848, + "transactionHash": "0xc7d4c93fefb9f56383d9a9e4cbafa53696610b777ac5797f751652db928b9ad1", + "transactionIndex": 182, + "blockHash": "0x514c24d777bf457e3c7dce3b08367345e62240851a8565b297106d7febb1b6fe", + "logIndex": 449, + "removed": false, + "decoded": { + "signature": "UserOperationEvent(bytes32,address,address,uint256,bool,uint256,uint256)", + "signature_with_arg_names": "UserOperationEvent(bytes32 indexed userOpHash,address indexed sender,address indexed paymaster,uint256 nonce,bool success,uint256 actualGasCost,uint256 actualGasUsed)", + "name": "UserOperationEvent", + "decoded": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "userOpHash", + "type": "bytes32", + "decoded": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x67928c65c2891602c1618858fdd1a43f3e0fdd44" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "nonce", + "type": "uint256", + "decoded": "5" + }, + { + "indexed": false, + "internalType": "bool", + "name": "success", + "type": "bool", + "decoded": true + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasCost", + "type": "uint256", + "decoded": "8533331913529887" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "179241" + } + ] + }, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "topic2": "0x00000000000000000000000067928c65c2891602c1618858fdd1a43f3e0fdd44", + "topic3": "0x0000000000000000000000000b55dcdcf9aa7146cef45a7eaeebcd500e20e085" + } + ], + "netAssetTransfers": { + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44": { + "received": [], + "sent": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ] + }, + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f": { + "received": [ + { + "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "type": "erc20", + "value": "542391294" + } + ], + "sent": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ] + }, + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa": { + "received": [ + { + "contract": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "type": "erc20", + "value": "540705900" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "13915670996017272" + } + ] + }, + "0x13284299074631de638be076a5aaf73b1d471afd": { + "received": [ + { + "type": "eth", + "value": "13915670996017272" + } + ], + "sent": [] + } + }, + "data": "0xb61d27f60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010438ed17390000000000000000000000000000000000000000000000000000000020543bfe000000000000000000000000000000000000000000000000000000001f13ccbe00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000002bcabb5a00c12ffee092e612e8b1ee40f3a1cafa000000000000000000000000000000000000000000000000000000006516a4ea0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x6cc375eab2d3afdb7d7311931c6cc6d59fdc18af76e7830447124a6aeb06b810", + "type": "ERC4337", + "bundler": "0x13284299074631de638be076a5aaf73b1d471afd", + "benficiary": "0x13284299074631de638be076a5aaf73b1d471afd", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + } + ], + "contractsCreated": [], + "enrichedParties": { + "0x13284299074631de638be076a5aaf73b1d471afd": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x67928c65c2891602c1618858fdd1a43f3e0fdd44": [ + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x8abb13360b87be5eeb1b98647a016add927a136c": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 8453, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155111, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 59144, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 424, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 252, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 901, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 34443, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 58008, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84531, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 84532, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 11155420, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 999999999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x0b55dcdcf9aa7146cef45a7eaeebcd500e20e085": [ + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": [ + { + "chainId": 1, + "label": { + "public": "USD Coin" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 6, + "symbol": "USDC", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf": [ + { + "chainId": 1, + "label": { + "public": "USDC Logic Contract" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": "0", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x7a250d5630b4cf539739df2c5dacb4c659f2488d": [ + { + "chainId": 10, + "label": { + "public": "Uniswap V2: Router 2" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 1, + "label": { + "public": "Uniswap V2: Router 2" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + }, + { + "chainId": 5, + "label": { + "public": "Uniswap V2: Router 2" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f": [ + { + "chainId": 1, + "label": { + "public": "Uniswap V2" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 18, + "symbol": "UNI-V2", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xdac17f958d2ee523a2206206994597c13d831ec7": [ + { + "chainId": 1, + "label": { + "public": "Tether: USDT Stablecoin" + }, + "isContract": true, + "tokenStandard": "erc20", + "imgUrl": "", + "decimals": 6, + "symbol": "USDT", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x2bcabb5a00c12ffee092e612e8b1ee40f3a1cafa": [ + { + "chainId": 1, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ] + }, + "assetsEnriched": {} +} \ No newline at end of file diff --git a/src/types/contextAction/heuristicContextAction.ts b/src/types/contextAction/heuristicContextAction.ts index f72179fe..f15fa3b4 100644 --- a/src/types/contextAction/heuristicContextAction.ts +++ b/src/types/contextAction/heuristicContextAction.ts @@ -13,7 +13,8 @@ export type HeuristicContextAction = | HeuristicContextActionEnum.INTERACTED_WITH // Not yet used in this repo | HeuristicContextActionEnum.CALLED // Not yet used in this repo | HeuristicContextActionEnum.SENT_MESSAGE - | HeuristicContextActionEnum.CANCELED_A_PENDING_TRANSACTION; + | HeuristicContextActionEnum.CANCELED_A_PENDING_TRANSACTION + | HeuristicContextActionEnum.SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE; export enum HeuristicContextActionEnum { BOUGHT = 'BOUGHT', @@ -31,4 +32,5 @@ export enum HeuristicContextActionEnum { CALLED = 'CALLED', // Not yet used in this repo SENT_MESSAGE = 'SENT_MESSAGE', CANCELED_A_PENDING_TRANSACTION = 'CANCELED_A_PENDING_TRANSACTION', + SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE = 'SUBMITTED_ACCOUNT_ABSTRACTION_BUNDLE', } diff --git a/src/types/transaction.ts b/src/types/transaction.ts index 2010569e..5b05c356 100644 --- a/src/types/transaction.ts +++ b/src/types/transaction.ts @@ -78,7 +78,7 @@ export type TransactionContextType = { // MongoDB document export type Transaction = BaseTransaction & { assetTransfers?: AssetTransfer[]; - pseudotransactions?: PseudoTransaction[]; + pseudotransactions?: (Transaction & { meta: { key: string } })[]; sigHash: string; internalSigHashes: SigHash[]; parties: string[];