diff --git a/src/contextualizers/protocol/highlight/highlight.spec.ts b/src/contextualizers/protocol/highlight/highlight.spec.ts index 1aaf5375..58ae94d8 100644 --- a/src/contextualizers/protocol/highlight/highlight.spec.ts +++ b/src/contextualizers/protocol/highlight/highlight.spec.ts @@ -90,6 +90,21 @@ describe('Highlight', () => { expect(containsBigInt(highlightMultipleMint1.context)).toBe(false); }); + it('Should have protocol-specific context action', () => { + const highlight1 = detect( + highlightErc20_0x1f0c411b as unknown as Transaction, + ); + expect(highlight1).toBe(true); + + const contextualized = generate( + highlightErc20_0x1f0c411b as unknown as Transaction, + ); + if (!contextualized.context) { + throw new Error('Context is undefined'); + } + expect(contextualized['context']['actions']).toContain('HIGHLIGHT.MINTED'); + }); + it('Should not detect as highlight', () => { const highlightMintWithRewards1 = detect( catchall0xc35c01ac as unknown as Transaction, diff --git a/src/contextualizers/protocol/highlight/highlight.ts b/src/contextualizers/protocol/highlight/highlight.ts index fc09d90f..1a2a1825 100644 --- a/src/contextualizers/protocol/highlight/highlight.ts +++ b/src/contextualizers/protocol/highlight/highlight.ts @@ -44,6 +44,12 @@ export const generate = (transaction: Transaction): Transaction => { transaction.context.summaries.category = 'PROTOCOL_1'; transaction.context.summaries.en.title = 'Highlight'; + // update context action list + transaction.context.actions = [ + `${Protocols.HIGHLIGHT}.${HighlightContextActionEnum.MINTED}`, + ...(transaction.context.actions || []), + ]; + // check if mint with rewards const logs = transaction.logs ?? []; let decodedLog; @@ -62,11 +68,6 @@ export const generate = (transaction: Transaction): Transaction => { const mintReferralAmount = decodedLog.args['amount'].toString(); const mintReferralCurrency = decodedLog.args['currency'].toLowerCase(); - transaction.context.actions = [ - `${Protocols.HIGHLIGHT}.${HighlightContextActionEnum.MINTED}`, - ...(transaction.context.actions || []), - ]; - transaction.context.variables = { ...transaction.context.variables, vectorId: { diff --git a/src/contextualizers/protocol/rodeo/rodeo.spec.ts b/src/contextualizers/protocol/rodeo/rodeo.spec.ts index b69d4a1a..8d21c897 100644 --- a/src/contextualizers/protocol/rodeo/rodeo.spec.ts +++ b/src/contextualizers/protocol/rodeo/rodeo.spec.ts @@ -27,4 +27,15 @@ describe('Rodeo Mint', () => { ); expect(zoraMintWithRewards1).toBe(false); }); + + it('Should have protocol-specific context action', () => { + const rodeo1 = detect(rodeo0x3c346a6d as unknown as Transaction); + expect(rodeo1).toBe(true); + + const contextualized = generate(rodeo0x3c346a6d as unknown as Transaction); + if (!contextualized.context) { + throw new Error('Context is undefined'); + } + expect(contextualized['context']['actions']).toContain('RODEO.MINTED'); + }); }); diff --git a/src/contextualizers/protocol/rodeo/rodeo.ts b/src/contextualizers/protocol/rodeo/rodeo.ts index 3f6d8a75..9a35ad1e 100644 --- a/src/contextualizers/protocol/rodeo/rodeo.ts +++ b/src/contextualizers/protocol/rodeo/rodeo.ts @@ -47,6 +47,12 @@ export const generate = (transaction: Transaction): Transaction => { transaction.context.summaries.category = 'PROTOCOL_1'; transaction.context.summaries.en.title = 'Rodeo'; + // update context action list + transaction.context.actions = [ + `${Protocols.RODEO}.${RodeoContextActionEnum.MINTED}`, + ...(transaction.context.actions || []), + ]; + const logs = transaction.logs && transaction.logs.length > 0 ? transaction.logs : []; const mintFromFixedPriceSaleLog = findMintFromFixedPriceSaleLog(logs); @@ -68,10 +74,6 @@ export const generate = (transaction: Transaction): Transaction => { ) return transaction; - transaction.context.actions = [ - `${Protocols.RODEO}.${RodeoContextActionEnum.MINTED}`, - ...(transaction.context.actions || []), - ]; transaction.context.variables = { ...transaction.context.variables, numOfEth: { diff --git a/src/contextualizers/protocol/zoraCreator/zoraCreator.spec.ts b/src/contextualizers/protocol/zoraCreator/zoraCreator.spec.ts index eb1d36e6..f23238b2 100644 --- a/src/contextualizers/protocol/zoraCreator/zoraCreator.spec.ts +++ b/src/contextualizers/protocol/zoraCreator/zoraCreator.spec.ts @@ -3,6 +3,7 @@ import { detect, generate } from './zoraCreator'; import { containsBigInt, contextSummary } from '../../../helpers/utils'; import mintWithRewards0x6ccb3140 from '../../test/transactions/mintWithRewards-0x6ccb3140.json'; import zoraMintWithRewards0x837a9a69 from '../../test/transactions/zoraMintWithRewards-0x837a9a69.json'; +import zoraProtocolSpecific0xf811acb9 from '../../test/transactions/zoraProtocolSpecific-0xf811acb9.json'; import catchall0xc35c01ac from '../../test/transactions/catchall-0xc35c01ac.json'; describe('Zora Mint', () => { @@ -52,4 +53,19 @@ describe('Zora Mint', () => { ); expect(zoraMintWithRewards1).toBe(false); }); + + it('Should have protocol-specific context action even with early return', () => { + const zoraProtocolSpecific1 = detect( + zoraProtocolSpecific0xf811acb9 as unknown as Transaction, + ); + expect(zoraProtocolSpecific1).toBe(true); + + const contextualized = generate( + zoraProtocolSpecific0xf811acb9 as unknown as Transaction, + ); + if (!contextualized.context) { + throw new Error('Context is undefined'); + } + expect(contextualized['context']['actions']).toContain('ZORA.MINTED'); + }); }); diff --git a/src/contextualizers/protocol/zoraCreator/zoraCreator.ts b/src/contextualizers/protocol/zoraCreator/zoraCreator.ts index 0f8fdcd5..a309d391 100644 --- a/src/contextualizers/protocol/zoraCreator/zoraCreator.ts +++ b/src/contextualizers/protocol/zoraCreator/zoraCreator.ts @@ -50,6 +50,12 @@ export const generate = (transaction: Transaction): Transaction => { transaction.context.summaries.category = 'PROTOCOL_1'; transaction.context.summaries.en.title = 'Zora'; + // update context action list + transaction.context.actions = [ + `${Protocols.ZORA}.${ZoraContextActionEnum.MINTED}`, + ...(transaction.context.actions || []), + ]; + const logs = transaction.logs && transaction.logs.length > 0 ? transaction.logs : []; const rewardsDepositLog = logs.find( @@ -73,10 +79,6 @@ export const generate = (transaction: Transaction): Transaction => { ) return transaction; - transaction.context.actions = [ - `${Protocols.ZORA}.${ZoraContextActionEnum.MINTED}`, - ...(transaction.context.actions || []), - ]; transaction.context.variables = { ...transaction.context.variables, numOfEth: { diff --git a/src/contextualizers/test/transactions/zoraProtocolSpecific-0xf811acb9.json b/src/contextualizers/test/transactions/zoraProtocolSpecific-0xf811acb9.json new file mode 100644 index 00000000..88dd31f4 --- /dev/null +++ b/src/contextualizers/test/transactions/zoraProtocolSpecific-0xf811acb9.json @@ -0,0 +1,9778 @@ +{ + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "gas": 512242, + "gasPrice": "1000252", + "hash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "input": "0x1fad948c00000000000000000000000000000000000000000000000000000000000000400000000000000000000000004337002c5702ce424cb62a56ca038e31e1d4a93d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e00000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321000000000000000000000000000000000000000000000000000000006676167f000000000000000000000000000000000000000000000000000000000000000057fd683e2f07b1ca4ca0501ff4900f2108356261b710262616fce1bb36c571b26c0802fa95b7f657bb90d672a2748d7cd1d2468d744dcdda4bd20e0fe30952821c000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004173db6f37a6d26d30267a0901a50643ab2ab359b50ad7c6d1c0798351a2eb601711361ff71ed5af468cd81353b9e0b2ad00c5f0da6a5981aaaaccf89310c6c5a71c00000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "receipt": { + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "contractAddress": null, + "cumulativeGasUsed": 1501311, + "effectiveGasPrice": 1000252, + "from": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "gasUsed": 292710, + "l1Fee": "0xa1d9b7f6c8", + "l1GasPrice": "0x93b7b31d", + "l1GasUsed": "0x36c8", + "logsBloom": "0x000800000000000000000040000000000000004000000000000000000000000000080000000000000002800100000000001000000000008001000200100420000040000200000008000000800000000000000000000480000000000000000000800040000a000000000000000000080000000000000000000000000000000000000100080000000000000300000000000000000000000000000000000000100000000104000000000040000000020080000000000100000000000200a000000000000000000440000001009040000000000000000008080000000000000060000080000000000000000000080000000000000000000000000000080000000000", + "status": true, + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "type": "0x2", + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x", + "logIndex": 105, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_0c6f809a", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 7777777, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000001a33ad9874c00000000000000000000000000000000000000000000000000000000001b77bd", + "logIndex": 110, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_80966858", + "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": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + }, + { + "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": "1800578631500" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "1800125" + } + ] + }, + "chainId": 7777777, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + } + ] + }, + "decoded": null, + "pseudoTransactions": [ + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + }, + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "777000000000000", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + } + ], + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "type": "eth", + "value": "1800578631500" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x1bbf3", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca400000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e00000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321000000000000000000000000000000000000000000000000000000006676167f000000000000000000000000000000000000000000000000000000000000000057fd683e2f07b1ca4ca0501ff4900f2108356261b710262616fce1bb36c571b26c0802fa95b7f657bb90d672a2748d7cd1d2468d744dcdda4bd20e0fe30952821c000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004173db6f37a6d26d30267a0901a50643ab2ab359b50ad7c6d1c0798351a2eb601711361ff71ed5af468cd81353b9e0b2ad00c5f0da6a5981aaaaccf89310c6c5a71c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2867", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x0000000000000000000000000000000000000001", + "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x31a880fd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "sigHash": "0xf465c77e" + }, + { + "from": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xc3e0f41a" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0x049104e5" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0xd4ddce8a" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "sigHash": "0xfaa3516f" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "sigHash": "0x6890e5b3" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "sigHash": "0x" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "sigHash": "0x" + } + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "292783762920", + "contextActions": [ + "MINTED", + "HEURISTIC.MINTED" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x", + "logIndex": 105, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_0c6f809a", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 7777777, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000001a33ad9874c00000000000000000000000000000000000000000000000000000000001b77bd", + "logIndex": 110, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_80966858", + "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": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + }, + { + "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": "1800578631500" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "1800125" + } + ] + }, + "chainId": 7777777, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + } + ], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0x7777777d57c1c6e472fa379b7b3b6c6ba3835073:1/image/v1?imageSize=small" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0xab554a97c9c042a1469d446beae410dcf38ed7ed:1/image/v1?imageSize=small" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "1800578631500" + } + ] + }, + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d": { + "received": [ + { + "type": "eth", + "value": "1800578631500" + } + ], + "sent": [] + } + }, + "pseudotransactions": [ + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "decoded": null, + "pseudoTransactions": [ + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + }, + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "777000000000000", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + } + ], + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "type": "eth", + "value": "1800578631500" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x1bbf3", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca400000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e00000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321000000000000000000000000000000000000000000000000000000006676167f000000000000000000000000000000000000000000000000000000000000000057fd683e2f07b1ca4ca0501ff4900f2108356261b710262616fce1bb36c571b26c0802fa95b7f657bb90d672a2748d7cd1d2468d744dcdda4bd20e0fe30952821c000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004173db6f37a6d26d30267a0901a50643ab2ab359b50ad7c6d1c0798351a2eb601711361ff71ed5af468cd81353b9e0b2ad00c5f0da6a5981aaaaccf89310c6c5a71c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2867", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x0000000000000000000000000000000000000001", + "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x31a880fd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "sigHash": "0xf465c77e" + }, + { + "from": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xc3e0f41a" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0x049104e5" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0xd4ddce8a" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "sigHash": "0xfaa3516f" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "sigHash": "0x6890e5b3" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "sigHash": "0x" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "sigHash": "0x" + } + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "292783762920", + "context": "MINTED", + "contextActions": [ + "MINTED", + "HEURISTIC.MINTED" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x", + "logIndex": 105, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_0c6f809a", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 7777777, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000001a33ad9874c00000000000000000000000000000000000000000000000000000000001b77bd", + "logIndex": 110, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_80966858", + "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": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + }, + { + "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": "1800578631500" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "1800125" + } + ] + }, + "chainId": 7777777, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + } + ], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0x7777777d57c1c6e472fa379b7b3b6c6ba3835073:1/image/v1?imageSize=small" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0xab554a97c9c042a1469d446beae410dcf38ed7ed:1/image/v1?imageSize=small" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "1800578631500" + } + ] + }, + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d": { + "received": [ + { + "type": "eth", + "value": "1800578631500" + } + ], + "sent": [] + } + }, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + }, + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "777000000000000", + "yParity": "0x1", + "decoded": null, + "pseudoTransactions": [ + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "0", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + }, + { + "accessList": [], + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "chainId": 7777777, + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": 512242, + "gasPrice": "1000252", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "maxFeePerGas": "1000302", + "maxPriorityFeePerGas": "1000000", + "nonce": 49, + "r": "0x6662ccfbad9458348f0ed60f7bd94fffca63a5cc45fcdcd4d756eeaffad13b04", + "s": "0xa374167640deb56c2f9b192f1541220f0ea511c1c93c7fd71ee14fd85a95d8", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "transactionIndex": 16, + "type": 2, + "v": "0x1", + "value": "777000000000000", + "yParity": "0x1", + "decoded": null, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [ + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x60a33", + "input": "0x1d73275600000000000000000000000000000000000000000000000000000000000001c00000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d1420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa32100000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4000000000000000000000000000000000000000000000000000001f84b6c689a00000000000000000000000000000000000000000000000000000000000004c0000000000000000000000000000000000000000000000000000000000018a69600000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2e7bc", + "output": "0x000000000000000000000000000000000000000000000000000001a33ad9874c" + }, + "subtraces": 1, + "traceAddress": [ + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "gas": "0x3e65e", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2ce97", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3b437", + "input": "0x049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x6f2f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "gas": "0x33a9c", + "input": "0x", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x133", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x31a18", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x21da2", + "output": "0x0" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2c276", + "input": "0x67c9b017", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2a4f", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "staticcall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x28862", + "input": "0xd4ddce8a0000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x3ef", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x24f83", + "input": "0xfaa3516f000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b0851600000000000000000000000000000000000000000000000000012edc86dca2c0000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000648cb206f740000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d8530000000000000000000000000000000000000000000000000000662acc0c0780", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x81dc", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 1 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x1c3f7", + "input": "0x6890e5b30000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2329", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b085160000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 2 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "call", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0xf75b", + "input": "0x", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x0", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 3 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "receipt": { + "status": 1, + "logs": [ + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + } + ], + "gasUsed": 1800125, + "effectiveGasPrice": 1800578631500 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + }, + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + } + }, + "parties": [ + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "1800578631500" + } + ], + "assetTransfers": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000000", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "type": "eth", + "value": "777000000000000" + }, + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "from": "0x0000000000000000000000000000000000000000", + "to": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "tokenId": "1", + "value": "1", + "type": "erc1155" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "type": "eth", + "value": "777000000000000" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "type": "eth", + "value": "1800578631500" + } + ], + "delegateCalls": [ + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x1bbf3", + "input": "0x3a871cdd000000000000000000000000000000000000000000000000000000000000006031a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca400000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000003e65e000000000000000000000000000000000000000000000000000000000001d6e50000000000000000000000000000000000000000000000000000000000179f0e00000000000000000000000000000000000000000000000000000000000f436e00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a434fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321000000000000000000000000000000000000000000000000000000006676167f000000000000000000000000000000000000000000000000000000000000000057fd683e2f07b1ca4ca0501ff4900f2108356261b710262616fce1bb36c571b26c0802fa95b7f657bb90d672a2748d7cd1d2468d744dcdda4bd20e0fe30952821c000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004173db6f37a6d26d30267a0901a50643ab2ab359b50ad7c6d1c0798351a2eb601711361ff71ed5af468cd81353b9e0b2ad00c5f0da6a5981aaaaccf89310c6c5a71c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2867", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "traceAddress": [ + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x3d538", + "input": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x2cce6", + "output": "0x0" + }, + "subtraces": 2, + "traceAddress": [ + 2, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "gas": "0x32cd8", + "input": "0x", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x37", + "output": "0x0" + }, + "subtraces": 0, + "traceAddress": [ + 2, + 0, + 0, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "gas": "0x2fafb", + "input": "0x359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "value": "0x2c2ad68fd9000" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x20a81", + "output": "0x0" + }, + "subtraces": 4, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "gas": "0x2a51c", + "input": "0x67c9b017", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "value": "0x0" + }, + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "result": { + "gasUsed": "0x1791", + "output": "0x0000000000000000000000000000000000000000000000000002c2ad68fd9000" + }, + "subtraces": 1, + "traceAddress": [ + 2, + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionPosition": 16, + "type": "call" + } + ], + "errors": [], + "parties": [ + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "0x0000000000000000000000000000000000000001", + "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "0x66a48d99a349e228618bb68f41496923958d5543", + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "0x0000000000000000000000000000000000000000", + "0xecfc2ee50409e459c554a2b0376f882ce916d853", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc", + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1", + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1" + ], + "sigHash": "0x1fad948c", + "internalSigHashes": [ + { + "from": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1fad948c" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x3a871cdd" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0x31a880fd" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "sigHash": "0xf465c77e" + }, + { + "from": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321", + "to": "0x0000000000000000000000000000000000000001", + "sigHash": "0xc3e0f41a" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "sigHash": "0x1d732756" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x34fcd5be" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0x049104e5" + }, + { + "from": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0x000100abaad02f1cfc8bbe32bd5a564817339e72", + "sigHash": "0x" + }, + { + "from": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142", + "to": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x2c49e95303734ee3826307783d5fdd180b2131d3", + "sigHash": "0x359f1302" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x66a48d99a349e228618bb68f41496923958d5543", + "sigHash": "0x67c9b017" + }, + { + "from": "0x77777770ca269366c7208afcf36fe2c6f7f7608b", + "to": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "sigHash": "0xd4ddce8a" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "sigHash": "0xfaa3516f" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a", + "sigHash": "0x6890e5b3" + }, + { + "from": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "to": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516", + "sigHash": "0x" + }, + { + "from": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "to": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "sigHash": "0x" + } + ], + "timestamp": 1719014451, + "baseFeePerGas": 252, + "transactionFee": "292783762920", + "context": "MINTED", + "contextActions": [ + "MINTED", + "HEURISTIC.MINTED" + ], + "logs": [ + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x", + "logIndex": 105, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_0c6f809a", + "decoded": { + "signature": "BeforeExecution()", + "signature_with_arg_names": "BeforeExecution()", + "name": "BeforeExecution", + "decoded": [] + }, + "chainId": 7777777, + "topic0": "0xbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972" + }, + { + "address": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 106, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_560272e1", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x7777777f279eba3d3ad8f4e708545291a6fdba8b", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed00000000000000000000000000000000000000000000000000012edc86dca2c00000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000648cb206f7400000000000000000000000000000000000000000000000000000662acc0c0780", + "logIndex": 107, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_7a2515d7", + "decoded": { + "signature": "RewardsDeposit(address,address,address,address,address,address,uint256,uint256,uint256,uint256,uint256)", + "signature_with_arg_names": "RewardsDeposit(address indexed creator,address indexed createReferral,address indexed mintReferral,address firstMinter,address zora,address from,uint256 creatorReward,uint256 createReferralReward,uint256 mintReferralReward,uint256 firstMinterReward,uint256 zoraReward)", + "name": "RewardsDeposit", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "creator", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": true, + "internalType": "address", + "name": "createReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": true, + "internalType": "address", + "name": "mintReferral", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "firstMinter", + "type": "address", + "decoded": "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + }, + { + "indexed": false, + "internalType": "address", + "name": "zora", + "type": "address", + "decoded": "0xecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "indexed": false, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0xab554a97c9c042a1469d446beae410dcf38ed7ed" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "creatorReward", + "type": "uint256", + "decoded": "332999667000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "createReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintReferralReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "firstMinterReward", + "type": "uint256", + "decoded": "110555445000000" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "zoraReward", + "type": "uint256", + "decoded": "112333998000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0x90e8cce6b15b450d1e56e9ef986d1cd376838a90944336c02886ca12b9e6ebd7", + "topic1": "0x000000000000000000000000ee46c85f80f50cf13b40ebccc9db1ca284b08516", + "topic2": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853", + "topic3": "0x000000000000000000000000ecfc2ee50409e459c554a2b0376f882ce916d853" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", + "logIndex": 108, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_1cf20aed", + "decoded": { + "signature": "TransferSingle(address,address,address,uint256,uint256)", + "signature_with_arg_names": "TransferSingle(address indexed operator,address indexed from,address indexed to,uint256 id,uint256 value)", + "name": "TransferSingle", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "operator", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address", + "decoded": "0x0000000000000000000000000000000000000000" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address", + "decoded": "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "id", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "1" + } + ] + }, + "chainId": 7777777, + "topic0": "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topic3": "0x00000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc" + }, + { + "address": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000002c2ad68fd9000", + "logIndex": 109, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_3c544ce0", + "decoded": { + "signature": "Purchased(address,address,uint256,uint256,uint256)", + "signature_with_arg_names": "Purchased(address indexed sender,address indexed minter,uint256 indexed tokenId,uint256 quantity,uint256 value)", + "name": "Purchased", + "decoded": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address", + "decoded": "0x04e2516a2c207e84a1839755675dfd8ef6302f0a" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "tokenId", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "quantity", + "type": "uint256", + "decoded": "1" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256", + "decoded": "777000000000000" + } + ] + }, + "chainId": 7777777, + "topic0": "0xb362243af1e2070d7d5bf8d713f2e0fab64203f1b71462afbe20572909788c5e", + "topic1": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic2": "0x00000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a", + "topic3": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + { + "address": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789", + "blockHash": "0xb4557886033bd62fe993a96095140c536ac7e5b69dbba102220867743ec8289e", + "blockNumber": 16160306, + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000001a33ad9874c00000000000000000000000000000000000000000000000000000000001b77bd", + "logIndex": 110, + "removed": false, + "transactionHash": "0xf811e83079715691391eadec4beee5c03f78f2818ac049d17ce187be9b40acb9", + "transactionIndex": 16, + "id": "log_80966858", + "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": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address", + "decoded": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142" + }, + { + "indexed": true, + "internalType": "address", + "name": "paymaster", + "type": "address", + "decoded": "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + }, + { + "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": "1800578631500" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "actualGasUsed", + "type": "uint256", + "decoded": "1800125" + } + ] + }, + "chainId": 7777777, + "topic0": "0x49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f", + "topic1": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "topic2": "0x0000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d142", + "topic3": "0x000000000000000000000000e3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321" + } + ], + "netAssetTransfers": { + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": { + "received": [], + "sent": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x0000000000000000000000000000000000000000": { + "received": [ + { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0x7777777d57c1c6e472fa379b7b3b6c6ba3835073:1/image/v1?imageSize=small" + } + ], + "sent": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1" + } + ] + }, + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "777000000000000" + } + ] + }, + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": { + "received": [ + { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0xab554a97c9c042a1469d446beae410dcf38ed7ed:1/image/v1?imageSize=small" + } + ], + "sent": [] + }, + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": { + "received": [ + { + "type": "eth", + "value": "777000000000000" + } + ], + "sent": [] + }, + "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789": { + "received": [], + "sent": [ + { + "type": "eth", + "value": "1800578631500" + } + ] + }, + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d": { + "received": [ + { + "type": "eth", + "value": "1800578631500" + } + ], + "sent": [] + } + }, + "data": "0x34fcd5be00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007777777d57c1c6e472fa379b7b3b6c6ba3835073000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064049104e5000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000003a5df03dd1a001d7055284c2c2c147cbbc78d14200000000000000000000000000000000000000000000000000000000000000000000000000000000ab554a97c9c042a1469d446beae410dcf38ed7ed0000000000000000000000000000000000000000000000000002c2ad68fd900000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000184359f130200000000000000000000000004e2516a2c207e84a1839755675dfd8ef6302f0a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000017cd072cbd45031efc21da538c783e0ed3b25dcc0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "userOpHash": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "traces": [], + "receipt": { + "status": 0, + "logs": [], + "gasUsed": 0, + "effectiveGasPrice": 0 + }, + "meta": { + "key": "0x31a880fd7b8ab2169dfa40d478ff5da04b9dbbfb9090b73a825865a4667d2ca4", + "type": "ERC4337", + "bundler": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "benficiary": "0x4337002c5702ce424cb62a56ca038e31e1d4a93d", + "entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789" + } + } + ], + "contractsCreated": [], + "enrichedParties": { + "0x4337002c5702ce424cb62a56ca038e31e1d4a93d": [ + { + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x000100abaad02f1cfc8bbe32bd5a564817339e72": [ + { + "chainId": 0, + "isContract": false, + "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 + } + } + ], + "0xe3dc822d77f8ca7ac74c30b0dffea9fcdcaaa321": [ + { + "chainId": 919, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073": [ + { + "chainId": 7777777, + "label": { + "public": "Zora MINTs" + }, + "isContract": true, + "tokenStandard": "erc1155", + "imgUrl": "", + "decimals": "", + "symbol": "MINT", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xab554a97c9c042a1469d446beae410dcf38ed7ed": [ + { + "chainId": 7777777, + "label": { + "public": "to define" + }, + "isContract": true, + "tokenStandard": "erc1155", + "imgUrl": "", + "decimals": "", + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x2c49e95303734ee3826307783d5fdd180b2131d3": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x77777770ca269366c7208afcf36fe2c6f7f7608b": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x66a48d99a349e228618bb68f41496923958d5543": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x7777777f279eba3d3ad8f4e708545291a6fdba8b": [ + { + "chainId": 10, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x04e2516a2c207e84a1839755675dfd8ef6302f0a": [ + { + "chainId": 999, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "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": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": "zeitgeistmint.eth", + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": "zeitgeistmint", + "avatar": "https://i.imgur.com/TJAJxhm.gif", + "fid": 3924, + "linkedAddresses": [ + "0x00b62f2b8a1091515fef08f5a6bccb7e340faa1f", + "0xee46c85f80f50cf13b40ebccc9db1ca284b08516" + ] + } + } + ], + "0x0000000000000000000000000000000000000000": [ + { + "chainId": 11155111, + "label": { + "public": "Null: 0x000…000" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "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": 0, + "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": 0, + "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": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0xecfc2ee50409e459c554a2b0376f882ce916d853": [ + { + "chainId": 7777777, + "label": { + "public": "" + }, + "isContract": true, + "imgUrl": "", + "decimals": 0, + "symbol": "", + "ensNew": { + "handle": null, + "avatar": null + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": null, + "avatar": null, + "fid": null + } + } + ], + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc": [ + { + "chainId": 0, + "isContract": false, + "ensNew": { + "handle": "jacob.eth", + "avatar": "https://assets.airstack.xyz/image/nft/nNBFvZ6wvuIHqDzTFi5pM/pM0Q1IAUgJRNTJrw7f4s0/uHiLUBWXrMh/KHyHkXq7GckmvZjHEK1T1SdhT8bQmEecHeNYcAWhzAsepNNb34put4XgXmGEEQ5sF9iRXa0pySKdAhUT4eq1FGp6puXvv9A38RcCvkjyXjUAnuzUvH0=/medium.svg" + }, + "bns": { + "handle": null, + "avatar": null + }, + "farcaster": { + "handle": "jacob", + "avatar": "https://i.imgur.com/tt8uLVd.jpg", + "fid": 8, + "linkedAddresses": [ + "0xc6e3004b0e54a91da8d87ace80b6abc64d23e33f", + "0x17cd072cbd45031efc21da538c783e0ed3b25dcc" + ] + } + } + ] + }, + "assetsEnriched": { + "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073-1": { + "contract": "0x7777777d57c1c6e472fa379b7b3b6c6ba3835073", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0x7777777d57c1c6e472fa379b7b3b6c6ba3835073:1/image/v1?imageSize=small" + }, + "0xab554a97c9c042a1469d446beae410dcf38ed7ed-1": { + "contract": "0xab554a97c9c042a1469d446beae410dcf38ed7ed", + "tokenId": "1", + "type": "erc1155", + "value": "1", + "imageUrl": "https://api-zora.reservoir.tools/redirect/tokens/0xab554a97c9c042a1469d446beae410dcf38ed7ed:1/image/v1?imageSize=small" + } + } +} \ No newline at end of file