diff --git a/README.md b/README.md index c037718..2c353a3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # @missionsquad/mcp-evm -MCP server for Ethereum Virtual Machine (EVM) RPC APIs, powered by `evmdecoder` and `@missionsquad/fastmcp`. +MCP server for Ethereum Virtual Machine (EVM) RPC APIs, powered by `evmdecoder`. This server exposes curated EVM read/decoding tools for LLM clients while keeping RPC endpoints hidden from tool schemas. @@ -41,6 +41,25 @@ Notes: - High-volume/batch tools and raw processing utilities are intentionally not exposed. - `evm_get_pending_transactions` defaults to `decode: false` to reduce response size. +## Sample Data + +Sample payloads for a subset of tools are available in [`sample-data/`](sample-data/). +Not every tool currently has sample data. + +Available samples: + +- `evm_contract_info`: [`sample-data/evm_contract_info.json`](sample-data/evm_contract_info.json) +- `evm_decode_function_call`: [`sample-data/evm_decode_function_call.json`](sample-data/evm_decode_function_call.json) +- `evm_decode_function_call_v2`: [`sample-data/evm_decode_function_call_v2.json`](sample-data/evm_decode_function_call_v2.json) +- `evm_get_block`: + - decoded: [`sample-data/evm_get_block(decode).json`](sample-data/evm_get_block%28decode%29.json) + - raw: [`sample-data/evm_get_block(raw).json`](sample-data/evm_get_block%28raw%29.json) +- `evm_get_slim_block`: [`sample-data/evm_get_slim_block.json`](sample-data/evm_get_slim_block.json) +- `evm_get_transaction`: [`sample-data/evm_get_transaction.json`](sample-data/evm_get_transaction.json) +- `evm_get_transaction_receipt`: [`sample-data/evm_get_transaction_receipt.json`](sample-data/evm_get_transaction_receipt.json) +- `evm_get_internal_transaction`: [`sample-data/evm_get_internal_transaction.json`](sample-data/evm_get_internal_transaction.json) +- `evm_get_fee_history`: [`sample-data/get_fee_history.json`](sample-data/get_fee_history.json) + ## Requirements - Node.js `>=20` @@ -120,6 +139,9 @@ Parameters: - `input: string` - `address?: string` +Sample: +- [`sample-data/evm_decode_function_call.json`](sample-data/evm_decode_function_call.json) + ### `evm_decode_function_call_v2` Decode function input and include contract info. @@ -127,12 +149,18 @@ Parameters: - `input: string` - `address?: string` +Sample: +- [`sample-data/evm_decode_function_call_v2.json`](sample-data/evm_decode_function_call_v2.json) + ### `evm_contract_info` Classify/inspect a contract address. Parameters: - `address: string` +Sample: +- [`sample-data/evm_contract_info.json`](sample-data/evm_contract_info.json) + ### `evm_get_block` Get block with decoded transactions by default. @@ -140,6 +168,10 @@ Parameters: - `blockNumber: number` - `decode?: boolean` (default `true`) +Samples: +- decoded: [`sample-data/evm_get_block(decode).json`](sample-data/evm_get_block%28decode%29.json) +- raw: [`sample-data/evm_get_block(raw).json`](sample-data/evm_get_block%28raw%29.json) + ### `evm_get_slim_block` Get slim block. @@ -147,6 +179,9 @@ Parameters: - `blockNumber: number` - `raw?: boolean` (default `true`) +Sample: +- [`sample-data/evm_get_slim_block.json`](sample-data/evm_get_slim_block.json) + ### `evm_get_slim_block_by_hash` Get slim block by hash. @@ -181,6 +216,9 @@ Parameters: - `hash: string` - `decode?: boolean` (default `true`) +Sample: +- [`sample-data/evm_get_transaction.json`](sample-data/evm_get_transaction.json) + ### `evm_get_transaction_receipt` Get transaction receipt. @@ -188,6 +226,9 @@ Parameters: - `hash: string` - `decode?: boolean` (default `true`) +Sample: +- [`sample-data/evm_get_transaction_receipt.json`](sample-data/evm_get_transaction_receipt.json) + ### `evm_get_internal_transaction` Get internal trace for one transaction. @@ -195,6 +236,9 @@ Parameters: - `hash: string` - `decode?: boolean` (default `true`) +Sample: +- [`sample-data/evm_get_internal_transaction.json`](sample-data/evm_get_internal_transaction.json) + ### `evm_get_internal_transactions_by_block` Get internal traces by block number. @@ -209,6 +253,9 @@ Parameters: - `blockCount: number` - `blockTarget: number` +Sample: +- [`sample-data/get_fee_history.json`](sample-data/get_fee_history.json) + ### `evm_get_latest_block_number` Get latest block number. @@ -333,6 +380,11 @@ If you want local ABI matching, set `EVM_ABI_DIRECTORY` to an existing folder or ### Large responses Use slim/single-item tools and keep decode flags intentional. `evm_get_pending_transactions` defaults to `decode: false` for this reason. +## About Mission Squad + +[Mission Squad](https://missionsquad.ai) provides a platform for building and running AI agents with production-ready tooling, including MCP server integrations like this one. +You can configure MCP servers, connect external systems, and create specialized agents quickly without rebuilding core infrastructure each time. + ## License MIT diff --git a/package.json b/package.json index c40d698..ba56d61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@missionsquad/mcp-evm", - "version": "1.0.0", + "version": "1.0.1", "description": "MCP server for Ethereum Virtual Machine (EVM) RPC API", "type": "module", "main": "dist/index.js", diff --git a/sample-data/evm_contract_info.json b/sample-data/evm_contract_info.json new file mode 100644 index 0000000..97890a6 --- /dev/null +++ b/sample-data/evm_contract_info.json @@ -0,0 +1,19 @@ +{ + "isContract": true, + "fingerprint": "4c2215438ccc25df21a97a961c524dc85b7e99566b45f1b96ad34f36e07f716e", + "contractType": { + "name": "NFT", + "metadata": true, + "baseUri": false, + "enumeration": true, + "tokenUri": true, + "receive": ["ERC721"], + "standards": ["ERC721"] + }, + "properties": { + "type": "ERC721", + "name": "PudgyPenguins", + "symbol": "PPG", + "totalSupply": "8888" + } +} diff --git a/sample-data/evm_decode_function_call.json b/sample-data/evm_decode_function_call.json new file mode 100644 index 0000000..1651260 --- /dev/null +++ b/sample-data/evm_decode_function_call.json @@ -0,0 +1,38 @@ +{ + "name": "swapExactETHForTokens", + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "params": [ + { + "name": "amountOutMin", + "type": "uint256", + "value": "244350857220037158969430063" + }, + { + "name": "path", + "type": "address[]", + "value": [ + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4" + ] + }, + { + "name": "to", + "type": "address", + "value": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4" + }, + { + "name": "deadline", + "type": "uint256", + "value": 1770877933 + } + ], + "args": { + "amountOutMin": "244350857220037158969430063", + "path": [ + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4" + ], + "to": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4", + "deadline": 1770877933 + } +} diff --git a/sample-data/evm_decode_function_call_v2.json b/sample-data/evm_decode_function_call_v2.json new file mode 100644 index 0000000..43f2ff0 --- /dev/null +++ b/sample-data/evm_decode_function_call_v2.json @@ -0,0 +1,50 @@ +{ + "decoded": { + "name": "transferFrom", + "signature": "transferFrom(address,address,uint256)", + "params": [ + { + "name": "_from", + "type": "address", + "value": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6" + }, + { + "name": "_to", + "type": "address", + "value": "0xa41887170Fd5d1591095398F15d89b8c55bA8416" + }, + { + "name": "_value", + "type": "uint256", + "value": 9488 + } + ], + "args": { + "_from": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6", + "_to": "0xa41887170Fd5d1591095398F15d89b8c55bA8416", + "_value": 9488 + }, + "extra": { + "tokenUri": "https://boredapeyachtclub.com/api/mutants/9488" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "8747190d7a0cad8a0d72e938d5016550cb26a63c464ece437ac7be97be776f76", + "contractType": { + "name": "NFT", + "metadata": true, + "baseUri": false, + "enumeration": true, + "tokenUri": true, + "receive": ["ERC721"], + "standards": ["ERC721"] + }, + "properties": { + "type": "ERC721", + "name": "MutantApeYachtClub", + "symbol": "MAYC", + "totalSupply": "19558" + } + } +} diff --git a/sample-data/evm_get_block(decode).json b/sample-data/evm_get_block(decode).json new file mode 100644 index 0000000..1f039e6 --- /dev/null +++ b/sample-data/evm_get_block(decode).json @@ -0,0 +1,18680 @@ +{ + "block": { + "timestamp": "2026-02-12 06:17:23.000 UTC", + "number": 24438850, + "hash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "parentHash": "0xe96154a6f9708ff81260c548d5932eda1abe6ddb2370d12dd2bee2c25df8a33d", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "miner": "0xb364E75b1189DcbBF7f0C856456c1ba8e4d6481b", + "stateRoot": "0x6d3339b26fbf9f81c92dd06d780b7976eb161ee97230e4dcff361ecd9354e6ba", + "transactionsRoot": "0x0b5206e766dc6831c83279b7269b06776d1d43d0fc9bdc5bc3e3e02c6fc74bf1", + "receiptsRoot": "0x1faa3c9d4cebd6746bf6c2c2856901db1ddb7466f6b2e1ce22d4b183957f16c0", + "logsBloom": "0x816a724835a4210182288d00c13012921153a6c50aaa42d281e979082259e827935860063288242a0313d2fce643711cc71099088c862410186c64e0932908422223069100e80009ea7a620fb4fc50eec84f1cab54cf0b2c25001b5ef5bc04134a1033cc0a158d3d098398620812e9012212252252b25c181188e299808f74e20016082b9a190516ca5a10621214402a01012c7b5108802b044f855090f5882b0fda9a671891605f002034ea31841aa0dd2d49698648d788016d8ecc012120e32245d9eb953b02254e4f924c27f8dd8f5235b56264151e9354ab959b91a4a0c653107e30d81a0c1624c3ba2207d52c409460c49815040840637060c164052251", + "difficulty": 0, + "gasLimit": 60000000, + "gasUsed": 8957017, + "baseFeePerGas": 52093743, + "extraData": "0x4e65746865726d696e642076312e33352e32", + "nonce": "0x0000000000000000", + "totalDifficulty": 0, + "size": 48154, + "uncles": [], + "transactionCount": 116, + "transactions": [ + "0x39efdaadf2063d7c11041f7cc4713855d4956633941b44b14a5964d127ae6cab", + "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "0xc9ae216dddd2b375bf444df6359ef0f9c4dd5fa24162398ac95be9c70954ce90", + "0xa2a5f20e833f4538e34f7a759954003b592aeb80541c0b739ac14c61bfa95d65", + "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "0x9642342b015107719d4490ae115b3a5a8837383e5c795ae4d4afcb55f196fa3c", + "0x56c5b984af08baeb640aaf15cb2a055a382711be815fea1e6f47ec4ee20e5fe4", + "0x144f292993a215737ccfe40a69b74fd962fd477bfeb089ed663547c01e31f24b", + "0x0a8386973fb0845aca6e3b59eb64b0c7c5013be801873ee4803399d7e0129ca1", + "0x7c87a48fbd3bbed89701fee15556f1a1c818837be8361661942a770cc6109a60", + "0xb6fed375ad0e4d3b59f3996066314cae8c43bb1c7f5e68e08fa245d4b56839f0", + "0xdc3f714267a72c4247d9b3606f85a0b226fcaea59d7a0d418a9695276cf0576c", + "0x68de59089ba66af59842a71762575c3ace5eb839be6eb8658862930f80a86e2e", + "0x88a8f9a4b422be14116f02644d55bce823bb030c460d5ff0bf812c4a978e97c3", + "0xf67af77cf0c19e3850d7324a579f0dfb1f56d2020f8cf32203c22c823a9a46f5", + "0xbcf02c87200286085d3baccbc5720827dcb0190517a87b53d54b62bb7739dbc0", + "0xe733f12fc20d54d38b25444157e9ac6390acf78cc9dfc589779880473fab4b6c", + "0x64a9e4fe7e4d21de28818fb0d78a0b63148545e8675ba48b7b960b736e5f9626", + "0xae359239f74e2ac683234f14b0a163bbe2988c857d23dcf5b8458f03805030ea", + "0x8721a389baf16d67831baff2b0f421b0e369e0ea4c48fd7f7692531522e3e79d", + "0x77b744aa5113e95d6a783684e3290473117e38a824b6a521b820cf98b4720a63", + "0x0d9c9ea504e6a244542f5dee5ea54647a45be99747e82b1178124a30247af36a", + "0x705af1df39dd70a618ff57fa05d5bcb35a28f81d55c01606995bc0fb1ad28007", + "0x0f720e57bde54d372d992f34982b3930d5ae9cc1bf0383a1b98c730d0fcde184", + "0x22242c5d5dc76967ba95d618dfd94d723d7249af1e5ceb4e9a3b38d0821cb6b5", + "0x7a1a83347bb3c6c0e8668fe7feb6285392374dd50a93c74c0deb17d03e305493", + "0x382bd9152989dfd6f3a7d9b15c61aa9f53df3a03ac0c724948cfb05beef8a70a", + "0xd2651c662c2ea6edc0c761b0a9ead9a4f44e6b39d61564d9827f1656616cd1dd", + "0xa5a94f8b4b820474e0e44d7a5d2aa4a3b53e547c2e3e4d05ad47f05f40935234", + "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "0x08f9d6e82d8d4d7194341435d0495c6eebaceb6c6eff732e8038ed6c3706267d", + "0x809b302e68704e651034c9a9b8e30f8f0d1f52fd8f252e31064f855a2ccf302f", + "0xa13c39066b500e766749ac4e0f0f597a64ce0c0da00aa4f31941c7d8a64b29f7", + "0xd22f1f953df2fbad50eafcc1821f7b35981319c8fe71bd3d2c60dbcc3bec5160", + "0x898fa6447ccaa2bea34d131b1047c78aabbb91b56632333e75b49330d773e376", + "0x929ca40040739dd0c65f563b316e6c11647608c52fc2c982919a2e47ffc45ab3", + "0x671bbfa74349c9eccecca2be90576fc590997fc6ca2c6c53379b26d45710c002", + "0xf70c0266a9deebed39320a53f1cff3e750d0fc2278ab112393ac66593d475a00", + "0x058b160b889f0629d0245a9682adf27e207cb57ce9938f2b679c54685952089e", + "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "0x14149ee8d87d7d62e4cd6b543422be63eb9eb7df01f5a1d533096bd12f28ef52", + "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "0x29a00b68476fad8c3137216b23218c2b0fa6b528fe4169902bf91e8a95b45b74", + "0x46e961ef734d008887caae4af6b1ebeb053e8868365fcfece298e7766251f163", + "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "0xe3a89fe8178aa2dc2599a5601dff659bd6b36f69506e7aa46bf0554fb7ec5df6", + "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "0xbfa03c49d1c22e4562b4cb91717842c05f17f850e326696f60b9c04fe4d75a75", + "0x1f71fd2bdc5d70f4c8618c81a37ae82117ea17a42b15a0fa98af49f0674050fc", + "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "0x9e1215b2e13d3f8696052516f829aca2186029b83263e2f55a8b21c4c40e3c44", + "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "0xd2af355b9b9aa9c6dba7037b9a0506e0fd66c06de5110424cc61fb21e9a2dd2d", + "0x18919e7eb9ce08c2ef1d6f73501746a9fd1b9bf5697ac8520c75362bfe0158e0", + "0xd1636fd72a6b24f9fa541cb4568d95c14257657ea1f980db8e86e00e009104b5", + "0x10f1f7122b3a31ac55b0b1f5d000909d7c7722fa6b6939e41398a6b47c568add", + "0x6f2f33018f3d50d0fc031e603d12806173d7358d00c6350a15ab8def7cf4c3af", + "0xa944a2fc34cf202d8feec18941a12dbc53c018396758550ccd32778080585ab7", + "0x377f8f0bb843ac8b34e6d123c2e6ae2aa8886dc7588cdafbc28beee6fb37e5a7", + "0x19f20b32c5c3fee91e40e5e96ef33e59ab20cbaf23da50eccf0c3aa39b05a368", + "0x57abb26eb7009673a33276a95a37852c875feec09ae6e71ae597d6d88a88f72c", + "0xd10e079b1943c3e0567df0005f3b87a6547cba761dd44c80bf28f246a7240592", + "0x4d2ed5820fc773e0ed6d2e9262da55882b844e3503e3bf1765ee43179f855ca1", + "0xc30c039441503db82fafcf088094e5f3fbb53223e3f5415b9fb3ae39ef0fa2ce", + "0x280664d8417387e4af423422e17296cff783b7779dcab0f930b350704430fbb2", + "0x069924326ba0624edf1d22f3645c8bf5f166b5b831f1d037e2540ede6ca3262a", + "0x1f6690931551839ae83639f5e9a34fdb4b27bbbab3f15814bc03c1caaf327520", + "0x5fc560b5acc6a87194012c0289a038e7faa3040cb8c33b6a406dcfc79f25bc07", + "0xf38747a4b84bf72470bdf48cada0330bbaca198fec9afb364b2fae915936af52", + "0x9ee2cb06833fa575e92bc2200b78eae045e773336aaa52f9aeae51b792c959a2", + "0xe84940733b0943c831513eafb857208cd3389392f784831339a4004945ed4cd5", + "0x9c5736d3c225007b542a6c1e58d30976398a655fd50e02a24d72ce720ac8087c", + "0xf0e9363787a16b98daf3bd99062b963ba98e1f21ed49315673845634519aa1f4", + "0xedeb19ea4364ba5eea48716e24c762bc2306b68249c672fb1565fd72b127a6dc", + "0x9345a911086f1b19ccb9598490effff9d761f0d3192c7437a770a76ed5542f43", + "0x6ffc69c6e612cc78b0f5945a963b79b9ac0fed7828d8a42d46174f4d9b878f3d", + "0x36cc294d864cb05d98e1d8a4d1989fe9b65130fe28cce0bfcf9631b1f7da1f56", + "0x03485b36efbec08601041be349518fb0377dd987dd91166e6c9c17129b5c2e48", + "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "0x7f257282351f72ef1819867dc56181016f3188ebb27929f4d613f71be0144096", + "0x9b4400e92448baecfc2b9d760cda56748baecc50d183bd2ad00c0c9232657174", + "0x74f57c4851c5c6e18414b7199fb9f59a0ff6db5d168f98fb138770d477997a24", + "0xb61218053211b798def7acaa886f83e84747a0e7ff72003ee80d205e3c335a74", + "0xb98f9a9b6267161543f3f53d275132b61575de7b78b5b411489c99a7379192d6", + "0xbd8a5fd1deecf4f4ff7e4dd0d6a1fcce8b02c881c97b0b9a0f0d2fed13844bbb", + "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "0x3ff6d37150b07e0cb95314796684ab8e81a81ae8aea92c63eb972e44e174bbe8", + "0xb442c74f4d1850efd73bf5199a01dab3d04c0c8e539459794dcea70d2c487e78", + "0x61844494548d526e7ba513e2892ea1c8ef8231a64cb23393e9e6fd5c43c5e3ef", + "0x45a34920a605f5f94845dad8fc48aacacda072f8ec70b754fd261e3f2346147e", + "0x30adf501e56200bb8711788aa1e02d55ea0fad39e18d40678d02ad9d8a9b9f8e", + "0x4e4256c2220a1b2a6a1f2e96c98fc7a661f4311a3f183149e081482fe9edfdd7", + "0xef98db7a4b5f3b42396dbd1313ef873bc64a091b219ca94a5b41d00a9eb28282", + "0x684fb85759f3d45380f03db2660a91a15d6a33d6a0d78813b2a337f121c0faa2", + "0x2f42ee078cd5df9b0036e8196bd999e08aa0c4e557aa4ea6396c460fd3672082", + "0x46340b786c458771424f3f6e307cc1d13c2bfe7b2a7e32c62a5ca74b0a8f4b58", + "0x4ebd331e239628992c7e9ac22fd6c77a494801cb83f2dc3d7124e78a71bd2786", + "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "0x1856ff57259b03840a1ef2a3d67fefc29c31dc4d096215ea3bcec2f57a407181", + "0x11a574aeed9d4c0d6e42f75f8dacb3be92153b7ca96861c7bc9dad7d7e4c57f1", + "0x37d7ee233456cee9def23925d108ddbcf2bb98c65fa227c7400b933e1ebd1f2e", + "0xa53fe347e52ab37f9f678edd5a489a2946eb2d0aecc32a36211f11c15db9b968", + "0x099e29652215012a30278af790e24cd2bb642829e635a483ac8be485d1967d98", + "0x83b3b98b33642ba82c2b473919a1b9524d98f8b20eb5160f6fbd7efad4134681", + "0x4c09063946da75589794a5b09f680f9870e4a1b04739b42e46e2fcb578b25ca7", + "0x904be733e1f9234ae49c98a6806921dbb4bcc6443aa25b7edc037624343c3f86", + "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "0x4a6f3e4092705abc172433607929737f736253d627e6aff6b90d9b7d8b6fa226", + "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae" + ], + "blobGasUsed": 655360, + "excessBlobGas": 174484179, + "mixHash": "0xd4dc4281319360371317723c9c4e841c5a3a170f1f50292e31046652e36832e9", + "parentBeaconBlockRoot": "0x544ea15eedfbfa219139d96d795de3283e2fc2b492735f3ffa8c13b52173f67a", + "withdrawals": [ + { + "index": 118462219, + "validatorIndex": 118462219, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16769791 + }, + { + "index": 118462220, + "validatorIndex": 118462220, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16731842 + }, + { + "index": 118462221, + "validatorIndex": 118462221, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16750397 + }, + { + "index": 118462222, + "validatorIndex": 118462222, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16730840 + }, + { + "index": 118462223, + "validatorIndex": 118462223, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16698132 + }, + { + "index": 118462224, + "validatorIndex": 118462224, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16750972 + }, + { + "index": 118462225, + "validatorIndex": 118462225, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16742568 + }, + { + "index": 118462226, + "validatorIndex": 118462226, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16772011 + }, + { + "index": 118462227, + "validatorIndex": 118462227, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16789850 + }, + { + "index": 118462228, + "validatorIndex": 118462228, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16741998 + }, + { + "index": 118462229, + "validatorIndex": 118462229, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16763405 + }, + { + "index": 118462230, + "validatorIndex": 118462230, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16759205 + }, + { + "index": 118462231, + "validatorIndex": 118462231, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 64562779 + }, + { + "index": 118462232, + "validatorIndex": 118462232, + "address": "0x2B78035514401eD1592Eb691b8673a93Edf97470", + "amount": 16726809 + }, + { + "index": 118462233, + "validatorIndex": 118462233, + "address": "0xAA432D06a103ca39cBE2931D1FFbEefA1d6e0A57", + "amount": 16775950 + }, + { + "index": 118462234, + "validatorIndex": 118462234, + "address": "0x208C4FF00a0d0F8f318f626331C780eE7BAC9960", + "amount": 16743472 + } + ], + "withdrawalsRoot": "0x57e780df4c5af981766bdbae47ca1e9bd353740c7c3e3dae7676dbdccd7efe65" + }, + "transactions": [ + { + "transaction": { + "hash": "0x39efdaadf2063d7c11041f7cc4713855d4956633941b44b14a5964d127ae6cab", + "from": "0x5050F69a9786F081509234F1a7F4684b5E5b76C9", + "to": "0xFf00000000000000000000000000000000008453", + "gas": 21000, + "gasPrice": 2562093743, + "input": "0x", + "nonce": 2012283, + "value": 0, + "v": "0x0", + "r": "0x830e57467e6de28e97fdfd2aee69ec553066e39b49be9fe95722327e273bcec4", + "s": "0x9948c61dd8816c15964cb31f0de553a7632ac5e413c5a3839c7dea02ac57337", + "maxFeePerGas": 7530000000, + "maxPriorityFeePerGas": 2510000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 0, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 21000, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "from": "0x63c5c270aCDcea542789dcfB2af73f9811aCf5fD", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 90000, + "gasPrice": 11675222222, + "nonce": 5, + "value": 0, + "v": "0x26", + "r": "0x4645a67bf639278485eae0e503ac3634c8e17b476c52ae756d5c3193b23e804c", + "s": "0x3dafaa6db7d4a622323943150f475ec3157846ce2628d5419bdc3e19599d9c84", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 1, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 62309, + "gasUsed": 41309, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F" + }, + { + "name": "_value", + "type": "uint256", + "value": 774380000 + } + ], + "args": { + "_to": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F", + "_value": 774380000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 0, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "transactionIndex": 1, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000002e2819e0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063c5c270acdcea542789dcfb2af73f9811acf5fd", + "0x000000000000000000000000e17eff36d88df136529764b2517e9c8cc6113f4f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x63c5c270aCDcea542789dcfB2af73f9811aCf5fD" + }, + { + "name": "to", + "type": "address", + "value": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F" + }, + { + "name": "value", + "type": "uint256", + "value": 774380000 + } + ], + "args": { + "from": "0x63c5c270aCDcea542789dcfB2af73f9811aCf5fD", + "to": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F", + "value": 774380000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xc9ae216dddd2b375bf444df6359ef0f9c4dd5fa24162398ac95be9c70954ce90", + "from": "0xFC63C4360F086cA8B18655763813b4AB36D41dC3", + "to": "0x6928F3e126dBac9923d52300fdeF714B280b305C", + "gas": 21000, + "gasPrice": 5052093743, + "input": "0x", + "nonce": 9, + "value": "54010482815874266", + "v": "0x1", + "r": "0x6207edaa8bc88d4f0ccf43563950f2f5f6016c67a2c13d8c8b20146b9cbb419c", + "s": "0x726f60652acbe6712c628b737aeefa6f6e668d64ccfdc3ab0750d47ff3554d1a", + "maxFeePerGas": 5068747590, + "maxPriorityFeePerGas": 5000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 2, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 83309, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xa2a5f20e833f4538e34f7a759954003b592aeb80541c0b739ac14c61bfa95d65", + "from": "0xdd3e648724c2f46BBE5f4E0B2452C5d236a205f3", + "to": "0x77EBDeF9dC7161a4A706CD387153B35C38527400", + "gas": 21000, + "gasPrice": 4600000000, + "input": "0x", + "nonce": 0, + "value": "49603400000000000", + "v": "0x25", + "r": "0xb6e4c2c28e9e977319385d16078e0b757e3bea205e715aa4cec3767566f5627c", + "s": "0x6b2bbe68540affc51d583c284a072f2ad739c353fb6dfd9276b3a529514d58d0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 3, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 104309, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "from": "0xDf590A63B91E8278a9102BEe9aAfd444F8A4b780", + "to": "0x6cf6CB29754aEBf88AF12089224429bD68b0b8c8", + "gas": 431160, + "gasPrice": 3052093743, + "input": "0x701d10bb00000000000000000000000000000000000000000000000000000000000b71b00000000000000000000000000000000000000000000000000000000000000320", + "nonce": 2705, + "value": 3187500000000000, + "v": "0x0", + "r": "0x148d22a1ab8c1e0b745ae2c71d2be61be83087153e22e5f0832fd13891686ab2", + "s": "0x423b421c6e932b1c4f2194174745ee0540d3041911b3b13bfdf8c235e4d0a69e", + "maxFeePerGas": 200000000000, + "maxPriorityFeePerGas": 3000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 4, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 384529, + "gasUsed": 280220, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "f95bb6069339ff8894288c8fc2bb85184c59e1912dd2c969c8a9d7c24771ac6b", + "contractName": "AddressStorage", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 1, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "transactionIndex": 4, + "address": "0x32400084C286CF3E17e7B677ea9583e60a000324", + "data": "0x00000000000000000000000000000000000000000000000000000000003267e75838bad3e8f84b0569f27c8b98c2f54373a2274f7078ff5c8a09f2d138f71ef000000000000000000000000000000000000000000000000000000000698d707300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000007e07cb29754aebf88af12089224429bd68b0c9d90000000000000000000000006aacd3ed8443a7f4cb19eb4f289a5829842da2b100000000000000000000000000000000000000000000000000000000000b71b0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000112cd6830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003267e700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c48dd1244d10000000000000000000000000df590a63b91e8278a9102bee9aafd444f8a4b78000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000002469ea1771000000000000000000000000000000000000000000000000100ff98b3684e0940000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x4531cd5795773d7101c17bdeb9f5ab7f47d7056017506f937083be5d6e77a382" + ], + "addressInfo": { + "isContract": true, + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 2, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "transactionIndex": 4, + "address": "0x32400084C286CF3E17e7B677ea9583e60a000324", + "data": "0x", + "topics": [ + "0x779f441679936c5441b671969f37400b8c3ed0071cb47444431bf985754560df", + "0x00000000000000000000000000000000000000000000000000000000003267e7", + "0x5838bad3e8f84b0569f27c8b98c2f54373a2274f7078ff5c8a09f2d138f71ef0" + ], + "addressInfo": { + "isContract": true, + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 3, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "transactionIndex": 4, + "address": "0xbeD1EB542f9a5aA6419Ff3deb921A372681111f6", + "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c48dd1244d10", + "topics": [ + "0x1cd02155ad1064c60598a8bd0e4e795d7e7d0a0f3c38aad04d261f1297fb2545", + "0x0000000000000000000000000000000000000000000000000000000000000144", + "0x05e1c3ae4b9732444ae25217ac7666e46fa365fee1768de00c9fcb65532b7609", + "0x0000000000000000000000006cf6cb29754aebf88af12089224429bd68b0b8c8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "afa92e72805a3cf282e865c7b65931d597287a17c556baf038db388d1eb50ebf", + "contractType": { + "name": null, + "proxies": [ + { + "address": "0xbed1eb542f9a5aa6419ff3deb921a372681111f6", + "standard": "ERC1967", + "target": "0x8e1c5a8c5d8c33ed0ec756d6f4006f2d875ba083" + } + ] + } + } + }, + { + "removed": false, + "logIndex": 4, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "transactionIndex": 4, + "address": "0x8829AD80E425C646DAB305381ff105169FeEcE56", + "data": "0x05e1c3ae4b9732444ae25217ac7666e46fa365fee1768de00c9fcb65532b76090000000000000000000000000000000000000000000000000000c48dd1244d10", + "topics": [ + "0x0f87e1ea5eb1f034a6071ef630c174063e3d48756f853efaaf4292b929298240", + "0x0000000000000000000000000000000000000000000000000000000000000144", + "0x0000000000000000000000006cf6cb29754aebf88af12089224429bd68b0b8c8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "afa92e72805a3cf282e865c7b65931d597287a17c556baf038db388d1eb50ebf", + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x8829ad80e425c646dab305381ff105169feece56", + "standard": "ERC1967", + "target": "0x2386bc2e26f39b72f0d4fde0c07d68e4eeffc725" + } + ] + } + } + } + ] + }, + { + "transaction": { + "hash": "0x9642342b015107719d4490ae115b3a5a8837383e5c795ae4d4afcb55f196fa3c", + "from": "0xFD5Fb78a7B0b73D5ef1712904108effa45001e8F", + "to": "0x4923D9753389D6a9683e31bf995C8cb0d04Fe928", + "gas": 21000, + "gasPrice": 3000000000, + "input": "0x", + "nonce": 15, + "value": "38500000000000000", + "v": "0x26", + "r": "0xf02495128f6d1877f9f391651b0400d70435638bade037abee9895997e8513dc", + "s": "0x71af7536bc1aebc634afd95c8ae3d13abcbed488fc0d02780536b9fc6b80edd4", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 5, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 405529, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x56c5b984af08baeb640aaf15cb2a055a382711be815fea1e6f47ec4ee20e5fe4", + "from": "0x482A42e47AC1AF9e559DF3d7E1d4dABDE75c22D4", + "to": "0x1aFf738740f17F2Aad1D13eb7221e62fC6BaD2c8", + "gas": 21000, + "gasPrice": 3000000000, + "input": "0x", + "nonce": 2840, + "value": 195000000000000, + "v": "0x25", + "r": "0x40cbe3703fb1c038ab192cae1073b8a78113eb74d7dae9ce36fa23f81288260d", + "s": "0xab8c2eee7236123939cd7289392206cfd192d2bfdea9c7500ae731015eb4250", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 6, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 426529, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x144f292993a215737ccfe40a69b74fd962fd477bfeb089ed663547c01e31f24b", + "from": "0xcEA8161089a090bcf0bCeF268f1Bf2255E93473a", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 65000, + "gasPrice": 3000000000, + "nonce": 112, + "value": 0, + "v": "0x26", + "r": "0xcd4b9d048cfc57548499c92890b3e3d48ccc3d1463d391ac4fd08d0927db08e0", + "s": "0x48f9c9b313b192a09b2d1536a788064b04e8e806b22ea68e566a28aada10ddfa", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 7, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 467838, + "gasUsed": 41309, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x741388f50f27CFab6E93A228E67d14cd3C303E89" + }, + { + "name": "_value", + "type": "uint256", + "value": 42370000 + } + ], + "args": { + "_to": "0x741388f50f27CFab6E93A228E67d14cd3C303E89", + "_value": 42370000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 5, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x144f292993a215737ccfe40a69b74fd962fd477bfeb089ed663547c01e31f24b", + "transactionIndex": 7, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000028683d0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cea8161089a090bcf0bcef268f1bf2255e93473a", + "0x000000000000000000000000741388f50f27cfab6e93a228e67d14cd3c303e89" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xcEA8161089a090bcf0bCeF268f1Bf2255E93473a" + }, + { + "name": "to", + "type": "address", + "value": "0x741388f50f27CFab6E93A228E67d14cd3C303E89" + }, + { + "name": "value", + "type": "uint256", + "value": 42370000 + } + ], + "args": { + "from": "0xcEA8161089a090bcf0bCeF268f1Bf2255E93473a", + "to": "0x741388f50f27CFab6E93A228E67d14cd3C303E89", + "value": 42370000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x0a8386973fb0845aca6e3b59eb64b0c7c5013be801873ee4803399d7e0129ca1", + "from": "0xA93A49659D6cc09B55657B2A805BA971BcB4A240", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 65000, + "gasPrice": 3000000000, + "nonce": 1, + "value": 0, + "v": "0x26", + "r": "0x236e3944163403db6d7a7481a5956feb00cdff76e663ac5634698260099270fd", + "s": "0x382bf973b64ff1b08c813953de7d3d9c56c8cfdf3640aa050db2772bcd981fdc", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 8, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 509147, + "gasUsed": 41309, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x741388f50f27CFab6E93A228E67d14cd3C303E89" + }, + { + "name": "_value", + "type": "uint256", + "value": 29200000 + } + ], + "args": { + "_to": "0x741388f50f27CFab6E93A228E67d14cd3C303E89", + "_value": 29200000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 6, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x0a8386973fb0845aca6e3b59eb64b0c7c5013be801873ee4803399d7e0129ca1", + "transactionIndex": 8, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000001bd8e80", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a93a49659d6cc09b55657b2a805ba971bcb4a240", + "0x000000000000000000000000741388f50f27cfab6e93a228e67d14cd3c303e89" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xA93A49659D6cc09B55657B2A805BA971BcB4A240" + }, + { + "name": "to", + "type": "address", + "value": "0x741388f50f27CFab6E93A228E67d14cd3C303E89" + }, + { + "name": "value", + "type": "uint256", + "value": 29200000 + } + ], + "args": { + "from": "0xA93A49659D6cc09B55657B2A805BA971BcB4A240", + "to": "0x741388f50f27CFab6E93A228E67d14cd3C303E89", + "value": 29200000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x7c87a48fbd3bbed89701fee15556f1a1c818837be8361661942a770cc6109a60", + "from": "0x6522B7F9d481eCEB96557F44753a4b893F837E90", + "to": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "gas": 90000, + "gasPrice": 2052093743, + "nonce": 65820, + "value": 0, + "v": "0x1", + "r": "0x1b4232c581ef4219edb4e6b4376da02ecd732161d8490267caaed24b551c823a", + "s": "0x3ba0a59c9710bbf1afbbd60b493863459236900bf6e7e95bc0a1d609510031b6", + "maxFeePerGas": 200000000000, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 9, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 550076, + "gasUsed": 40929, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "_value", + "type": "uint256", + "value": "25687570000000000000000" + } + ], + "args": { + "_to": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "_value": "25687570000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 7, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x7c87a48fbd3bbed89701fee15556f1a1c818837be8361661942a770cc6109a60", + "transactionIndex": 9, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x00000000000000000000000000000000000000000000057086a5506bd4f50000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006522b7f9d481eceb96557f44753a4b893f837e90", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6522B7F9d481eCEB96557F44753a4b893F837E90" + }, + { + "name": "to", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "value", + "type": "uint256", + "value": "25687570000000000000000" + } + ], + "args": { + "from": "0x6522B7F9d481eCEB96557F44753a4b893F837E90", + "to": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "value": "25687570000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xb6fed375ad0e4d3b59f3996066314cae8c43bb1c7f5e68e08fa245d4b56839f0", + "from": "0xBaA67174531f0C031f91a373F6788c7e821AF2C5", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 84000, + "gasPrice": 2052093743, + "nonce": 168689, + "value": 0, + "v": "0x1", + "r": "0xba00905592e5116886bdec922bfd6a047a7513f0c0d949f2cff61e39de0e4763", + "s": "0x10a5c95be988431260b89b0defe98483f271000776e2205d5a3c64c543f72c9d", + "maxFeePerGas": 102000000000, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 10, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 596173, + "gasUsed": 46097, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x047A66F65105670dA049cF8926f7457eA379C25c" + }, + { + "name": "_value", + "type": "uint256", + "value": 9006548 + } + ], + "args": { + "_to": "0x047A66F65105670dA049cF8926f7457eA379C25c", + "_value": 9006548 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 8, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb6fed375ad0e4d3b59f3996066314cae8c43bb1c7f5e68e08fa245d4b56839f0", + "transactionIndex": 10, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000896dd4", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000baa67174531f0c031f91a373f6788c7e821af2c5", + "0x000000000000000000000000047a66f65105670da049cf8926f7457ea379c25c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xBaA67174531f0C031f91a373F6788c7e821AF2C5" + }, + { + "name": "to", + "type": "address", + "value": "0x047A66F65105670dA049cF8926f7457eA379C25c" + }, + { + "name": "value", + "type": "uint256", + "value": 9006548 + } + ], + "args": { + "from": "0xBaA67174531f0C031f91a373F6788c7e821AF2C5", + "to": "0x047A66F65105670dA049cF8926f7457eA379C25c", + "value": 9006548 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xdc3f714267a72c4247d9b3606f85a0b226fcaea59d7a0d418a9695276cf0576c", + "from": "0x8f8d1206d1bCe12ff892731f8A140ed18B93884e", + "to": "0xd9a59211F824Aa2Fe366aa829Ed405f13a9f2D23", + "gas": 21000, + "gasPrice": 2052093743, + "input": "0x", + "nonce": 194604, + "value": "12034889136521875", + "v": "0x0", + "r": "0xf95b5c868e91dd4e1ae29fc717e879b359a082f912f0b8a889fbc23c055a3ae0", + "s": "0x4b067090e9ea7e917f1ccfa8320d39eaf93b8c20310c5fbbfb6df26f04bb450d", + "maxFeePerGas": 102000000000, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 11, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 617173, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x68de59089ba66af59842a71762575c3ace5eb839be6eb8658862930f80a86e2e", + "from": "0x9C66fe52AcC2a765aAe6dd09eD34eF9507bdCA32", + "to": "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146", + "gas": 150000, + "gasPrice": 2052093743, + "input": "0x574da717000000000000000000000000d6a5f6d3e89eb8c9deef50ae8214db2c4f4175a6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021ee9eca6f800000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000444f55543a4646363837343431353641334442303046324238303634394230423334314235453737394641353736304135464642373731354331434434444242394535304300000000000000000000000000000000000000000000000000000000", + "nonce": 283, + "value": 596940000000000, + "v": "0x0", + "r": "0xa68979a03660205dbbadf67179c3946530a78c29649f6c227489b43d1b4f9ae4", + "s": "0x60b4be9f12dfb45dc91d958bd0f54e26c3727e3b68fad110cb906e46c6da327c", + "maxFeePerGas": 10000000000, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 12, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 657009, + "gasUsed": 39836, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "b4226e2f4abb4bf6dc6b4340b50f7a60c032efd6ce8f96923086fd835906f9b6", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 9, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x68de59089ba66af59842a71762575c3ace5eb839be6eb8658862930f80a86e2e", + "transactionIndex": 12, + "address": "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146", + "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021ee9eca6f800000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000444f55543a4646363837343431353641334442303046324238303634394230423334314235453737394641353736304135464642373731354331434434444242394535304300000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xa9cd03aa3c1b4515114539cd53d22085129d495cb9e9f9af77864526240f1bf7", + "0x0000000000000000000000009c66fe52acc2a765aae6dd09ed34ef9507bdca32", + "0x000000000000000000000000d6a5f6d3e89eb8c9deef50ae8214db2c4f4175a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "b4226e2f4abb4bf6dc6b4340b50f7a60c032efd6ce8f96923086fd835906f9b6", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x88a8f9a4b422be14116f02644d55bce823bb030c460d5ff0bf812c4a978e97c3", + "from": "0x8E5a6E6fb4926284774A437241769f9b30C2f743", + "to": "0xa03400E098F4421b34a3a44A1B4e571419517687", + "gas": 30000, + "gasPrice": 2052093743, + "input": "0x", + "nonce": 59806, + "value": "324151023906459500", + "v": "0x1", + "r": "0x9cba4219f61e173541afe67cfe77e162e529acd4e2952797fd56290374c0aa0d", + "s": "0x4fff2c8d68d5e92ed5f980359ec912a54c21394e1e0009b20843edde5c3c0071", + "maxFeePerGas": 2264947991, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 13, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 678009, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xf67af77cf0c19e3850d7324a579f0dfb1f56d2020f8cf32203c22c823a9a46f5", + "from": "0x2e7F2740a839231c41cfde0d531828df312bea04", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 100000, + "gasPrice": 2052093743, + "nonce": 255083, + "value": 0, + "v": "0x0", + "r": "0x65bacd499e6695e4d17d0801d7367fb746ecc8af5a8301e8f4f149575eb4fdbe", + "s": "0x2a9aba2025896bb82829ace7101c09a1f7ba1123a9e364347ab016973b54b47c", + "maxFeePerGas": 2104187486, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 14, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 723169, + "gasUsed": 45160, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x024dd97d84a91107F517e3ED17f3AD26E739cCa2" + }, + { + "name": "_value", + "type": "uint256", + "value": 329180397 + } + ], + "args": { + "_to": "0x024dd97d84a91107F517e3ED17f3AD26E739cCa2", + "_value": 329180397 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 10, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xf67af77cf0c19e3850d7324a579f0dfb1f56d2020f8cf32203c22c823a9a46f5", + "transactionIndex": 14, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000139ee4ed", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002e7f2740a839231c41cfde0d531828df312bea04", + "0x000000000000000000000000024dd97d84a91107f517e3ed17f3ad26e739cca2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x2e7F2740a839231c41cfde0d531828df312bea04" + }, + { + "name": "to", + "type": "address", + "value": "0x024dd97d84a91107F517e3ED17f3AD26E739cCa2" + }, + { + "name": "value", + "type": "uint256", + "value": 329180397 + } + ], + "args": { + "from": "0x2e7F2740a839231c41cfde0d531828df312bea04", + "to": "0x024dd97d84a91107F517e3ED17f3AD26E739cCa2", + "value": 329180397 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xbcf02c87200286085d3baccbc5720827dcb0190517a87b53d54b62bb7739dbc0", + "from": "0xdC971A8E2a01B2234b371cb2E1AF46ef5d694B24", + "to": "0xf30ba13e4b04Ce5dC4D254Ae5FA95477800F0EB0", + "gas": 21000, + "gasPrice": 2052093743, + "input": "0x", + "nonce": 31, + "value": "253755888100011064", + "v": "0x1", + "r": "0xbcc0454eff2b7ac5aa759a3bef964836d197cb58fb3c8abf9dd1ef9621bb000b", + "s": "0x483d781264413222a2c9c9790ebb2aef119d5bb47ee23597788c99d19dc642fb", + "maxFeePerGas": 2100330753, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 15, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 744169, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xe733f12fc20d54d38b25444157e9ac6390acf78cc9dfc589779880473fab4b6c", + "from": "0x0C8Aa5263Afde3c43A0FE88aEd2b10AdE922E666", + "to": "0xf30ba13e4b04Ce5dC4D254Ae5FA95477800F0EB0", + "gas": 21000, + "gasPrice": 2052093743, + "input": "0x", + "nonce": 35515, + "value": "14762773054206000", + "v": "0x1", + "r": "0x9bb382cc32ea0847374284b03fcb728cbe0876638252fbdb570d428ac0dd2c3d", + "s": "0xf16d44d67e67b2e3e311d174ed96fe7cf8b4f7fe096aa3e92710454a5505a92", + "maxFeePerGas": 2100330753, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 16, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 765169, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x64a9e4fe7e4d21de28818fb0d78a0b63148545e8675ba48b7b960b736e5f9626", + "from": "0x2e8FbDD6680450C0DA7c462A748E4EA049183a3a", + "to": "0x89d43f7c0f1995b9911c0d2160a5D0A30c9B1051", + "gas": 21000, + "gasPrice": 2052093743, + "input": "0x", + "nonce": 0, + "value": "481832718797889000", + "v": "0x1", + "r": "0xfc6a6ce9522d79a79a16c3e843f203848a6ebd56f23cf6099c72edde7d62ba65", + "s": "0x3a2c80ebb3204a71c8d1d960e6d820e9d7f99db0e6daabae7682df575724d6e5", + "maxFeePerGas": 2077676291, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 17, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 786169, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xae359239f74e2ac683234f14b0a163bbe2988c857d23dcf5b8458f03805030ea", + "from": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 94599, + "gasPrice": 2052093743, + "nonce": 667059, + "value": 0, + "v": "0x1", + "r": "0x684f46601bdf51edce072416feaf922133b0036b05dca03003eb7232e748a5b7", + "s": "0x42cf8995a215f8699e2db35521ba448d6ed059465457b925e0c7388eb8a8095f", + "maxFeePerGas": 2055676441, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 18, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 848405, + "gasUsed": 62236, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x7188d836Fdc000536124Eb0d32d83BFa07c9fDd8" + }, + { + "name": "_value", + "type": "uint256", + "value": 460000000 + } + ], + "args": { + "_to": "0x7188d836Fdc000536124Eb0d32d83BFa07c9fDd8", + "_value": 460000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 11, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xae359239f74e2ac683234f14b0a163bbe2988c857d23dcf5b8458f03805030ea", + "transactionIndex": 18, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000001b6b0b00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f381", + "0x0000000000000000000000007188d836fdc000536124eb0d32d83bfa07c9fdd8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381" + }, + { + "name": "to", + "type": "address", + "value": "0x7188d836Fdc000536124Eb0d32d83BFa07c9fDd8" + }, + { + "name": "value", + "type": "uint256", + "value": 460000000 + } + ], + "args": { + "from": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381", + "to": "0x7188d836Fdc000536124Eb0d32d83BFa07c9fDd8", + "value": 460000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x8721a389baf16d67831baff2b0f421b0e369e0ea4c48fd7f7692531522e3e79d", + "from": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 94617, + "gasPrice": 2052093743, + "nonce": 667060, + "value": 0, + "v": "0x0", + "r": "0x222e30f5862f706a74db010228c43e6a5123dff321faa721df171436c9d0ef9b", + "s": "0x4ea40af1e4907c08286675175eb71c7704e3ce9e3cbf5c53a9bd72e335e8946e", + "maxFeePerGas": 2055676441, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 19, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 910653, + "gasUsed": 62248, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xda02f12152a94B27DD4977e06EB6764c18281700" + }, + { + "name": "_value", + "type": "uint256", + "value": 110000000 + } + ], + "args": { + "_to": "0xda02f12152a94B27DD4977e06EB6764c18281700", + "_value": 110000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 12, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x8721a389baf16d67831baff2b0f421b0e369e0ea4c48fd7f7692531522e3e79d", + "transactionIndex": 19, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000068e7780", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000005ff6964d21e5dae3b1010d5ae0465b3c450f381", + "0x000000000000000000000000da02f12152a94b27dd4977e06eb6764c18281700" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381" + }, + { + "name": "to", + "type": "address", + "value": "0xda02f12152a94B27DD4977e06EB6764c18281700" + }, + { + "name": "value", + "type": "uint256", + "value": 110000000 + } + ], + "args": { + "from": "0x05ff6964D21e5dAE3b1010D5AE0465b3c450F381", + "to": "0xda02f12152a94B27DD4977e06EB6764c18281700", + "value": 110000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x77b744aa5113e95d6a783684e3290473117e38a824b6a521b820cf98b4720a63", + "from": "0xaA8ba7D4611437141192e7ceCed531Bc0A133efb", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 96046, + "gasPrice": 2052093743, + "nonce": 500795, + "value": 0, + "v": "0x1", + "r": "0xf8bfb68dd986975cce1831ce03098eaf04d4299919603fded0ca7b20317990e5", + "s": "0x480911c0ac11f35839dd2219accc6b59e22ce6c27f273147d258e55be0a0944d", + "maxFeePerGas": 2055676441, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 20, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 973850, + "gasUsed": 63197, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x465763eb88DfA7B119F4352fa77c9b49C1C5288f" + }, + { + "name": "_value", + "type": "uint256", + "value": 1249500 + } + ], + "args": { + "_to": "0x465763eb88DfA7B119F4352fa77c9b49C1C5288f", + "_value": 1249500 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 13, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x77b744aa5113e95d6a783684e3290473117e38a824b6a521b820cf98b4720a63", + "transactionIndex": 20, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000001310dc", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000aa8ba7d4611437141192e7ceced531bc0a133efb", + "0x000000000000000000000000465763eb88dfa7b119f4352fa77c9b49c1c5288f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xaA8ba7D4611437141192e7ceCed531Bc0A133efb" + }, + { + "name": "to", + "type": "address", + "value": "0x465763eb88DfA7B119F4352fa77c9b49C1C5288f" + }, + { + "name": "value", + "type": "uint256", + "value": 1249500 + } + ], + "args": { + "from": "0xaA8ba7D4611437141192e7ceCed531Bc0A133efb", + "to": "0x465763eb88DfA7B119F4352fa77c9b49C1C5288f", + "value": 1249500 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x0d9c9ea504e6a244542f5dee5ea54647a45be99747e82b1178124a30247af36a", + "from": "0xE9bdBbC608382e5A8c66cd9df86C4FeE994ed83C", + "to": "0x50ec559bD9C47b1eA9433B98078E8ba5a055cbf3", + "gas": 21000, + "gasPrice": 2000000000, + "input": "0x", + "nonce": 0, + "value": "202950880000000000", + "v": "0x25", + "r": "0x407f05d99e8adfe1d11bbd96b20cd0f23f97b475c865ae3611fd42b4d121dd18", + "s": "0x49622659f7274cf9250ce3c319bcb70f0eb70d8ac56830a409b3c427eb3ad078", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 21, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 994850, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x705af1df39dd70a618ff57fa05d5bcb35a28f81d55c01606995bc0fb1ad28007", + "from": "0xE9bdBbC608382e5A8c66cd9df86C4FeE994ed83C", + "to": "0xc1cf7DbF161bD6E15999446132692cDD945F6354", + "gas": 21000, + "gasPrice": 2000000000, + "input": "0x", + "nonce": 1, + "value": "139782420000000000", + "v": "0x25", + "r": "0x3fd6aa798701363c8956d8e935713ff7bdf8350ff567e57728396b6ca28f1bbe", + "s": "0x312b3e715a22ee5a7abc9d26bab3f577261c6c82e58d53ea094284a94599562f", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 22, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1015850, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x0f720e57bde54d372d992f34982b3930d5ae9cc1bf0383a1b98c730d0fcde184", + "from": "0x3F8633560d6A7f517776Cdb7D9D41DC0f9157f1c", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 68310, + "gasPrice": 2000000000, + "nonce": 5610, + "value": 0, + "v": "0x26", + "r": "0x3c6d139c7204decffe948471a25dc4703be55b0c5fcacc37d4ca44fc42593a26", + "s": "0x38c4b2c68c50d57cd333b05c707b50f1bb8edc40fb96613e7680b201ee176066", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 23, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1061010, + "gasUsed": 45160, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x6e0d69BE784e1173dFEEEe56faEeC357354f8527" + }, + { + "name": "_value", + "type": "uint256", + "value": 6000000000 + } + ], + "args": { + "_to": "0x6e0d69BE784e1173dFEEEe56faEeC357354f8527", + "_value": 6000000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 14, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x0f720e57bde54d372d992f34982b3930d5ae9cc1bf0383a1b98c730d0fcde184", + "transactionIndex": 23, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000165a0bc00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000003f8633560d6a7f517776cdb7d9d41dc0f9157f1c", + "0x0000000000000000000000006e0d69be784e1173dfeeee56faeec357354f8527" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x3F8633560d6A7f517776Cdb7D9D41DC0f9157f1c" + }, + { + "name": "to", + "type": "address", + "value": "0x6e0d69BE784e1173dFEEEe56faEeC357354f8527" + }, + { + "name": "value", + "type": "uint256", + "value": 6000000000 + } + ], + "args": { + "from": "0x3F8633560d6A7f517776Cdb7D9D41DC0f9157f1c", + "to": "0x6e0d69BE784e1173dFEEEe56faEeC357354f8527", + "value": 6000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x22242c5d5dc76967ba95d618dfd94d723d7249af1e5ceb4e9a3b38d0821cb6b5", + "from": "0x0114D00147f14Bb19a02E73375C5daEFB08b9594", + "to": "0x1C7f95bD96ad74c75E1Ca274cb77641D2e93AA3f", + "gas": 21000, + "gasPrice": 2000000000, + "input": "0x", + "nonce": 0, + "value": "40605742530416432", + "v": "0x26", + "r": "0x9b372a4a7c5c15c6ff7f64f404c97a2e1b8e6dff829e951deb1e6a0dbd3efc15", + "s": "0x6684fb7ed0aa8847f2c14086ee279505de33a853b64c21c5a75c3cca1cd6e4f7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 24, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1082010, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x7a1a83347bb3c6c0e8668fe7feb6285392374dd50a93c74c0deb17d03e305493", + "from": "0xB028b84783A0381D51Dcf0e8ef04b5e502958618", + "to": "0x20073dcD807AB5FE6Fd0439cdF5B16D34628F401", + "gas": 300000, + "gasPrice": 1552093743, + "input": "0x", + "nonce": 40315, + "value": "1175383180000000000", + "v": "0x0", + "r": "0xba2c5ea9ea4f9b8d39485d0fc2347918aa26d83e41f0e0827bdd767ee075b675", + "s": "0x32d28b56a78827dac8f49316e883f42910cfed4830923b77af559bd77b6350ae", + "maxFeePerGas": 100000000000, + "maxPriorityFeePerGas": 1500000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 25, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1103010, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x382bd9152989dfd6f3a7d9b15c61aa9f53df3a03ac0c724948cfb05beef8a70a", + "from": "0x28C6c06298d514Db089934071355E5743bf21d60", + "to": "0xA8E8C167b74feB3642a3AB66279746E08e548C20", + "gas": 207128, + "gasPrice": 1052093743, + "input": "0x", + "nonce": 15389613, + "value": "304889280000000000", + "v": "0x1", + "r": "0xf2aa439e43419b62b0b1a63c32eb789218e8ba88fe0a4979063a93744eae4917", + "s": "0x6b87a6e4aaa1fa3640e97c8d442c276500e8269e9a1e0415bd671de85398138f", + "maxFeePerGas": 170000000000, + "maxPriorityFeePerGas": 1000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 26, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1124010, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xd2651c662c2ea6edc0c761b0a9ead9a4f44e6b39d61564d9827f1656616cd1dd", + "from": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 220436, + "gasPrice": 1052093743, + "nonce": 13994981, + "value": 0, + "v": "0x0", + "r": "0x2c622ccf99208475ba9a580983af21054f2d340e744a6916f46f664b754a0b72", + "s": "0x786d6ff88e0dc704cc8f7dda1ba537a58434f537bce2324003564dd023d61a28", + "maxFeePerGas": 170000000000, + "maxPriorityFeePerGas": 1000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 27, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1187219, + "gasUsed": 63209, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x474957E5a4429A14D5d47FE8D646f52b93d5672c" + }, + { + "name": "_value", + "type": "uint256", + "value": 40200000 + } + ], + "args": { + "_to": "0x474957E5a4429A14D5d47FE8D646f52b93d5672c", + "_value": 40200000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 15, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd2651c662c2ea6edc0c761b0a9ead9a4f44e6b39d61564d9827f1656616cd1dd", + "transactionIndex": 27, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000002656740", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000021a31ee1afc51d94c2efccaa2092ad1028285549", + "0x000000000000000000000000474957e5a4429a14d5d47fe8d646f52b93d5672c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549" + }, + { + "name": "to", + "type": "address", + "value": "0x474957E5a4429A14D5d47FE8D646f52b93d5672c" + }, + { + "name": "value", + "type": "uint256", + "value": 40200000 + } + ], + "args": { + "from": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549", + "to": "0x474957E5a4429A14D5d47FE8D646f52b93d5672c", + "value": 40200000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xa5a94f8b4b820474e0e44d7a5d2aa4a3b53e547c2e3e4d05ad47f05f40935234", + "from": "0xDae54Db7ecd20509b8B266C9D1D4A8c8C6446FD1", + "to": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "gas": 40175, + "gasPrice": 1052093743, + "nonce": 1407, + "value": 0, + "v": "0x1", + "r": "0xe8cfef7fc3db2b51684a26c67bfc6d789bc4324cc6e869e9b961c827099fe90d", + "s": "0x23e36a4e67b7941b41b3db682cbd2437b4a333064b1b1d4c44b5771678d0d1e1", + "maxFeePerGas": 1750000000, + "maxPriorityFeePerGas": 1000000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 28, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1222537, + "gasUsed": 35318, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "d45e2bc72336ff17f2cbbe2546853772f343ab9532b123e7e87dc0c11d72b20c", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Uniswap", + "symbol": "UNI", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43" + }, + { + "name": "_value", + "type": "uint256", + "value": "6573400000000000000000" + } + ], + "args": { + "_to": "0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43", + "_value": "6573400000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 16, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa5a94f8b4b820474e0e44d7a5d2aa4a3b53e547c2e3e4d05ad47f05f40935234", + "transactionIndex": 28, + "address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "data": "0x000000000000000000000000000000000000000000000164584018a258bc0000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000dae54db7ecd20509b8b266c9d1d4a8c8c6446fd1", + "0x000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e43" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "d45e2bc72336ff17f2cbbe2546853772f343ab9532b123e7e87dc0c11d72b20c", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Uniswap", + "symbol": "UNI", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xDae54Db7ecd20509b8B266C9D1D4A8c8C6446FD1" + }, + { + "name": "to", + "type": "address", + "value": "0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43" + }, + { + "name": "value", + "type": "uint256", + "value": "6573400000000000000000" + } + ], + "args": { + "from": "0xDae54Db7ecd20509b8B266C9D1D4A8c8C6446FD1", + "to": "0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43", + "value": "6573400000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "from": "0x6523FE8BC1E941b2690534CB3BE142745406A969", + "to": "0x8F5835e9D756C9bd934Bce527157A4b0Ef3c5cB7", + "gas": 700000, + "gasPrice": 1052093743, + "input": "0x4a7cf36200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000bb5f780000000000000000000000000000000000000000000000000000000000000004000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000016bee5962be10400000000000000000000000000000000000000000000000000000000000000000000000023301b344b52d23b000000000000000000000000000000000000000000000000000000012a07479a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000074c363e7577a6b3830b5025f60204d686ed2d5af000000000000000000000000000000000000000000000000000000012a07479a00000000000000000000000000000000000000000000000022ef1ee7f73dd4da00000000000000000000000000000000000000000000000000000000698d7735faed186b892ce14a11a58b1fdbe9de8e9fc9cac097c5ce6ab384d1318258905d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012a07479a0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000004139389595b667e5c90c6ad5573544e4dcb854ceace50409d5261134fefdec1cfe1711b263e2e7d8f894cfa3131ef5e8e0631143ccac8fb5e4b93138d14a6b8e011b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000340000000000000000000000000bbbbbbb520d69a9775e85b458c58c648259fad5f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002644dcebcba00000000000000000000000000000000000000000000000000000000698d70870000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab4100000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f000000000000000000000000000000000000000000000000000004cfc90a936f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000012a00f71c0000000000000000000000000000000000000000000000002331e882e0bee8000000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000041497ef6b80bb3ee0b138c4b2717c057f53bce4b63f79adc2afc8d2b180e03d3af2f4a9278aafe201d8202a9e8cff7dafd23a6d22bb5ee91b7c410653fa2ccf7661b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000242e1a7d4d00000000000000000000000000000000000000000000000023301b344b52d23b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 594, + "value": 0, + "v": "0x0", + "r": "0xa811b78ffafbb18395506736e4554078fa98c98f8ad03c4c63a8f4524010bcb3", + "s": "0xd646fda51aa4da76075b83d29e3787588b6cc57923751608f193d0769484641", + "maxFeePerGas": 1052093743, + "maxPriorityFeePerGas": 1052093743, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 29, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1456381, + "gasUsed": 233844, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "1f06a999c1051399dbca26ae71c6bf35a1d978f34ed25d2f7aae822ca39aaafd", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 17, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "data": "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000012a07479a00000000000000000000000000000000000000000000000023301b344b52d23b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000380441e64681a682a5101c93726990b0e120dc63038c7067e0a142881ae19a34a474c363e7577a6b3830b5025f60204d686ed2d5af698d77350000000000000000", + "topics": [ + "0xa07a543ab8a018198e99ca0184c93fe9050a79400a0a723441f84de1d972cc17", + "0x00000000000000000000000074c363e7577a6b3830b5025f60204d686ed2d5af" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a80f81085885bcf63662379b159e6ac5665fabb80bab9a7f68b9a4287b0ba365", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 18, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000012a07479a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000074c363e7577a6b3830b5025f60204d686ed2d5af", + "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x74c363e7577A6B3830B5025f60204d686ED2D5af" + }, + { + "name": "to", + "type": "address", + "value": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + { + "name": "value", + "type": "uint256", + "value": 5000087450 + } + ], + "args": { + "from": "0x74c363e7577A6B3830B5025f60204d686ED2D5af", + "to": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "value": 5000087450 + } + } + }, + { + "removed": false, + "logIndex": 19, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000012a00f71c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41", + "0x00000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + { + "name": "to", + "type": "address", + "value": "0x51C72848c68a965f66FA7a88855F9f7784502a7F" + }, + { + "name": "value", + "type": "uint256", + "value": 4999673628 + } + ], + "args": { + "from": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "to": "0x51C72848c68a965f66FA7a88855F9f7784502a7F", + "value": 4999673628 + } + } + }, + { + "removed": false, + "logIndex": 20, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x0000000000000000000000000000000000000000000000002331e882e0bee800", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f", + "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x51C72848c68a965f66FA7a88855F9f7784502a7F" + }, + { + "name": "dst", + "type": "address", + "value": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + { + "name": "wad", + "type": "uint256", + "value": "2536063714000300032" + } + ], + "args": { + "src": "0x51C72848c68a965f66FA7a88855F9f7784502a7F", + "dst": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "wad": "2536063714000300032" + } + } + }, + { + "removed": false, + "logIndex": 21, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0xbbbbbBB520d69a9775E85b458C58c648259FAD5F", + "data": "0x", + "topics": [ + "0xadd7095becdaa725f0f33243630938c861b0bba83dfd217d4055701aa768ec2e", + "0x0000000000000000000000000000000000000000000000000000000000000000" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "98feaf4a1e80d2c8a198fe6b9ab4278a8dd839b4d3aacdeea823b62871cebc05", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 22, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "data": "0x00000000000000000000000000000000000000000000000000000000000000004dcebcba00000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xed99827efb37016f2275f98c4bcf71c7551c75d59e9b450f79fa32e60be672c2", + "0x000000000000000000000000bbbbbbb520d69a9775e85b458c58c648259fad5f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a80f81085885bcf63662379b159e6ac5665fabb80bab9a7f68b9a4287b0ba365", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 23, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000023301b344b52d23b", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Withdrawal", + "signature": "Withdrawal(address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41" + }, + { + "name": "wad", + "type": "uint256", + "value": "2535556501625557563" + } + ], + "args": { + "src": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "wad": "2535556501625557563" + } + } + }, + { + "removed": false, + "logIndex": 24, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "data": "0x00000000000000000000000000000000000000000000000000000000000000002e1a7d4d00000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xed99827efb37016f2275f98c4bcf71c7551c75d59e9b450f79fa32e60be672c2", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a80f81085885bcf63662379b159e6ac5665fabb80bab9a7f68b9a4287b0ba365", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 25, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "transactionIndex": 29, + "address": "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + "data": "0x", + "topics": [ + "0x40338ce1a7c49204f0099533b1e9a7ee0a3d261f84974ab7af36105b8c4e9db4", + "0x0000000000000000000000008f5835e9d756c9bd934bce527157a4b0ef3c5cb7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a80f81085885bcf63662379b159e6ac5665fabb80bab9a7f68b9a4287b0ba365", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x08f9d6e82d8d4d7194341435d0495c6eebaceb6c6eff732e8038ed6c3706267d", + "from": "0xBC1a56b754D5E04538a822600fff226ec1315ED5", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 80000, + "gasPrice": 1000100000, + "nonce": 1593, + "value": 0, + "v": "0x25", + "r": "0xb99fbbfc9cb7c71848a38975c3fe32863a2ab1b4d89ec84b57b77ce8d10209d1", + "s": "0x21e604c12a79903fa040a6a30c36be9a6ede3b23db9ec99799e298f5a8932330", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 30, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1519590, + "gasUsed": 63209, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x9723C451e0f113A6ea14Bace63e4AD383aB19590" + }, + { + "name": "_value", + "type": "uint256", + "value": 9000000000 + } + ], + "args": { + "_to": "0x9723C451e0f113A6ea14Bace63e4AD383aB19590", + "_value": 9000000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 26, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x08f9d6e82d8d4d7194341435d0495c6eebaceb6c6eff732e8038ed6c3706267d", + "transactionIndex": 30, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000218711a00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000bc1a56b754d5e04538a822600fff226ec1315ed5", + "0x0000000000000000000000009723c451e0f113a6ea14bace63e4ad383ab19590" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xBC1a56b754D5E04538a822600fff226ec1315ED5" + }, + { + "name": "to", + "type": "address", + "value": "0x9723C451e0f113A6ea14Bace63e4AD383aB19590" + }, + { + "name": "value", + "type": "uint256", + "value": 9000000000 + } + ], + "args": { + "from": "0xBC1a56b754D5E04538a822600fff226ec1315ED5", + "to": "0x9723C451e0f113A6ea14Bace63e4AD383aB19590", + "value": 9000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x809b302e68704e651034c9a9b8e30f8f0d1f52fd8f252e31064f855a2ccf302f", + "from": "0xc22fa213f4d99E4dB0bE59bEe8ada41366bEe415", + "to": "0xEbA88149813BEc1cCcccFDb0daCEFaaa5DE94cB1", + "gas": 22000, + "gasPrice": 1000000000, + "input": "0x", + "nonce": 0, + "value": "110419480000000000", + "v": "0x25", + "r": "0xc67adeeeb863c60753306717b0d39de6c9cc1100fa3e64d9d5e617f2015d9230", + "s": "0x74c31777193347d0a302e0fbc2aa0591159d595cff5f189a3d791908ebba4fed", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 31, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1540590, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xa13c39066b500e766749ac4e0f0f597a64ce0c0da00aa4f31941c7d8a64b29f7", + "from": "0x91D40E4818F4D4C57b4578d9ECa6AFc92aC8DEbE", + "to": "0x0b38210ea11411557c13457D4dA7dC6ea731B88a", + "gas": 210000, + "gasPrice": 869793743, + "nonce": 661413, + "value": 0, + "v": "0x1", + "r": "0x44c9d01a4f79f5b40271876a8a6207520626ef7090e3f5bfdde4e6962289fd03", + "s": "0x2cd40eb1f719fbda4b6d917c7042ec724181a46508113cee4ccbfeea378e959e", + "maxFeePerGas": 500817700000, + "maxPriorityFeePerGas": 817700000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 32, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1592304, + "gasUsed": 51714, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "a5f006167ef4363629701197f17ba63af86005c02ca89c30f0032bd767c4c03d", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "API3", + "symbol": "API3", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x1917244EA3a62f35D83e5dB1DbF57241f27EFfd4" + }, + { + "name": "_value", + "type": "uint256", + "value": "127833260243510000000000" + } + ], + "args": { + "_to": "0x1917244EA3a62f35D83e5dB1DbF57241f27EFfd4", + "_value": "127833260243510000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 27, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa13c39066b500e766749ac4e0f0f597a64ce0c0da00aa4f31941c7d8a64b29f7", + "transactionIndex": 32, + "address": "0x0b38210ea11411557c13457D4dA7dC6ea731B88a", + "data": "0x000000000000000000000000000000000000000000001b11dadc45d50e6a9c00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000091d40e4818f4d4c57b4578d9eca6afc92ac8debe", + "0x0000000000000000000000001917244ea3a62f35d83e5db1dbf57241f27effd4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a5f006167ef4363629701197f17ba63af86005c02ca89c30f0032bd767c4c03d", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "API3", + "symbol": "API3", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x91D40E4818F4D4C57b4578d9ECa6AFc92aC8DEbE" + }, + { + "name": "to", + "type": "address", + "value": "0x1917244EA3a62f35D83e5dB1DbF57241f27EFfd4" + }, + { + "name": "value", + "type": "uint256", + "value": "127833260243510000000000" + } + ], + "args": { + "from": "0x91D40E4818F4D4C57b4578d9ECa6AFc92aC8DEbE", + "to": "0x1917244EA3a62f35D83e5dB1DbF57241f27EFfd4", + "value": "127833260243510000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xd22f1f953df2fbad50eafcc1821f7b35981319c8fe71bd3d2c60dbcc3bec5160", + "from": "0x0aBbc482FBD91DBF413E3D6Cc5622e03552AC13a", + "to": "0x241cDab6554c7830fCBd3bB285766CcbfF44d45e", + "gas": 21000, + "gasPrice": 830513986, + "input": "0x", + "nonce": 291865, + "value": "16000000000000000", + "v": "0x0", + "r": "0x5cbee7a8100a26ccc71c852613a05e7559535f482aa8001bb1e39658cabb5d16", + "s": "0x4dad24e4453c4b0e20e2b66fadef21ec76e1aadee1009c27742ce41b8cdb4f3", + "maxFeePerGas": 1014547019, + "maxPriorityFeePerGas": 778420243, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 33, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1613304, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x898fa6447ccaa2bea34d131b1047c78aabbb91b56632333e75b49330d773e376", + "from": "0xB3185a7007018BFBBe64740081b28Ee5dAd4c2F4", + "to": "0x76EeB4C8B149738A9B198D866C80e8087a0A4F17", + "gas": 21000, + "gasPrice": 830513986, + "input": "0x", + "nonce": 0, + "value": "45725005393015154", + "v": "0x1", + "r": "0xbf3d8d2b3a6ace38cc930e307c792230a42616bb558ecbbc01437ef2dc662600", + "s": "0xba02e75510b55b0b8167676a384308cc8b2e4f10d042f62d96f473a808550cf", + "maxFeePerGas": 935838094, + "maxPriorityFeePerGas": 778420243, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 34, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1634304, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x929ca40040739dd0c65f563b316e6c11647608c52fc2c982919a2e47ffc45ab3", + "from": "0x76EeB4C8B149738A9B198D866C80e8087a0A4F17", + "to": "0x5909859cA84a208d9d96996528570108c7d8203F", + "gas": 21000, + "gasPrice": 830513986, + "input": "0x", + "nonce": 26456, + "value": 21258637071000, + "v": "0x1", + "r": "0x36cdadacdb0d751504772ab65ea8a58e6183db2cce167f61c3a74d07447dbb3e", + "s": "0x307156e62fb5688b59b22a01b83a65eecf55358f8f211a6f672286a80e9deb20", + "maxFeePerGas": 934350782, + "maxPriorityFeePerGas": 778420243, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 35, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1655304, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x671bbfa74349c9eccecca2be90576fc590997fc6ca2c6c53379b26d45710c002", + "from": "0x6F858f383842c887A82d30b392Cfc686938413eC", + "to": "0xb788144DF611029C60b859DF47e79B7726C4DEBa", + "gas": 2000000, + "gasPrice": 552093743, + "nonce": 6336, + "value": 0, + "v": "0x1", + "r": "0x726013bdbc893662ee73dc507b8a61ed7c7e79b581e869baa1c12141815c254d", + "s": "0x5fb3e991688f29529f9316e0f456b1b04e4f23c934211bf1babb310cbd1d0f51", + "maxFeePerGas": 5000000000, + "maxPriorityFeePerGas": 500000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 36, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1720551, + "gasUsed": 65247, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "931b578a8bed981653a7801ca022394f23ee508d164292897e09d0eecfcabcd5", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Vultisig Token", + "symbol": "VULT", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x76385141b359A97178e8391205e837F2cBc39450" + }, + { + "name": "_value", + "type": "uint256", + "value": "3105000000000000000000" + } + ], + "args": { + "_to": "0x76385141b359A97178e8391205e837F2cBc39450", + "_value": "3105000000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 28, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x671bbfa74349c9eccecca2be90576fc590997fc6ca2c6c53379b26d45710c002", + "transactionIndex": 36, + "address": "0xb788144DF611029C60b859DF47e79B7726C4DEBa", + "data": "0x0000000000000000000000000000000000000000000000a85287f90143e40000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006f858f383842c887a82d30b392cfc686938413ec", + "0x00000000000000000000000076385141b359a97178e8391205e837f2cbc39450" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "931b578a8bed981653a7801ca022394f23ee508d164292897e09d0eecfcabcd5", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Vultisig Token", + "symbol": "VULT", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6F858f383842c887A82d30b392Cfc686938413eC" + }, + { + "name": "to", + "type": "address", + "value": "0x76385141b359A97178e8391205e837F2cBc39450" + }, + { + "name": "value", + "type": "uint256", + "value": "3105000000000000000000" + } + ], + "args": { + "from": "0x6F858f383842c887A82d30b392Cfc686938413eC", + "to": "0x76385141b359A97178e8391205e837F2cBc39450", + "value": "3105000000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xf70c0266a9deebed39320a53f1cff3e750d0fc2278ab112393ac66593d475a00", + "from": "0x912024C256a8eaeE5324bc48a76EE303734568a8", + "to": "0xA227Cc36938f0c9E09CE0e64dfab226cad739447", + "gas": 400000, + "gasPrice": 152093743, + "nonce": 306, + "value": 0, + "v": "0x0", + "r": "0xf1185acc3c8e14c99b9eca6576eed374999af689156bcd64804768184faa8dc4", + "s": "0x2d12b2c66b00dbfa328084fe00876950b308db4a772920b544ea891f11f1a939", + "maxFeePerGas": 200000000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 37, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1755105, + "gasUsed": 34554, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5a1fecceb624a2fc93a1f219649a060aa690edb1f0cb4a5f43b72fd36ce624d3", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Open", + "symbol": "OPEN", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xd67e934eEE4791c3f0D8A800bfDb1ed6CEcDc83b" + }, + { + "name": "_value", + "type": "uint256", + "value": "100000000000000000000000" + } + ], + "args": { + "_to": "0xd67e934eEE4791c3f0D8A800bfDb1ed6CEcDc83b", + "_value": "100000000000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 29, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xf70c0266a9deebed39320a53f1cff3e750d0fc2278ab112393ac66593d475a00", + "transactionIndex": 37, + "address": "0xA227Cc36938f0c9E09CE0e64dfab226cad739447", + "data": "0x00000000000000000000000000000000000000000000152d02c7e14af6800000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000912024c256a8eaee5324bc48a76ee303734568a8", + "0x000000000000000000000000d67e934eee4791c3f0d8a800bfdb1ed6cecdc83b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5a1fecceb624a2fc93a1f219649a060aa690edb1f0cb4a5f43b72fd36ce624d3", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Open", + "symbol": "OPEN", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x912024C256a8eaeE5324bc48a76EE303734568a8" + }, + { + "name": "to", + "type": "address", + "value": "0xd67e934eEE4791c3f0D8A800bfDb1ed6CEcDc83b" + }, + { + "name": "value", + "type": "uint256", + "value": "100000000000000000000000" + } + ], + "args": { + "from": "0x912024C256a8eaeE5324bc48a76EE303734568a8", + "to": "0xd67e934eEE4791c3f0D8A800bfDb1ed6CEcDc83b", + "value": "100000000000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x058b160b889f0629d0245a9682adf27e207cb57ce9938f2b679c54685952089e", + "from": "0x9E336b34Bfa786ae0c56a776E13FB85A7e0Cb234", + "to": "0x6e6F6d696e61decd6605bD4a57836c5DB6923340", + "gas": 400000, + "gasPrice": 152093743, + "nonce": 712, + "value": 0, + "v": "0x0", + "r": "0x82bec95eaec4f7748f49f516df3d2c79ad109e19366974d6d8a56244c290f717", + "s": "0x35f8eda36e590cbd0d1e9522aa52bbe3ff52cc0f4b737010e1116c69c46095f6", + "maxFeePerGas": 200000000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 38, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1789215, + "gasUsed": 34110, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "e393f7bfc5bec6e63d22b1447aa3d71091bc77dd4d913bce804e048926629d7c", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Nomina", + "symbol": "NOM", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x789903b88aE058d8C733545ea3F94036552bfe74" + }, + { + "name": "_value", + "type": "uint256", + "value": "2000000000000000000000000" + } + ], + "args": { + "_to": "0x789903b88aE058d8C733545ea3F94036552bfe74", + "_value": "2000000000000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 30, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x058b160b889f0629d0245a9682adf27e207cb57ce9938f2b679c54685952089e", + "transactionIndex": 38, + "address": "0x6e6F6d696e61decd6605bD4a57836c5DB6923340", + "data": "0x00000000000000000000000000000000000000000001a784379d99db42000000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009e336b34bfa786ae0c56a776e13fb85a7e0cb234", + "0x000000000000000000000000789903b88ae058d8c733545ea3f94036552bfe74" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e393f7bfc5bec6e63d22b1447aa3d71091bc77dd4d913bce804e048926629d7c", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Nomina", + "symbol": "NOM", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9E336b34Bfa786ae0c56a776E13FB85A7e0Cb234" + }, + { + "name": "to", + "type": "address", + "value": "0x789903b88aE058d8C733545ea3F94036552bfe74" + }, + { + "name": "value", + "type": "uint256", + "value": "2000000000000000000000000" + } + ], + "args": { + "from": "0x9E336b34Bfa786ae0c56a776E13FB85A7e0Cb234", + "to": "0x789903b88aE058d8C733545ea3F94036552bfe74", + "value": "2000000000000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6", + "gas": 234417, + "gasPrice": 152093743, + "input": "0xc97c547900000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4500000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000000000000000000000000000000000000698d70910000000000000000000000000000000000000000000002bec6b29d7543947600", + "nonce": 2291769, + "value": 0, + "v": "0x1", + "r": "0x8bf7ee17ababebc4719b3c7758f8b4cf64d25887a4d07b8d61cf31c3854a7178", + "s": "0x74ffa79b1c7953dab502ec0c4b17a8a634411c43b9d0448ac1d73c7bfe8d88fd", + "maxFeePerGas": 500000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 39, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 1953026, + "gasUsed": 163811, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "6034304a1a9ebd558a0b87708ddc7d847766cdfb9fbad4fc984df086e060d159", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 31, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "transactionIndex": 39, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000001375d8655d61b17e523c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x0000000000000000000000004cfc111e7aa7b1594b3699cdf48521073bd723e6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6" + }, + { + "name": "value", + "type": "uint256", + "value": "91898825203106287866428" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6", + "value": "91898825203106287866428" + } + } + }, + { + "removed": false, + "logIndex": 32, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "transactionIndex": 39, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000011cdf4a1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000081aee07f99be78d88881fa6d98feff7555113635", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635" + }, + { + "name": "to", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "value", + "type": "uint256", + "value": 298710177 + } + ], + "args": { + "from": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "to": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "value": 298710177 + } + } + }, + { + "removed": false, + "logIndex": 33, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "transactionIndex": 39, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x00000000000000000000000000000000000000000000025df20b0b44f949601e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004cfc111e7aa7b1594b3699cdf48521073bd723e6", + "0x00000000000000000000000081aee07f99be78d88881fa6d98feff7555113635" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6" + }, + { + "name": "to", + "type": "address", + "value": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635" + }, + { + "name": "value", + "type": "uint256", + "value": "11177721210967069122590" + } + ], + "args": { + "from": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6", + "to": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "value": "11177721210967069122590" + } + } + }, + { + "removed": false, + "logIndex": 34, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "transactionIndex": 39, + "address": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "data": "0x00000000000000000000000000000000000000000000025df20b0b44f949601effffffffffffffffffffffffffffffffffffffffffffffffffffffffee320b5f0000000000000000000000000000000000000000000002bec6b29d754394760000000000000000000000000000000000000000000000000016915592dbc03265fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb3b2e", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "info": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "info": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45" + }, + { + "name": "recipient", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "amount0", + "type": "int256", + "value": "11177721210967069122590" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457584007912830929759" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "12963932019036440000000" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "1626175029697852005" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129327406" + } + ], + "args": { + "sender": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "recipient": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "amount0": "11177721210967069122590", + "amount1": "115792089237316195423570985008687907853269984665640564039457584007912830929759", + "sqrtPriceX96": "12963932019036440000000", + "liquidity": "1626175029697852005", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129327406" + } + } + }, + { + "removed": false, + "logIndex": 35, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "transactionIndex": 39, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000001117e65a521cb834f21e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004cfc111e7aa7b1594b3699cdf48521073bd723e6", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6" + }, + { + "name": "to", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "value", + "type": "uint256", + "value": "80721103992139218743838" + } + ], + "args": { + "from": "0x4CfC111E7aA7B1594B3699cDf48521073BD723E6", + "to": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "value": "80721103992139218743838" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "gas": 1004358, + "gasPrice": 152093743, + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000009255ffce64c894cff80000000000000000000000000000000000000000000000000046658ed10f3334b00000000000000000000000000000000000000000000000000000000698d7e7b00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e2804200000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000b771f724c504b329623b0ce9199907137670600e00000000000000000000000000000000000000000000000000000000000000020000000000000000000122c49c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb00000000000000000001044cb771f724c504b329623b0ce9199907137670600e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e77777777111180000000000000000000000000000000000004689ac586778913777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "nonce": 2291770, + "value": 0, + "v": "0x0", + "r": "0xe1113f340d684748163f8e1916c2af4141a716323bedb2452a397d5aedd5efc5", + "s": "0x21d33928d83f1e9a7b93e858ad92aae199eab3dd9e4086e27a56e5c8ebe16d4f", + "maxFeePerGas": 500000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 40, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 2247738, + "gasUsed": 294712, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 36, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x00000000000000000000000000000000000000000000000000000000000344c8", + "topics": [ + "0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 37, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x7970b0744fdb6cf0b120e5e0a5f4da3ab8cbec6d5d9ec8a4f327ccc1d8a5eb8b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 38, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "data": "0x000000000000000000000000000000000000000000000823d2de85493cc1f7e0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "value", + "type": "uint256", + "value": "38439762634279389100000" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "value": "38439762634279389100000" + } + } + }, + { + "removed": false, + "logIndex": 39, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000003ebf5d209626751", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": "282589684090169169" + } + ], + "args": { + "src": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": "282589684090169169" + } + } + }, + { + "removed": false, + "logIndex": 40, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "data": "0x000000000000000000000000000000000000000000000823d2de85493cc1f7e0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "to", + "type": "address", + "value": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB" + }, + { + "name": "value", + "type": "uint256", + "value": "38439762634279389100000" + } + ], + "args": { + "from": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "to": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "value": "38439762634279389100000" + } + } + }, + { + "removed": false, + "logIndex": 41, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "data": "0x000000000000000000000000000000000000000000000823d2de85493cc1f7e0fffffffffffffffffffffffffffffffffffffffffffffffffc140a2df69d98af000000000000000000000000000000000000000000b27c19ac2ec652b1c20421000000000000000000000000000000000000000000001326ec1f30b0807311c6fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe3295", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "info": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "recipient", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "amount0", + "type": "int256", + "value": "38439762634279389100000" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457301418229039470767" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "215774842910953753767183393" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "90442953820776078447046" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129521813" + } + ], + "args": { + "sender": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "recipient": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "amount0": "38439762634279389100000", + "amount1": "115792089237316195423570985008687907853269984665640564039457301418229039470767", + "sqrtPriceX96": "215774842910953753767183393", + "liquidity": "90442953820776078447046", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129521813" + } + } + }, + { + "removed": false, + "logIndex": 42, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "data": "0x0000000000000000000000000000000000000000000001018d1e61034c8b07a0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x000000000000000000000000b771f724c504b329623b0ce9199907137670600e" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0xB771f724C504b329623B0ce9199907137670600E" + }, + { + "name": "value", + "type": "uint256", + "value": "4750981898618800900000" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0xB771f724C504b329623B0ce9199907137670600E", + "value": "4750981898618800900000" + } + } + }, + { + "removed": false, + "logIndex": 43, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000007ca4f37d1521e0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b771f724c504b329623b0ce9199907137670600e", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xB771f724C504b329623B0ce9199907137670600E" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": "35084262794666464" + } + ], + "args": { + "src": "0xB771f724C504b329623B0ce9199907137670600E", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": "35084262794666464" + } + } + }, + { + "removed": false, + "logIndex": 44, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xB771f724C504b329623B0ce9199907137670600E", + "data": "0x00000000000000000000000000000000000000000000ba9c4198f3c6d78ad0f70000000000000000000000000000000000000000000000005a1861572184305e", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "info": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Sync", + "signature": "Sync(uint112,uint112)", + "params": [ + { + "name": "reserve0", + "type": "uint112", + "value": "881242584685096970408183" + }, + { + "name": "reserve1", + "type": "uint112", + "value": "6492045889706930270" + } + ], + "args": { + "reserve0": "881242584685096970408183", + "reserve1": "6492045889706930270" + } + } + }, + { + "removed": false, + "logIndex": 45, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xB771f724C504b329623B0ce9199907137670600E", + "data": "0x0000000000000000000000000000000000000000000001018d1e61034c8b07a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007ca4f37d1521e0", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "info": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x031F1aD10547b8dEB43A36e5491c06A93812023a" + }, + { + "name": "amount0In", + "type": "uint256", + "value": "4750981898618800900000" + }, + { + "name": "amount1In", + "type": "uint256", + "value": 0 + }, + { + "name": "amount0Out", + "type": "uint256", + "value": 0 + }, + { + "name": "amount1Out", + "type": "uint256", + "value": "35084262794666464" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + } + ], + "args": { + "sender": "0x031F1aD10547b8dEB43A36e5491c06A93812023a", + "amount0In": "4750981898618800900000", + "amount1In": 0, + "amount0Out": 0, + "amount1Out": "35084262794666464", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + } + } + }, + { + "removed": false, + "logIndex": 46, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000000000000000001e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000fa00a9ed787f3793db668bff3e6e6e7db0f92a1b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "dst", + "type": "address", + "value": "0xFa00A9Ed787f3793DB668BFf3e6E6E7Db0F92a1B" + }, + { + "name": "wad", + "type": "uint256", + "value": 30 + } + ], + "args": { + "src": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "dst": "0xFa00A9Ed787f3793DB668BFf3e6E6E7Db0F92a1B", + "wad": 30 + } + } + }, + { + "removed": false, + "logIndex": 47, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "topics": [ + "0x7bec7d55a62a7a7b8068f1533e2a3bbf727b3e2e57f30c576fe159da60e09a65" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 48, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xfd08115c8e43d2a49d95ee18d7f69b8bbac60bd368c73cf22d30664a22a0626d" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 49, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000004689ac586778913", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "dst", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "wad", + "type": "uint256", + "value": "317673946884835603" + } + ], + "args": { + "src": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "dst": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "wad": "317673946884835603" + } + } + }, + { + "removed": false, + "logIndex": 50, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "transactionIndex": 40, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x00000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e84040000000000000000000000000000000000000000000009255ffce64c894cff8000000000000000000000000000000000000000000000000004689ac586778913", + "topics": [ + "0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x14149ee8d87d7d62e4cd6b543422be63eb9eb7df01f5a1d533096bd12f28ef52", + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "gas": 1496400, + "gasPrice": 152093743, + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000440724c446e6bb3f580000000000000000000000000000000000000000000000000020c34ee628031f000000000000000000000000000000000000000000000000000000000698d7e7b00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e2804200000000000000000000000000000000000000000000000000000000000000030000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000030000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000b771f724c504b329623b0ce9199907137670600e0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000000000000000000000000000000000000000000003000000000000000000011e789c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb000000000000000000010834b771f724c504b329623b0ce9199907137670600e8000000000000000000100640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e280420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c8777777771111800000000000000000000000000000000000020d41dce815be18777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "nonce": 2291771, + "value": 0, + "v": "0x1", + "r": "0x3876ba717f26f16cfd74ecc13d914ac1ac56e11686da912122b62bcf72617b4c", + "s": "0x609c48dd98a05db7a02f0765d66d1bc28c77ec284898487b6a965bd2596f7c65", + "maxFeePerGas": 500000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 41, + "status": "failure", + "contractAddress": null, + "cumulativeGasUsed": 2340561, + "gasUsed": 92823, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "gas": 2718024, + "gasPrice": 152093743, + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000001f7c9af534c3dc0acc0000000000000000000000000000000000000000000000000000000000ecd1a9500000000000000000000000000000000000000000000000000000000698d7e800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac500000000000000000000000000000000000000000000000000000000000000030000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb500000000000000000000000000000000000000000000000000000000000000030000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000000000000000000000000000000000000000000003800000000000000000010ae00000000000000000000000000000000000000000000000000000000000010074cb488b8452996454237d824d72f86090470292f4000000000000000000031bbc81aee07f99be78d88881fa6d98feff755511363500000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa00000000000000000000000000000000000000000000000000000000000000018000000000000000010227102bd541ab3b704f7d4c9dff79efadeaa85ec034f1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003ba3321cb00604c000000000000000000000000000000000000000000000000000000000698d7098000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff860000000000000000000000000000000000000000000000000000000004512fe800000000000000000000000000000000000000000000000000828a0be746631700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e4525e6938a36484d6dfae3c28c97dba5183d04fb4c9d634d3953a03b4ab8d0625692296ba4bff24567ef08ed7d7357bf81a4b036a23cb703c80f5a47f342cd91b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c21010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c210100000000000000000000000000000000000000000000000000000000000000018000000000000000020327104f493b7de8aac7d55f71853688b1f7c8f0243c850000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000777777771111800000000000000000000000000000000000000000000ed4b27e777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "nonce": 2291772, + "value": 0, + "v": "0x1", + "r": "0xac933b42b0613d52cb6839c2801229c04f6bee0b1578d1601cf8dd957987def5", + "s": "0x48c7dc0b3c3e4ebce4fb6fb6d156f8e32560f972eaad5b25e709d1c9137311d2", + "maxFeePerGas": 500000000, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 42, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 3062697, + "gasUsed": 722136, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 51, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x00000000000000000000000000000000000000000000000000000000000344c8", + "topics": [ + "0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 52, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x7970b0744fdb6cf0b120e5e0a5f4da3ab8cbec6d5d9ec8a4f327ccc1d8a5eb8b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 53, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x00000000000000000000000000000000000000000000008c4129073738ec5280", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "value", + "type": "uint256", + "value": "2587239462339607286400" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "value": "2587239462339607286400" + } + } + }, + { + "removed": false, + "logIndex": 54, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x000000000004444c5dc75cB358380D2e3dE08A90", + "data": "0x000000000000000000000000000000000000000000000000007d54192161b2feffffffffffffffffffffffffffffffffffffffffffffff73bed6f8c8c713ad80000000000000000000000000000000000000010e28d8be80e7f7058b902c21340000000000000000000000000000000000000000000000631697a4a1b499e8af000000000000000000000000000000000000000000000000000000000001b5710000000000000000000000000000000000000000000000000000000000002710", + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0x60790069a28eaf821b39e4829d6490f4bda65aece51192df8f8ead512435bda6", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ab6fc38524eafc79f1bd15db851491b4db13277d5a7d24b5bacf3f7279347707", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 55, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x00000000000000000000000000000000000000000000008c4129073738ec5280", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6", + "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "to", + "type": "address", + "value": "0x000000000004444c5dc75cB358380D2e3dE08A90" + }, + { + "name": "value", + "type": "uint256", + "value": "2587239462339607286400" + } + ], + "args": { + "from": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "to": "0x000000000004444c5dc75cB358380D2e3dE08A90", + "value": "2587239462339607286400" + } + } + }, + { + "removed": false, + "logIndex": 56, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "data": "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90000000000000000000000000000000000000000000000000007d54192161b2fe", + "topics": [ + "0x88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "526d1a0a121493023c0c9a33474776ab0fcc58570a0dcdf06a485aa3b559c5d0", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 57, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000007d54192161b2fe", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Deposit", + "signature": "Deposit(address,uint256)", + "params": [ + { + "name": "dst", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "wad", + "type": "uint256", + "value": "35276838999798526" + } + ], + "args": { + "dst": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "wad": "35276838999798526" + } + } + }, + { + "removed": false, + "logIndex": 58, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000007d54192161b2fe", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": "35276838999798526" + } + ], + "args": { + "src": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": "35276838999798526" + } + } + }, + { + "removed": false, + "logIndex": 59, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000000005d80c604cf7b48370", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "value", + "type": "uint256", + "value": "107801644264150303600" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "value": "107801644264150303600" + } + } + }, + { + "removed": false, + "logIndex": 60, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000000535f2c5e4b01d", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cb488b8452996454237d824d72f86090470292f4", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xCB488B8452996454237D824d72f86090470292f4" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": 1466691702009885 + } + ], + "args": { + "src": "0xCB488B8452996454237D824d72f86090470292f4", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": 1466691702009885 + } + } + }, + { + "removed": false, + "logIndex": 61, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000000005d80c604cf7b48370", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x000000000000000000000000cb488b8452996454237d824d72f86090470292f4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "to", + "type": "address", + "value": "0xCB488B8452996454237D824d72f86090470292f4" + }, + { + "name": "value", + "type": "uint256", + "value": "107801644264150303600" + } + ], + "args": { + "from": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "to": "0xCB488B8452996454237D824d72f86090470292f4", + "value": "107801644264150303600" + } + } + }, + { + "removed": false, + "logIndex": 62, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xCB488B8452996454237D824d72f86090470292f4", + "data": "0x000000000000000000000000000000000000000000000005d80c604cf7b48370fffffffffffffffffffffffffffffffffffffffffffffffffffaca0d3a1b4fe3000000000000000000000000000000000000000000f19dfe7c87430cb4c111e60000000000000000000000000000000000000000000000056d2981d32e27e0cafffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a3e", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "info": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "recipient", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "amount0", + "type": "int256", + "value": "107801644264150303600" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457582541221427630051" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "292097228511145392039072230" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "100099681336739487946" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129527870" + } + ], + "args": { + "sender": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "recipient": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "amount0": "107801644264150303600", + "amount1": "115792089237316195423570985008687907853269984665640564039457582541221427630051", + "sqrtPriceX96": "292097228511145392039072230", + "liquidity": "100099681336739487946", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129527870" + } + } + }, + { + "removed": false, + "logIndex": 63, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000000165b079ebc80d1fd6d0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "to", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "value", + "type": "uint256", + "value": "6598204088581613410000" + } + ], + "args": { + "from": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "to": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "value": "6598204088581613410000" + } + } + }, + { + "removed": false, + "logIndex": 64, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000a7dc3b1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000081aee07f99be78d88881fa6d98feff7555113635", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 176014257 + } + ], + "args": { + "from": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 176014257 + } + } + }, + { + "removed": false, + "logIndex": 65, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "data": "0x000000000000000000000000000000000000000000000165b079ebc80d1fd6d0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x00000000000000000000000081aee07f99be78d88881fa6d98feff7555113635" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "to", + "type": "address", + "value": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635" + }, + { + "name": "value", + "type": "uint256", + "value": "6598204088581613410000" + } + ], + "args": { + "from": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "to": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "value": "6598204088581613410000" + } + } + }, + { + "removed": false, + "logIndex": 66, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x81AEE07F99be78d88881Fa6D98FEFF7555113635", + "data": "0x000000000000000000000000000000000000000000000165b079ebc80d1fd6d0fffffffffffffffffffffffffffffffffffffffffffffffffffffffff5823c4f0000000000000000000000000000000000000000000002be4fb04531e6b648b700000000000000000000000000000000000000000000000016915592dbc03265fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb3b21", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "info": { + "isContract": true, + "fingerprint": "9150d7b652afaea654fdeb685f846e45adcca54e90ad3f5c9a2cc9442dec82bc", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Clearpool", + "symbol": "CPOOL", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "info": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "recipient", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "amount0", + "type": "int256", + "value": "6598204088581613410000" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457584007912953625679" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "12955356505349629036727" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "1626175029697852005" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129327393" + } + ], + "args": { + "sender": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "recipient": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "amount0": "6598204088581613410000", + "amount1": "115792089237316195423570985008687907853269984665640564039457584007912953625679", + "sqrtPriceX96": "12955356505349629036727", + "liquidity": "1626175029697852005", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129327393" + } + } + }, + { + "removed": false, + "logIndex": 67, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000828a0be746631b", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "dst", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "wad", + "type": "uint256", + "value": "36743530701808411" + } + ], + "args": { + "src": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "dst": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "wad": "36743530701808411" + } + } + }, + { + "removed": false, + "logIndex": 68, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000828a0be7466317", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x0000000000000000000000002bd541ab3b704f7d4c9dff79efadeaa85ec034f1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "guy", + "type": "address", + "value": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1" + }, + { + "name": "wad", + "type": "uint256", + "value": "36743530701808407" + } + ], + "args": { + "src": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "guy": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1", + "wad": "36743530701808407" + } + } + }, + { + "removed": false, + "logIndex": 69, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000004512fe8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 72429544 + } + ], + "args": { + "from": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 72429544 + } + } + }, + { + "removed": false, + "logIndex": 70, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000828a0be7466317", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "dst", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "wad", + "type": "uint256", + "value": "36743530701808407" + } + ], + "args": { + "src": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "dst": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "wad": "36743530701808407" + } + } + }, + { + "removed": false, + "logIndex": 71, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1", + "data": "0x00000000000000000000000000000000000000000000000000000000698d709800000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff860000000000000000000000000000000000000000000000000000000004512fe800000000000000000000000000000000000000000000000000828a0be74663170000000000000000000000000000000000000000000000000000000004512fe800000000000000000000000000000000000000000000000000828a0be74663170000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x712a85889720deeca46bcf02498ae1a7ba95372db831987c3a9572b9d96f6a15", + "0x0000000000000000000000000000000000000000000000003ba3321cb00604c0", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "75e0f15c51f73973d58abf18e75b4876f28f611e63fcfe221acd50b0f1da7b2a", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 72, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x0000000000000000000000000000000000000000000000000000000000000004", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "dst", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "wad", + "type": "uint256", + "value": 4 + } + ], + "args": { + "src": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "dst": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "wad": 4 + } + } + }, + { + "removed": false, + "logIndex": 73, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000004512fe8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c2101" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "to", + "type": "address", + "value": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101" + }, + { + "name": "value", + "type": "uint256", + "value": 72429544 + } + ], + "args": { + "from": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "to": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101", + "value": 72429544 + } + } + }, + { + "removed": false, + "logIndex": 74, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000004512fe8", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c2101", + "0x0000000000000000000000004f493b7de8aac7d55f71853688b1f7c8f0243c85" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101" + }, + { + "name": "spender", + "type": "address", + "value": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85" + }, + { + "name": "value", + "type": "uint256", + "value": 72429544 + } + ], + "args": { + "owner": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101", + "spender": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85", + "value": 72429544 + } + } + }, + { + "removed": false, + "logIndex": 75, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000004512fe8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c2101", + "0x0000000000000000000000004f493b7de8aac7d55f71853688b1f7c8f0243c85" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101" + }, + { + "name": "to", + "type": "address", + "value": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85" + }, + { + "name": "value", + "type": "uint256", + "value": 72429544 + } + ], + "args": { + "from": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101", + "to": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85", + "value": 72429544 + } + } + }, + { + "removed": false, + "logIndex": 76, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000450844f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004f493b7de8aac7d55f71853688b1f7c8f0243c85", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 72385615 + } + ], + "args": { + "from": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 72385615 + } + } + }, + { + "removed": false, + "logIndex": 77, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x4f493B7dE8aAC7d55F71853688b1F7C8F0243C85", + "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000004512fe80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450844f", + "topics": [ + "0x8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd97140", + "0x000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c2101" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c065ab9614c3c198168f1252f3fa9e0fb3814b957b175640da7396e270c05f7d", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Curve.fi Strategic USD Reserves", + "symbol": "crv2pool", + "decimals": 18 + } + }, + "event": { + "name": "TokenExchange", + "signature": "TokenExchange(address,int128,uint256,int128,uint256)", + "params": [ + { + "name": "buyer", + "type": "address", + "value": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101" + }, + { + "name": "sold_id", + "type": "int128", + "value": 1 + }, + { + "name": "tokens_sold", + "type": "uint256", + "value": 72429544 + }, + { + "name": "bought_id", + "type": "int128", + "value": 0 + }, + { + "name": "tokens_bought", + "type": "uint256", + "value": 72385615 + } + ], + "args": { + "buyer": "0xEcd7Eef15713997528896Cb5db7ec316Db4C2101", + "sold_id": 1, + "tokens_sold": 72429544, + "bought_id": 0, + "tokens_bought": 72385615 + } + } + }, + { + "removed": false, + "logIndex": 78, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000ece4800", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e8404" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "to", + "type": "address", + "value": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404" + }, + { + "name": "value", + "type": "uint256", + "value": 248399872 + } + ], + "args": { + "from": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "to": "0xb1b2d032AA2F52347fbcfd08E5C3Cc55216E8404", + "value": 248399872 + } + } + }, + { + "removed": false, + "logIndex": 79, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "transactionIndex": 42, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e84040000000000000000000000000000000000000000000001f7c9af534c3dc0acc0000000000000000000000000000000000000000000000000000000000ece4800", + "topics": [ + "0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x29a00b68476fad8c3137216b23218c2b0fa6b528fe4169902bf91e8a95b45b74", + "from": "0x55daf1Ffdd44DA5A189B1809AA5e0cb28848B23e", + "to": "0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419", + "gas": 1333685, + "gasPrice": 152093743, + "nonce": 4267, + "value": 0, + "v": "0x0", + "r": "0xaf0629fec2011345d096afd682388e88e7952a87db3231547788b9370423cd45", + "s": "0x6854fa58c638e78969605118f4454216b8ccbd2fcbf0873cfd38cee53500858c", + "maxFeePerGas": 198980368, + "maxPriorityFeePerGas": 100000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 43, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 3112469, + "gasUsed": 49772, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "a936b7ef536091e0f680760093b610baba2970ae43e906420b32a0def508e3de", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Gluwa Creditcoin Vesting Token", + "symbol": "G-CRE", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xB83630849C8A2BcB3a04062fedd015D7D67FEBDE" + }, + { + "name": "_value", + "type": "uint256", + "value": 0 + } + ], + "args": { + "_to": "0xB83630849C8A2BcB3a04062fedd015D7D67FEBDE", + "_value": 0 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 80, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x29a00b68476fad8c3137216b23218c2b0fa6b528fe4169902bf91e8a95b45b74", + "transactionIndex": 43, + "address": "0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000055daf1ffdd44da5a189b1809aa5e0cb28848b23e", + "0x000000000000000000000000b83630849c8a2bcb3a04062fedd015d7d67febde" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "a936b7ef536091e0f680760093b610baba2970ae43e906420b32a0def508e3de", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Gluwa Creditcoin Vesting Token", + "symbol": "G-CRE", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x55daf1Ffdd44DA5A189B1809AA5e0cb28848B23e" + }, + { + "name": "to", + "type": "address", + "value": "0xB83630849C8A2BcB3a04062fedd015D7D67FEBDE" + }, + { + "name": "value", + "type": "uint256", + "value": 0 + } + ], + "args": { + "from": "0x55daf1Ffdd44DA5A189B1809AA5e0cb28848B23e", + "to": "0xB83630849C8A2BcB3a04062fedd015D7D67FEBDE", + "value": 0 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x46e961ef734d008887caae4af6b1ebeb053e8868365fcfece298e7766251f163", + "from": "0xdE8E51d04e492A998cbb18BCdF79f742E2F34B08", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 50094, + "gasPrice": 141093743, + "nonce": 0, + "value": 0, + "v": "0x1", + "r": "0x777b1560174177ec39303d554bf0a160d63d84f0806c6c87036812a2de48cff1", + "s": "0x13ebe67ffe44932f179587c76e8e9049b08a7e3655414f004b7b58a7065218eb", + "maxFeePerGas": 149979640, + "maxPriorityFeePerGas": 89000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 44, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 3157629, + "gasUsed": 45160, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x76Bf6D91d4E061645a0D582B3A5dA6e17C721B23" + }, + { + "name": "_value", + "type": "uint256", + "value": 6000000000 + } + ], + "args": { + "_to": "0x76Bf6D91d4E061645a0D582B3A5dA6e17C721B23", + "_value": 6000000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 81, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x46e961ef734d008887caae4af6b1ebeb053e8868365fcfece298e7766251f163", + "transactionIndex": 44, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000165a0bc00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000de8e51d04e492a998cbb18bcdf79f742e2f34b08", + "0x00000000000000000000000076bf6d91d4e061645a0d582b3a5da6e17c721b23" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xdE8E51d04e492A998cbb18BCdF79f742E2F34B08" + }, + { + "name": "to", + "type": "address", + "value": "0x76Bf6D91d4E061645a0D582B3A5dA6e17C721B23" + }, + { + "name": "value", + "type": "uint256", + "value": 6000000000 + } + ], + "args": { + "from": "0xdE8E51d04e492A998cbb18BCdF79f742E2F34B08", + "to": "0x76Bf6D91d4E061645a0D582B3A5dA6e17C721B23", + "value": 6000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "from": "0x750E70496C9EBe5a13551F0147E02206861869a4", + "to": "0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af", + "gas": 274020, + "gasPrice": 133320192, + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698d777100000000000000000000000000000000000000000000000000000000000000010800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4000000000000000000000000000000000000000000000000000017d0ae17212a0000000000000000000000000000000000000000000076be6ab43ed9879d101000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c114cf69972e3c1b4b529e0418012c01fcf9e725000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c0fe7f77ed2f522978b719372282ca89de8cf3e4756e697800000000000c", + "nonce": 23348, + "value": 0, + "v": "0x1", + "r": "0xa9c3a3ae781e6dd9233c8e569231a3cdfb83eb9c17614d29a4200ce537e4bb3f", + "s": "0x7282864e23a5de6b2fede84641f411c4d064676c41463db2e1bb5332f5fc4fe6", + "maxFeePerGas": 133770025, + "maxPriorityFeePerGas": 81226449, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 45, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 3387158, + "gasUsed": 229529, + "fromInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [] + } + }, + "toInfo": { + "isContract": true, + "fingerprint": "cf1771aab3bdaa33f0b01540383b3061e826b341ae279638ecac266247105285", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 82, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xC114cF69972e3c1b4B529e0418012C01fcf9E725", + "data": "0x000000000000000000000000000000000000000000000000000017d0ae17212a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4", + "0x000000000000000000000000f15b73e7f5edcfc0d91da289c21d9af89cf377ce" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "6dda5f842fbb2ef519ab6de855b8ee57fb8778f030e8e579c9fac9a365c529e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Bearly Legal", + "symbol": "BEAR", + "decimals": 9 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x750E70496C9EBe5a13551F0147E02206861869a4" + }, + { + "name": "to", + "type": "address", + "value": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce" + }, + { + "name": "value", + "type": "uint256", + "value": 26185041387818 + } + ], + "args": { + "from": "0x750E70496C9EBe5a13551F0147E02206861869a4", + "to": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce", + "value": 26185041387818 + } + } + }, + { + "removed": false, + "logIndex": 83, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xC114cF69972e3c1b4B529e0418012C01fcf9E725", + "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffff9c201cf2af9ec5", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4", + "0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "6dda5f842fbb2ef519ab6de855b8ee57fb8778f030e8e579c9fac9a365c529e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Bearly Legal", + "symbol": "BEAR", + "decimals": 9 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0x750E70496C9EBe5a13551F0147E02206861869a4" + }, + { + "name": "spender", + "type": "address", + "value": "0x000000000022D473030F116dDEE9F6B43aC78BA3" + }, + { + "name": "value", + "type": "uint256", + "value": "115792089237316195423570985008687907853269984665640564039457555895724161343173" + } + ], + "args": { + "owner": "0x750E70496C9EBe5a13551F0147E02206861869a4", + "spender": "0x000000000022D473030F116dDEE9F6B43aC78BA3", + "value": "115792089237316195423570985008687907853269984665640564039457555895724161343173" + } + } + }, + { + "removed": false, + "logIndex": 84, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000007954ed93b416c2", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f15b73e7f5edcfc0d91da289c21d9af89cf377ce", + "0x000000000000000000000000d7b5d68827f8a8859b135d3f86c76c43368ffed4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce" + }, + { + "name": "dst", + "type": "address", + "value": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4" + }, + { + "name": "wad", + "type": "uint256", + "value": "34151851544024770" + } + ], + "args": { + "src": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce", + "dst": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4", + "wad": "34151851544024770" + } + } + }, + { + "removed": false, + "logIndex": 85, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce", + "data": "0x00000000000000000000000000000000000000000000000099e869eaa37edf1d000000000000000000000000000000000000000000000000001e362e066a1d19", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC114cF69972e3c1b4B529e0418012C01fcf9E725", + "info": { + "isContract": true, + "fingerprint": "6dda5f842fbb2ef519ab6de855b8ee57fb8778f030e8e579c9fac9a365c529e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Bearly Legal", + "symbol": "BEAR", + "decimals": 9 + } + } + } + } + }, + "event": { + "name": "Sync", + "signature": "Sync(uint112,uint112)", + "params": [ + { + "name": "reserve0", + "type": "uint112", + "value": "11090230538886111005" + }, + { + "name": "reserve1", + "type": "uint112", + "value": 8503820605332761 + } + ], + "args": { + "reserve0": "11090230538886111005", + "reserve1": 8503820605332761 + } + } + }, + { + "removed": false, + "logIndex": 86, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xF15b73E7F5Edcfc0d91DA289c21D9Af89CF377Ce", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000017d0ae17212a000000000000000000000000000000000000000000000000007954ed93b416c20000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x00000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af", + "0x000000000000000000000000d7b5d68827f8a8859b135d3f86c76c43368ffed4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC114cF69972e3c1b4B529e0418012C01fcf9E725", + "info": { + "isContract": true, + "fingerprint": "6dda5f842fbb2ef519ab6de855b8ee57fb8778f030e8e579c9fac9a365c529e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Bearly Legal", + "symbol": "BEAR", + "decimals": 9 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af" + }, + { + "name": "amount0In", + "type": "uint256", + "value": 0 + }, + { + "name": "amount1In", + "type": "uint256", + "value": 26185041387818 + }, + { + "name": "amount0Out", + "type": "uint256", + "value": "34151851544024770" + }, + { + "name": "amount1Out", + "type": "uint256", + "value": 0 + }, + { + "name": "to", + "type": "address", + "value": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4" + } + ], + "args": { + "sender": "0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af", + "amount0In": 0, + "amount1In": 26185041387818, + "amount0Out": "34151851544024770", + "amount1Out": 0, + "to": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4" + } + } + }, + { + "removed": false, + "logIndex": 87, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xC0FE7F77ed2f522978b719372282ca89de8cF3e4", + "data": "0x00000000000000000000000000000000000000000000775668ad777be5bb49bf", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d7b5d68827f8a8859b135d3f86c76c43368ffed4", + "0x000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "85e978a8102476d252ca14492b99a7fede872036c221630c5336e9683758d030", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Catcoin", + "symbol": "CATCOIN", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4" + }, + { + "name": "to", + "type": "address", + "value": "0x750E70496C9EBe5a13551F0147E02206861869a4" + }, + { + "name": "value", + "type": "uint256", + "value": "563555574268151736256959" + } + ], + "args": { + "from": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4", + "to": "0x750E70496C9EBe5a13551F0147E02206861869a4", + "value": "563555574268151736256959" + } + } + }, + { + "removed": false, + "logIndex": 88, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4", + "data": "0x000000000000000000000000000000000000000000000000755acfa5afe4395d000000000000000000000000000000000000000000734e3e3585acde5cf496f0", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC0FE7F77ed2f522978b719372282ca89de8cF3e4", + "info": { + "isContract": true, + "fingerprint": "85e978a8102476d252ca14492b99a7fede872036c221630c5336e9683758d030", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Catcoin", + "symbol": "CATCOIN", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Sync", + "signature": "Sync(uint112,uint112)", + "params": [ + { + "name": "reserve0", + "type": "uint112", + "value": "8456299560869050717" + }, + { + "name": "reserve1", + "type": "uint112", + "value": "139395961396157484365027056" + } + ], + "args": { + "reserve0": "8456299560869050717", + "reserve1": "139395961396157484365027056" + } + } + }, + { + "removed": false, + "logIndex": 89, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "transactionIndex": 45, + "address": "0xD7B5D68827f8a8859b135D3f86C76c43368fFED4", + "data": "0x000000000000000000000000000000000000000000000000007954ed93b416c20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000775668ad777be5bb49bf", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x00000000000000000000000066a9893cc07d91d95644aedd05d03f95e1dba8af", + "0x000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC0FE7F77ed2f522978b719372282ca89de8cF3e4", + "info": { + "isContract": true, + "fingerprint": "85e978a8102476d252ca14492b99a7fede872036c221630c5336e9683758d030", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Catcoin", + "symbol": "CATCOIN", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af" + }, + { + "name": "amount0In", + "type": "uint256", + "value": "34151851544024770" + }, + { + "name": "amount1In", + "type": "uint256", + "value": 0 + }, + { + "name": "amount0Out", + "type": "uint256", + "value": 0 + }, + { + "name": "amount1Out", + "type": "uint256", + "value": "563555574268151736256959" + }, + { + "name": "to", + "type": "address", + "value": "0x750E70496C9EBe5a13551F0147E02206861869a4" + } + ], + "args": { + "sender": "0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af", + "amount0In": "34151851544024770", + "amount1In": 0, + "amount0Out": 0, + "amount1Out": "563555574268151736256959", + "to": "0x750E70496C9EBe5a13551F0147E02206861869a4" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xe3a89fe8178aa2dc2599a5601dff659bd6b36f69506e7aa46bf0554fb7ec5df6", + "from": "0x1804E8Dc82C05595674fe44EFE9Ba439c4EC6F09", + "to": "0x71674AC30940c74F4B6f4081CF0EC392a131f943", + "gas": 23100, + "gasPrice": 131093743, + "input": "0x", + "nonce": 0, + "value": "127098919954585925", + "v": "0x0", + "r": "0xd1eee8a75d712aea4bab70595a763c8291e985596e4a30b2d0af2cffcab30692", + "s": "0x2a7929109e3568258e9bc359972b906273c2ebaa3977cc461e6f0c80e92753f3", + "maxFeePerGas": 180000000, + "maxPriorityFeePerGas": 79000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 46, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 3408158, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "from": "0x158066Ef70B5a4810bBA668182e734A158d88C3F", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "gas": 1179110, + "gasPrice": 131093743, + "input": "0xf2c426960000000000000000000000000000000000000000000000000000000000019afd000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000442db4b6a849f5c03000000000000000000000000000000000000000000000000000ea34d2d27c32300000000000000000000000000000000000000000000000000000000698d7e7a00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000a6000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa00000000000000000000000000000000000000000000000000000000000000028000000000000000000113882bd541ab3b704f7d4c9dff79efadeaa85ec034f18000000000000000000113880bdf246b4aef9cfe4dd6eef153a1b645ac4bcbb60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003ba33202bd06048000000000000000000000000000000000000000000000000000000000698d7092000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef600000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff8600000000000000000000000000000000000000000000000000000000003f2f10000000000000000000000000000000000000000000000002216da5b5424fb450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000415c7ca04472e9522304b7e69ffa6636ea08eb9c3efc0e97e84a9b272f7f9075d33787f9b508099710e05535c6be6b4af4b7b31553c482d2065736b7a961ff8b551c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003ba33202ef0d048000000000000000000000000000000000000000000000000000000000698d7092000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6000000000000000000000000b7131fc8cdc43060a6210257f537dba5fcae6aed00000000000000000000000000000000000000000000000000000000003f261e000000000000000000000000000000000000000000000002216da5b5424fb45000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000041cc77903677b457f3bfd02d05adebf408d756071d778d78544bf2e818891a863e7fc92930f07797e04c73d0fe3baa05e7832f2db20d1cfcb9bcb90c0a1a89b9d91c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004151ce86ce9b3a674df5ce65f6ce2ff86052992cc6c32c226998538ffe24d48ce47911cac6c414a972cbb132cbce912cc5a8dd3c915d5c06c92c08e6b34f65662c1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e7330237152920000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e7330237152920000000000000000000000000000000000000000000000000000000000000001000000000000000001022710dae4135dac6c62937728d145f8048b2bab2ce55c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000001000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd000000000000000000000000000000000000000000000000000000000000000100000000000000000203271086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e800000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee3ca20afc2bbb00000081b3202cffed5d56eb6a17662756ca0fdf350e732c9818", + "nonce": 94, + "value": 0, + "v": "0x1", + "r": "0xa62ba9f24ec6b8be166d85c1f7980b6c1a4f68b05a42386b23b54856d751bb6f", + "s": "0x5edf224eff519b50caddefb2f4577e0ad29ab239ea168c9eb1b7b491c820dc1b", + "maxFeePerGas": 180000000, + "maxPriorityFeePerGas": 79000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 47, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4194231, + "gasUsed": 786073, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 90, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x0000000000000000000000000000000000000000000000000000000000019afd", + "topics": [ + "0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 91, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x7970b0744fdb6cf0b120e5e0a5f4da3ab8cbec6d5d9ec8a4f327ccc1d8a5eb8b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 92, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae01", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000158066ef70b5a4810bba668182e734a158d88c3f", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x158066Ef70B5a4810bBA668182e734A158d88C3F" + }, + { + "name": "to", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368385" + } + ], + "args": { + "from": "0x158066Ef70B5a4810bBA668182e734A158d88C3F", + "to": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "value": "39302251721052368385" + } + } + }, + { + "removed": false, + "logIndex": 93, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae01", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x0000000000000000000000002bd541ab3b704f7d4c9dff79efadeaa85ec034f1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "spender", + "type": "address", + "value": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368385" + } + ], + "args": { + "owner": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "spender": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1", + "value": "39302251721052368385" + } + } + }, + { + "removed": false, + "logIndex": 94, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000003f2f0f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 4140815 + } + ], + "args": { + "from": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 4140815 + } + } + }, + { + "removed": false, + "logIndex": 95, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae01", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "to", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368385" + } + ], + "args": { + "from": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "to": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "value": "39302251721052368385" + } + } + }, + { + "removed": false, + "logIndex": 96, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x2bD541Ab3b704F7d4c9DFf79EfaDeaa85EC034f1", + "data": "0x00000000000000000000000000000000000000000000000000000000698d709200000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff8600000000000000000000000000000000000000000000000000000000003f2f10000000000000000000000000000000000000000000000002216da5b5424fb45000000000000000000000000000000000000000000000000000000000003f2f0f000000000000000000000000000000000000000000000002216da5b5424fae010000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x712a85889720deeca46bcf02498ae1a7ba95372db831987c3a9572b9d96f6a15", + "0x0000000000000000000000000000000000000000000000003ba33202bd060480", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "0x000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "75e0f15c51f73973d58abf18e75b4876f28f611e63fcfe221acd50b0f1da7b2a", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 97, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae02", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000158066ef70b5a4810bba668182e734a158d88c3f", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x158066Ef70B5a4810bBA668182e734A158d88C3F" + }, + { + "name": "to", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368386" + } + ], + "args": { + "from": "0x158066Ef70B5a4810bBA668182e734A158d88C3F", + "to": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "value": "39302251721052368386" + } + } + }, + { + "removed": false, + "logIndex": 98, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae02", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x0000000000000000000000000bdf246b4aef9cfe4dd6eef153a1b645ac4bcbb6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "spender", + "type": "address", + "value": "0x0Bdf246b4AEF9Cfe4DD6eEf153A1b645aC4BcBb6" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368386" + } + ], + "args": { + "owner": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "spender": "0x0Bdf246b4AEF9Cfe4DD6eEf153A1b645aC4BcBb6", + "value": "39302251721052368386" + } + } + }, + { + "removed": false, + "logIndex": 99, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000003f261d", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b7131fc8cdc43060a6210257f537dba5fcae6aed", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xB7131fC8Cdc43060A6210257f537DBA5FcaE6aEd" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 4138525 + } + ], + "args": { + "from": "0xB7131fC8Cdc43060A6210257f537DBA5FcaE6aEd", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 4138525 + } + } + }, + { + "removed": false, + "logIndex": 100, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "data": "0x000000000000000000000000000000000000000000000002216da5b5424fae02", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa", + "0x000000000000000000000000b7131fc8cdc43060a6210257f537dba5fcae6aed" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "0eb2862f14a08bccd9de764e88c0aef00c0d1e87823a19cde79984043da933d8", + "contractName": "BaseUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xda5e1988097297dcdc1f90d4dfe7909e847cbef6", + "standard": "ERC1967", + "target": "0xef48944abefff3f668f5324c050cd406618b771d" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "World Liberty Financial", + "symbol": "WLFI", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa" + }, + { + "name": "to", + "type": "address", + "value": "0xB7131fC8Cdc43060A6210257f537DBA5FcaE6aEd" + }, + { + "name": "value", + "type": "uint256", + "value": "39302251721052368386" + } + ], + "args": { + "from": "0xd68E2150Cd2DA77decAEb01aB630C864Ad612aAa", + "to": "0xB7131fC8Cdc43060A6210257f537DBA5FcaE6aEd", + "value": "39302251721052368386" + } + } + }, + { + "removed": false, + "logIndex": 101, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x0Bdf246b4AEF9Cfe4DD6eEf153A1b645aC4BcBb6", + "data": "0x00000000000000000000000000000000000000000000000000000000698d7092000000000000000000000000b7131fc8cdc43060a6210257f537dba5fcae6aed00000000000000000000000000000000000000000000000000000000003f261e000000000000000000000000000000000000000000000002216da5b5424fb45000000000000000000000000000000000000000000000000000000000003f261d000000000000000000000000000000000000000000000002216da5b5424fae0200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000041cc77903677b457f3bfd02d05adebf408d756071d778d78544bf2e818891a863e7fc92930f07797e04c73d0fe3baa05e7832f2db20d1cfcb9bcb90c0a1a89b9d91c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xe7c1f00eaa8c1c5478b959f890b147151abbedd56f57564f5a1dfad358a56a94", + "0x0000000000000000000000000000000000000000000000003ba33202ef0d0480", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "0x000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "75e0f15c51f73973d58abf18e75b4876f28f611e63fcfe221acd50b0f1da7b2a", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 102, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000007e552c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "to", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "value", + "type": "uint256", + "value": 8279340 + } + ], + "args": { + "from": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "to": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "value": 8279340 + } + } + }, + { + "removed": false, + "logIndex": 103, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000007e552c", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292", + "0x000000000000000000000000dae4135dac6c62937728d145f8048b2bab2ce55c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "spender", + "type": "address", + "value": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C" + }, + { + "name": "value", + "type": "uint256", + "value": 8279340 + } + ], + "args": { + "owner": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "spender": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C", + "value": 8279340 + } + } + }, + { + "removed": false, + "logIndex": 104, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000007e552c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292", + "0x000000000000000000000000dae4135dac6c62937728d145f8048b2bab2ce55c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "to", + "type": "address", + "value": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C" + }, + { + "name": "value", + "type": "uint256", + "value": 8279340 + } + ], + "args": { + "from": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "to": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C", + "value": 8279340 + } + } + }, + { + "removed": false, + "logIndex": 105, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x0000000000000000000000000000000000000000000000000000000000003046", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000dae4135dac6c62937728d145f8048b2bab2ce55c", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "2953c095ffe62b44b30709d308b7c7ba7151385c50e559a22fc2fb540df90341", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C" + }, + { + "name": "to", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "value", + "type": "uint256", + "value": 12358 + } + ], + "args": { + "from": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C", + "to": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "value": 12358 + } + } + }, + { + "removed": false, + "logIndex": 106, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C", + "data": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000007e552c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000030460000000000000000000000000000000000000000000000000000000000000004000000000002540f4e3136dd7d7af6aa0000000000000002479939895c62a389", + "topics": [ + "0x143f1f8e861fbdeddd5b46e844b7d3ac7b86a122f36e8c463859ee6811b1f29c", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f27172b7d1b06c07ada8abc1d656539e3c3f87fca448a0c3b79b2e8ab99444e0", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Trycrypto/Prospective", + "symbol": "3PROS", + "decimals": 18 + } + } + }, + { + "removed": false, + "logIndex": 107, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292", + "0x000000000000000000000000dae4135dac6c62937728d145f8048b2bab2ce55c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "spender", + "type": "address", + "value": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C" + }, + { + "name": "value", + "type": "uint256", + "value": 0 + } + ], + "args": { + "owner": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "spender": "0xdAe4135DAC6C62937728d145f8048B2baB2ce55C", + "value": 0 + } + } + }, + { + "removed": false, + "logIndex": 108, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x0000000000000000000000000000000000000000000000000000000000003046", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e733023715292", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "2953c095ffe62b44b30709d308b7c7ba7151385c50e559a22fc2fb540df90341", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292" + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "value", + "type": "uint256", + "value": 12358 + } + ], + "args": { + "from": "0xB2DC2da9684DfEF77CFa5c6bb07e733023715292", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "value": 12358 + } + } + }, + { + "removed": false, + "logIndex": 109, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "data": "0x0000000000000000000000000000000000000000000000000000000000003046", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x00000000000000000000000086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "2953c095ffe62b44b30709d308b7c7ba7151385c50e559a22fc2fb540df90341", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "to", + "type": "address", + "value": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD" + }, + { + "name": "value", + "type": "uint256", + "value": 12358 + } + ], + "args": { + "from": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "to": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD", + "value": 12358 + } + } + }, + { + "removed": false, + "logIndex": 110, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000000eed9eeee42681", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": 4201916542494337 + } + ], + "args": { + "src": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": 4201916542494337 + } + } + }, + { + "removed": false, + "logIndex": 111, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD", + "data": "0x00000000000000000000000000000000000000000000000000000000024f0814000000000000000000000000000000000000000000000000b7437e8e5b449d41", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "4f8755ef49ae1c494a4d93a7a06fc4a46d5df70366c179adbf670f8a96dffd6e", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "ShibaSwap LP Token", + "symbol": "SSLP", + "decimals": 18, + "token0": { + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "info": { + "isContract": true, + "fingerprint": "2953c095ffe62b44b30709d308b7c7ba7151385c50e559a22fc2fb540df90341", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Sync", + "signature": "Sync(uint112,uint112)", + "params": [ + { + "name": "reserve0", + "type": "uint112", + "value": 38733844 + }, + { + "name": "reserve1", + "type": "uint112", + "value": "13205537682262105409" + } + ], + "args": { + "reserve0": 38733844, + "reserve1": "13205537682262105409" + } + } + }, + { + "removed": false, + "logIndex": 112, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x86cccdA3799A43fBCeB4cEc6Ad8b028f5bF8B3dD", + "data": "0x000000000000000000000000000000000000000000000000000000000000304600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eed9eeee42681", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "4f8755ef49ae1c494a4d93a7a06fc4a46d5df70366c179adbf670f8a96dffd6e", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "ShibaSwap LP Token", + "symbol": "SSLP", + "decimals": 18, + "token0": { + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "info": { + "isContract": true, + "fingerprint": "2953c095ffe62b44b30709d308b7c7ba7151385c50e559a22fc2fb540df90341", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped BTC", + "symbol": "WBTC", + "decimals": 8 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x031F1aD10547b8dEB43A36e5491c06A93812023a" + }, + { + "name": "amount0In", + "type": "uint256", + "value": 12358 + }, + { + "name": "amount1In", + "type": "uint256", + "value": 0 + }, + { + "name": "amount0Out", + "type": "uint256", + "value": 0 + }, + { + "name": "amount1Out", + "type": "uint256", + "value": 4201916542494337 + }, + { + "name": "to", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + } + ], + "args": { + "sender": "0x031F1aD10547b8dEB43A36e5491c06A93812023a", + "amount0In": 12358, + "amount1In": 0, + "amount0Out": 0, + "amount1Out": 4201916542494337, + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + } + } + }, + { + "removed": false, + "logIndex": 113, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000000eed9eeee42681", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x0000000000000000000000005703b683c7f928b721ca95da988d73a3299d4757" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "dst", + "type": "address", + "value": "0x5703B683c7F928b721CA95Da988d73a3299d4757" + }, + { + "name": "wad", + "type": "uint256", + "value": 4201916542494337 + } + ], + "args": { + "src": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "dst": "0x5703B683c7F928b721CA95Da988d73a3299d4757", + "wad": 4201916542494337 + } + } + }, + { + "removed": false, + "logIndex": 114, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000000eed9eeee42681", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000005703b683c7f928b721ca95da988d73a3299d4757" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Withdrawal", + "signature": "Withdrawal(address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5703B683c7F928b721CA95Da988d73a3299d4757" + }, + { + "name": "wad", + "type": "uint256", + "value": 4201916542494337 + } + ], + "args": { + "src": "0x5703B683c7F928b721CA95Da988d73a3299d4757", + "wad": 4201916542494337 + } + } + }, + { + "removed": false, + "logIndex": 115, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000207bd8d088010000000000000000000000002cffed5d56eb6a17662756ca0fdf350e732c9818000000000000000000000000000000000000000000000000000000000081b320", + "topics": [ + "0x3cfb523a4c38d88561dd3bf04805a31715c8b5fc468a03b8d684356f360dea99" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 116, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "transactionIndex": 47, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000158066ef70b5a4810bba668182e734a158d88c3f00000000000000000000000000000000000000000000000442db4b6a849f5c03000000000000000000000000000000000000000000000000000ecd2316139e80", + "topics": [ + "0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xbfa03c49d1c22e4562b4cb91717842c05f17f850e326696f60b9c04fe4d75a75", + "from": "0xb674928f6aA3B9639Ab5bACc1232F90359Db4d71", + "to": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "gas": 95968, + "gasPrice": 106182924, + "nonce": 809, + "value": 0, + "v": "0x0", + "r": "0x4fb08ed952068d8edc5f7d6e2a3f6e1e9ebded3dd691ef5143983287f6b7fe94", + "s": "0xacd7053b2452ea70b589495a491e5880f9c9be667620af456448ebd2b4a1dc7", + "maxFeePerGas": 127419944, + "maxPriorityFeePerGas": 54089181, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 48, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4252615, + "gasUsed": 58384, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xd1d2eb1b1e90b638588728b4130137d262c87cae", + "standard": "ERC1967", + "target": "0x8d92a6812b3da2346883f0631910c96cb9c5a5f9" + }, + { + "address": "0x8d92a6812b3da2346883f0631910c96cb9c5a5f9", + "standard": "ERC1967" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Gala", + "symbol": "GALA", + "decimals": 8 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x6deF34cc18e41e0C59480facd8a0410d9a174745" + }, + { + "name": "_value", + "type": "uint256", + "value": 300000000000000 + } + ], + "args": { + "_to": "0x6deF34cc18e41e0C59480facd8a0410d9a174745", + "_value": 300000000000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 117, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xbfa03c49d1c22e4562b4cb91717842c05f17f850e326696f60b9c04fe4d75a75", + "transactionIndex": 48, + "address": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", + "data": "0x000000000000000000000000000000000000000000000000000110d9316ec000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b674928f6aa3b9639ab5bacc1232f90359db4d71", + "0x0000000000000000000000006def34cc18e41e0c59480facd8a0410d9a174745" + ], + "addressInfo": { + "isContract": true, + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xd1d2eb1b1e90b638588728b4130137d262c87cae", + "standard": "ERC1967", + "target": "0x8d92a6812b3da2346883f0631910c96cb9c5a5f9" + }, + { + "address": "0x8d92a6812b3da2346883f0631910c96cb9c5a5f9", + "standard": "ERC1967" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Gala", + "symbol": "GALA", + "decimals": 8 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb674928f6aA3B9639Ab5bACc1232F90359Db4d71" + }, + { + "name": "to", + "type": "address", + "value": "0x6deF34cc18e41e0C59480facd8a0410d9a174745" + }, + { + "name": "value", + "type": "uint256", + "value": 300000000000000 + } + ], + "args": { + "from": "0xb674928f6aA3B9639Ab5bACc1232F90359Db4d71", + "to": "0x6deF34cc18e41e0C59480facd8a0410d9a174745", + "value": 300000000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x1f71fd2bdc5d70f4c8618c81a37ae82117ea17a42b15a0fa98af49f0674050fc", + "from": "0xEd01B2eb0D445bfD93Cc71559f201aDF5622a918", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 100000, + "gasPrice": 98980368, + "nonce": 1084, + "value": 0, + "v": "0x1c", + "r": "0x1222d8ed12f3318bf42212ed60133eb5aabb79cd30da7e70ba8fbb02bb7e25df", + "s": "0x62800416a18c2e7a5e2bfe838a363e7e390d25e10b0b4616e682b1dc732068d0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 49, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4298712, + "gasUsed": 46097, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xC864667677286EA03fF4f13d822A62d7BD49c536" + }, + { + "name": "_value", + "type": "uint256", + "value": 3800000 + } + ], + "args": { + "_to": "0xC864667677286EA03fF4f13d822A62d7BD49c536", + "_value": 3800000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 118, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x1f71fd2bdc5d70f4c8618c81a37ae82117ea17a42b15a0fa98af49f0674050fc", + "transactionIndex": 49, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000000039fbc0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ed01b2eb0d445bfd93cc71559f201adf5622a918", + "0x000000000000000000000000c864667677286ea03ff4f13d822a62d7bd49c536" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xEd01B2eb0D445bfD93Cc71559f201aDF5622a918" + }, + { + "name": "to", + "type": "address", + "value": "0xC864667677286EA03fF4f13d822A62d7BD49c536" + }, + { + "name": "value", + "type": "uint256", + "value": 3800000 + } + ], + "args": { + "from": "0xEd01B2eb0D445bfD93Cc71559f201aDF5622a918", + "to": "0xC864667677286EA03fF4f13d822A62d7BD49c536", + "value": 3800000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "from": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4", + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 145555, + "gasPrice": 78762649, + "nonce": 376, + "value": "98000000000000000", + "v": "0x25", + "r": "0x2ec8802f8126a8610641cddde7b7f5214e49873713cbfc3616d657411e2a370b", + "s": "0xf51393d7d6a146a227294ee73e647e985ec6a2062ef7d50d5cac0622b49bff7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 50, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4418674, + "gasUsed": 119962, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "570a0769f3ba8907f6f565c05a1d71998b23adf076c712a4e0989a83f2c70dc3", + "contractType": { + "name": null + } + }, + "call": { + "name": "swapExactETHForTokens", + "signature": "swapExactETHForTokens(uint256,address[],address,uint256)", + "params": [ + { + "name": "amountOutMin", + "type": "uint256", + "value": "244350857220037158969430063" + }, + { + "name": "path", + "type": "address[]", + "value": [ + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4" + ] + }, + { + "name": "to", + "type": "address", + "value": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4" + }, + { + "name": "deadline", + "type": "uint256", + "value": 1770877933 + } + ], + "args": { + "amountOutMin": "244350857220037158969430063", + "path": [ + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4" + ], + "to": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4", + "deadline": 1770877933 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 119, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "transactionIndex": 50, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000015c2a7b13fd0000", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Deposit", + "signature": "Deposit(address,uint256)", + "params": [ + { + "name": "dst", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + }, + { + "name": "wad", + "type": "uint256", + "value": "98000000000000000" + } + ], + "args": { + "dst": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "wad": "98000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 120, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "transactionIndex": 50, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x000000000000000000000000000000000000000000000000015c2a7b13fd0000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000b10b8d3f77b6e39c9ebf7b90bd7bd82fa1c9e00a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + }, + { + "name": "dst", + "type": "address", + "value": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a" + }, + { + "name": "wad", + "type": "uint256", + "value": "98000000000000000" + } + ], + "args": { + "src": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "dst": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a", + "wad": "98000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 121, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "transactionIndex": 50, + "address": "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4", + "data": "0x000000000000000000000000000000000000000000ca1f4e832841108a46502f", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b10b8d3f77b6e39c9ebf7b90bd7bd82fa1c9e00a", + "0x000000000000000000000000bf334390485d31e37d9942306cdb692c0e1db5c4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "cc0564e89cf76d303155a28ba6723175c983a69791bb4c46c13342d474302e98", + "contractName": "ERC20Detailed", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped APX Finance", + "symbol": "WAPX", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a" + }, + { + "name": "to", + "type": "address", + "value": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4" + }, + { + "name": "value", + "type": "uint256", + "value": "244350857220037158969430063" + } + ], + "args": { + "from": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a", + "to": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4", + "value": "244350857220037158969430063" + } + } + }, + { + "removed": false, + "logIndex": 122, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "transactionIndex": 50, + "address": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a", + "data": "0x00000000000000000000000000000000000000000e142baeb017e52659e405f70000000000000000000000000000000000000000000000001989e8861b1a5758", + "topics": [ + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4", + "info": { + "isContract": true, + "fingerprint": "cc0564e89cf76d303155a28ba6723175c983a69791bb4c46c13342d474302e98", + "contractName": "ERC20Detailed", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped APX Finance", + "symbol": "WAPX", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Sync", + "signature": "Sync(uint112,uint112)", + "params": [ + { + "name": "reserve0", + "type": "uint112", + "value": "4357174938072218193866524151" + }, + { + "name": "reserve1", + "type": "uint112", + "value": "1840257585435531096" + } + ], + "args": { + "reserve0": "4357174938072218193866524151", + "reserve1": "1840257585435531096" + } + } + }, + { + "removed": false, + "logIndex": 123, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "transactionIndex": 50, + "address": "0xb10b8D3f77b6e39c9eBf7b90bD7BD82fA1c9e00a", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015c2a7b13fd0000000000000000000000000000000000000000000000ca1f4e832841108a46502f0000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "0x000000000000000000000000bf334390485d31e37d9942306cdb692c0e1db5c4" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0x300fE9C923c41A29a4D68c72CA86f2c09c93a8b4", + "info": { + "isContract": true, + "fingerprint": "cc0564e89cf76d303155a28ba6723175c983a69791bb4c46c13342d474302e98", + "contractName": "ERC20Detailed", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped APX Finance", + "symbol": "WAPX", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,uint256,uint256,uint256,uint256,address)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + }, + { + "name": "amount0In", + "type": "uint256", + "value": 0 + }, + { + "name": "amount1In", + "type": "uint256", + "value": "98000000000000000" + }, + { + "name": "amount0Out", + "type": "uint256", + "value": "244350857220037158969430063" + }, + { + "name": "amount1Out", + "type": "uint256", + "value": 0 + }, + { + "name": "to", + "type": "address", + "value": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4" + } + ], + "args": { + "sender": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "amount0In": 0, + "amount1In": "98000000000000000", + "amount0Out": "244350857220037158969430063", + "amount1Out": 0, + "to": "0xBF334390485D31e37D9942306cdb692c0e1DB5C4" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "from": "0x2C2487AC660a6B730c55fC0c70bB4b46B17B62cc", + "to": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "gas": 577719, + "gasPrice": 68700237, + "input": "0xf2c42696000000000000000000000000000000000000000000000000003ba331f7763a00000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000003c0e28d75c653d00000000000000000000000000000000000000000000000000125e31fc350be300000000000000000000000000000000000000000000000000000000698d7e7700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd5200000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000020000000000000000000126ac9e7809c21ba130c1a51c112928ea6474d9a9ae3c800000000000000000010064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c8", + "nonce": 8, + "value": 0, + "v": "0x0", + "r": "0x42c9ef11ea41031b20d71dcc50fcfe75d6666c17bb159f4dd56664d26641b0b3", + "s": "0x2ad03742ce5b2ac11123fa7566ff8e1c8c394cd61ec6e10342e87e53ee243fe7", + "maxFeePerGas": 70810619, + "maxPriorityFeePerGas": 16606494, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 51, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4724312, + "gasUsed": 305638, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 124, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000000000000000000000000000003ba331f7763a00", + "topics": [ + "0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 125, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "data": "0x000000000000000000000000000000000000000000000000003b746afe2ad4dd", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002c2487ac660a6b730c55fc0c70bb4b46b17b62cc", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c0878e9475cf386d6e559455723b7564f5237b0f4b6ddcef9f0010720a86d894", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x2C2487AC660a6B730c55fC0c70bB4b46B17B62cc" + }, + { + "name": "to", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "value", + "type": "uint256", + "value": "16735026505503965" + } + ], + "args": { + "from": "0x2C2487AC660a6B730c55fC0c70bB4b46B17B62cc", + "to": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "value": "16735026505503965" + } + } + }, + { + "removed": false, + "logIndex": 126, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000125e30d2a916c1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009e7809c21ba130c1a51c112928ea6474d9a9ae3c", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x9E7809C21BA130c1A51C112928eA6474D9a9Ae3C" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": 5170113366529729 + } + ], + "args": { + "src": "0x9E7809C21BA130c1A51C112928eA6474D9a9Ae3C", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": 5170113366529729 + } + } + }, + { + "removed": false, + "logIndex": 127, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "data": "0x000000000000000000000000000000000000000000000000003b746afe2ad4dd", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000009e7809c21ba130c1a51c112928ea6474d9a9ae3c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c0878e9475cf386d6e559455723b7564f5237b0f4b6ddcef9f0010720a86d894", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "to", + "type": "address", + "value": "0x9E7809C21BA130c1A51C112928eA6474D9a9Ae3C" + }, + { + "name": "value", + "type": "uint256", + "value": "16735026505503965" + } + ], + "args": { + "from": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "to": "0x9E7809C21BA130c1A51C112928eA6474D9a9Ae3C", + "value": "16735026505503965" + } + } + }, + { + "removed": false, + "logIndex": 128, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0x9E7809C21BA130c1A51C112928eA6474D9a9Ae3C", + "data": "0x000000000000000000000000000000000000000000000000003b746afe2ad4ddffffffffffffffffffffffffffffffffffffffffffffffffffeda1cf2d56e93f00000000000000000000000000000000000000008f01b8d11198ec6e67f7d29b000000000000000000000000000000000000000000000027da272d3dab8f010dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd281", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x0000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "info": { + "isContract": true, + "fingerprint": "c0878e9475cf386d6e559455723b7564f5237b0f4b6ddcef9f0010720a86d894", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5" + }, + { + "name": "recipient", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "amount0", + "type": "int256", + "value": "16735026505503965" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457578837799763110207" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "44258438102342342130873651867" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "735142601641927049485" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129628289" + } + ], + "args": { + "sender": "0x6747BcaF9bD5a5F0758Cbe08903490E45DdfACB5", + "recipient": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "amount0": "16735026505503965", + "amount1": "115792089237316195423570985008687907853269984665640564039457578837799763110207", + "sqrtPriceX96": "44258438102342342130873651867", + "liquidity": "735142601641927049485", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129628289" + } + } + }, + { + "removed": false, + "logIndex": 129, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "data": "0x000000000000000000000000000000000000000000000000000099bdd9319060", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002c2487ac660a6b730c55fc0c70bb4b46b17b62cc", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c0878e9475cf386d6e559455723b7564f5237b0f4b6ddcef9f0010720a86d894", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x2C2487AC660a6B730c55fC0c70bB4b46B17B62cc" + }, + { + "name": "to", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "value", + "type": "uint256", + "value": 169040671772768 + } + ], + "args": { + "from": "0x2C2487AC660a6B730c55fC0c70bB4b46B17B62cc", + "to": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "value": 169040671772768 + } + } + }, + { + "removed": false, + "logIndex": 130, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0x000000000004444c5dc75cB358380D2e3dE08A90", + "data": "0x00000000000000000000000000000000000000000000000000002f805fcfb9c8ffffffffffffffffffffffffffffffffffffffffffffffffffff664226ce6fa00000000000000000000000000000000000000001ca4a0b5f287f3af470a703aa00000000000000000000000000000000000000000000000007100af4978da0160000000000000000000000000000000000000000000000000000000000002d7f0000000000000000000000000000000000000000000000000000000000002710", + "topics": [ + "0x40e9cecb9f5f1f1c5b9c97dec2917b7ee92e57ba5563708daca94dd84ad7112f", + "0xb1f9f37cea60084ff8031ac05b813bd7a16bbdc19eecb92ce60c55a9298eeee2", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ab6fc38524eafc79f1bd15db851491b4db13277d5a7d24b5bacf3f7279347707", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 131, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52", + "data": "0x000000000000000000000000000000000000000000000000000099bdd9319060", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6", + "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c0878e9475cf386d6e559455723b7564f5237b0f4b6ddcef9f0010720a86d894", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "to", + "type": "address", + "value": "0x000000000004444c5dc75cB358380D2e3dE08A90" + }, + { + "name": "value", + "type": "uint256", + "value": 169040671772768 + } + ], + "args": { + "from": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "to": "0x000000000004444c5dc75cB358380D2e3dE08A90", + "value": 169040671772768 + } + } + }, + { + "removed": false, + "logIndex": 132, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "data": "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a9000000000000000000000000000000000000000000000000000002f805fcfb9c8", + "topics": [ + "0x88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "526d1a0a121493023c0c9a33474776ab0fcc58570a0dcdf06a485aa3b559c5d0", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 133, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000002f805fcfb9c8", + "topics": [ + "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Deposit", + "signature": "Deposit(address,uint256)", + "params": [ + { + "name": "dst", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "wad", + "type": "uint256", + "value": 52228409768392 + } + ], + "args": { + "dst": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "wad": 52228409768392 + } + } + }, + { + "removed": false, + "logIndex": 134, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000002f805fcfb9c8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a6", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5745050e787F693ED21E4418D528F78ad9C374A6" + }, + { + "name": "dst", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "wad", + "type": "uint256", + "value": 52228409768392 + } + ], + "args": { + "src": "0x5745050e787F693ED21E4418D528F78ad9C374A6", + "dst": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "wad": 52228409768392 + } + } + }, + { + "removed": false, + "logIndex": 135, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000128db13278d089", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005e1f62dac767b0491e3ce72469c217365d5b48cc", + "0x0000000000000000000000005703b683c7f928b721ca95da988d73a3299d4757" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC" + }, + { + "name": "dst", + "type": "address", + "value": "0x5703B683c7F928b721CA95Da988d73a3299d4757" + }, + { + "name": "wad", + "type": "uint256", + "value": 5222341776298121 + } + ], + "args": { + "src": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "dst": "0x5703B683c7F928b721CA95Da988d73a3299d4757", + "wad": 5222341776298121 + } + } + }, + { + "removed": false, + "logIndex": 136, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000000128db13278d089", + "topics": [ + "0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65", + "0x0000000000000000000000005703b683c7f928b721ca95da988d73a3299d4757" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Withdrawal", + "signature": "Withdrawal(address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x5703B683c7F928b721CA95Da988d73a3299d4757" + }, + { + "name": "wad", + "type": "uint256", + "value": 5222341776298121 + } + ], + "args": { + "src": "0x5703B683c7F928b721CA95Da988d73a3299d4757", + "wad": 5222341776298121 + } + } + }, + { + "removed": false, + "logIndex": 137, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "transactionIndex": 51, + "address": "0x5E1f62Dac767b0491e3CE72469C217365D5B48cC", + "data": "0x000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000002c2487ac660a6b730c55fc0c70bb4b46b17b62cc000000000000000000000000000000000000000000000000003c0e28d75c653d00000000000000000000000000000000000000000000000000128db13278d089", + "topics": [ + "0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ffee355ac37d7b2128f079b9b81025431efef2afacd8df726118e0476f28d460", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x9e1215b2e13d3f8696052516f829aca2186029b83263e2f55a8b21c4c40e3c44", + "from": "0xfbb194eaeFd726994330A6F65EF5C1075c29D4dc", + "to": "0x5f032B213ddA94d82ba2cA47925Db4b4bEd88bDE", + "gas": 21000, + "gasPrice": 62845025, + "input": "0x", + "nonce": 433, + "value": "39258681254475000", + "v": "0x1", + "r": "0xf6a798d6ea23b7d5e77ebe2e440e607e0e907e6b835ea80853d08bc759ea373d", + "s": "0x39c3883703d55de52deb833eb6c093cab89fa7f2ace93a6c3e133eabfe35519a", + "maxFeePerGas": 62845025, + "maxPriorityFeePerGas": 62845025, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 52, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 4745312, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "from": "0x458A34440ba720C3054177483f33e4b000000000", + "to": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "gas": 411841, + "gasPrice": 62093743, + "input": "0xed0e5f6200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000007000000000000000000000000fe2f8943b31071a11235ffec50b502c5b85292510000000000000000000000005b7470f33b41c188b3f7466f7d22d94585cc75f9000000000000000000000000fdf26feb271878045b771e222cc691cc3f2adce2000000000000000000000000615aace108920d3e1cffea72e120a2b75d43eca6000000000000000000000000f2d82669cf2747c90d4ccb07bb0d4a799977e6dc0000000000000000000000000d9ea40d638bec752c72892d1efa6651c50fd44f000000000000000000000000f80dd39f8934513553e37b8ed91fda002b549a5500000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000018e00000000000000000000000000000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000018b00000000000000000000000000000000000000000000000000000000000001980000000000000000000000000000000000000000000000000000000000000007000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b70", + "nonce": 164870, + "value": 40235222650896, + "v": "0x1", + "r": "0x10f32073866dc1a81750b5c3c012d9b5388f9e9eb0b29a34d2b605c402b32510", + "s": "0xba047c45ec6ac11e5ae6fea7024a405ff70db5743348107ed6e2bb147c22ea", + "maxFeePerGas": 69388202, + "maxPriorityFeePerGas": 10000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 53, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5115607, + "gasUsed": 370295, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 138, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000000000069", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x000000000000000000000000fe2f8943b31071a11235ffec50b502c5b8529251" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0xfe2F8943b31071A11235fFEc50b502C5b8529251" + }, + { + "name": "value", + "type": "uint256", + "value": 105 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0xfe2F8943b31071A11235fFEc50b502C5b8529251", + "value": 105 + } + } + }, + { + "removed": false, + "logIndex": 139, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x0000000000000000000000000000000000000000000000000000000000000069", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x000000000000000000000000fe2f8943b31071a11235ffec50b502c5b8529251", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 140, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000000018e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x0000000000000000000000005b7470f33b41c188b3f7466f7d22d94585cc75f9" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0x5b7470f33B41C188b3f7466F7D22D94585Cc75F9" + }, + { + "name": "value", + "type": "uint256", + "value": 398 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0x5b7470f33B41C188b3f7466F7D22D94585Cc75F9", + "value": 398 + } + } + }, + { + "removed": false, + "logIndex": 141, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x000000000000000000000000000000000000000000000000000000000000018e", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x0000000000000000000000005b7470f33b41c188b3f7466f7d22d94585cc75f9", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 142, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c3", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x000000000000000000000000fdf26feb271878045b771e222cc691cc3f2adce2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0xfdF26feb271878045b771e222cC691cc3f2Adce2" + }, + { + "name": "value", + "type": "uint256", + "value": 195 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0xfdF26feb271878045b771e222cC691cc3f2Adce2", + "value": 195 + } + } + }, + { + "removed": false, + "logIndex": 143, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c3", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x000000000000000000000000fdf26feb271878045b771e222cc691cc3f2adce2", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 144, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x000000000000000000000000615aace108920d3e1cffea72e120a2b75d43eca6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0x615aAcE108920d3E1cfFEA72E120a2B75d43eCa6" + }, + { + "name": "value", + "type": "uint256", + "value": 200 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0x615aAcE108920d3E1cfFEA72E120a2B75d43eCa6", + "value": 200 + } + } + }, + { + "removed": false, + "logIndex": 145, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c8", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x000000000000000000000000615aace108920d3e1cffea72e120a2b75d43eca6", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 146, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000000000008a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x000000000000000000000000f2d82669cf2747c90d4ccb07bb0d4a799977e6dc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0xF2D82669Cf2747C90D4CcB07bB0D4a799977E6Dc" + }, + { + "name": "value", + "type": "uint256", + "value": 138 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0xF2D82669Cf2747C90D4CcB07bB0D4a799977E6Dc", + "value": 138 + } + } + }, + { + "removed": false, + "logIndex": 147, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x000000000000000000000000000000000000000000000000000000000000008a", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x000000000000000000000000f2d82669cf2747c90d4ccb07bb0d4a799977e6dc", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 148, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000000000018b", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x0000000000000000000000000d9ea40d638bec752c72892d1efa6651c50fd44f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0x0d9Ea40D638BeC752C72892d1eFa6651C50Fd44f" + }, + { + "name": "value", + "type": "uint256", + "value": 395 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0x0d9Ea40D638BeC752C72892d1eFa6651C50Fd44f", + "value": 395 + } + } + }, + { + "removed": false, + "logIndex": 149, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x000000000000000000000000000000000000000000000000000000000000018b", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x0000000000000000000000000d9ea40d638bec752c72892d1efa6651c50fd44f", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 150, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000000198", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ae0e997216f7a354eda202b5cb3352b9dafadff", + "0x000000000000000000000000f80dd39f8934513553e37b8ed91fda002b549a55" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff" + }, + { + "name": "to", + "type": "address", + "value": "0xF80dD39f8934513553e37b8Ed91fdA002B549A55" + }, + { + "name": "value", + "type": "uint256", + "value": 408 + } + ], + "args": { + "from": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "to": "0xF80dD39f8934513553e37b8Ed91fdA002B549A55", + "value": 408 + } + } + }, + { + "removed": false, + "logIndex": 151, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "transactionIndex": 53, + "address": "0x1ae0E997216F7a354edA202b5Cb3352B9DafADff", + "data": "0x0000000000000000000000000000000000000000000000000000000000000198", + "topics": [ + "0x3b5083eec1a1116c56de5d6841cff8efc6a0aec9850e836ec509d6ce024ea561", + "0x000000000000000000000000f80dd39f8934513553e37b8ed91fda002b549a55", + "0x000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e8164d8632b67989be38538790da9ed2dad4c854ad9d3a472d0c3bc4890a7b96", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "from": "0xA39B7c0f08e4727c8325b4ad043513AA5185a4E2", + "to": "0xE41677500B425999cB4133950ca3aB79eA7470a6", + "gas": 8000000, + "gasPrice": 62093743, + "input": "0xb1dc65a40001594fe2fe534bd31f6ee4ecaa9450eba6f0c182f1705f4c3d0919931d7c22000000000000000000000000000000000000000000000000000000000244d30105d37fc0f220a6c0435dccb0f055e0f7fbf6b0b70566d98ecbcbd6581bce9e7000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000030000010100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000003d180000000000000000000000000000000000000000000000000000000000003d18fb8610c3adabac63584ada6022a4271723dd9a4943b1b0d7de6c02c5749589b4000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063aa0f0913b5661262eb66656937230e57d14a4aeca5e3ab97cb598abf5ab2f59a28f8a8a8ea4fcc67e0930b8bb41b9bc662bdd15b60ab59080341dbc711ae64a2b5377abf5a875b2092af63c7bde5e1e6ca88120b2577e9a8506959c7738d5d638399df6f791bb632a9d9199de9bc04b16a66fdcd6dbe4faef3ce38993cca7261f733bb5db978604570514eea9446ecb9c497c44ea41d49413a2f288e0c6d757da9357e78c26126eda234dd1c5724fea11bed91b163bffd74be471049d4fa38c000000000000000000000000000000000000000000000000000000000000000642bc142d02dafb512dca1a743f27a16cea2ad8fc88cbc6484823731b05d9192a26d74d0d65d1aa21f3fe698bd78fb12afc9fa11d47420024c5908a3d4ec2696015b36524b96d4fa687d3e47e47e970015d99e8d6f8ee69a539d40a1617455a6c2207b6f12f5db0e9880c043512661a637d2af19296af1164055b4dba0b613fd46d89cee0530adc234696cf75d6fac825de9f61117d68cc47a01557588637771f6d575bd1d675331e524ddfe25c408ecb747a674316e3bf1dfce31237c6b4e287", + "nonce": 38192, + "value": 0, + "v": "0x1", + "r": "0xb63c6f04e4f0e5b7ecf217cd370a7f1be52d9873f856d5ccd83ca66e5e8355d7", + "s": "0x70c64769cbc39974c7907c677135538cfed9963496f1cdc97e323c50346d92af", + "maxFeePerGas": 64319084, + "maxPriorityFeePerGas": 10000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 54, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5242031, + "gasUsed": 126424, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "ba1b9979cfb5df0b18491aa283583537e73b5032bc0d41de9702de4aa638a652", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 152, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "transactionIndex": 54, + "address": "0xE41677500B425999cB4133950ca3aB79eA7470a6", + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000003d180000000000000000000000000000000000000000000000000000000000003d18fb8610c3adabac63584ada6022a4271723dd9a4943b1b0d7de6c02c5749589b40000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x291698c01aa71f912280535d88a00d2c59fb63530a3f5d0098560468acb9ebf5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ba1b9979cfb5df0b18491aa283583537e73b5032bc0d41de9702de4aa638a652", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 153, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "transactionIndex": 54, + "address": "0xE41677500B425999cB4133950ca3aB79eA7470a6", + "data": "0x0001594fe2fe534bd31f6ee4ecaa9450eba6f0c182f1705f4c3d0919931d7c2200000000000000000000000000000000000000000000000000000000000244d3", + "topics": [ + "0xb04e63db38c49950639fa09d29872f21f5d49d614f3a969d8adf3d4b52e41a62" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "ba1b9979cfb5df0b18491aa283583537e73b5032bc0d41de9702de4aa638a652", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0xd2af355b9b9aa9c6dba7037b9a0506e0fd66c06de5110424cc61fb21e9a2dd2d", + "from": "0xa12E2F907b48DDeC114882d63Babfb3902FaA3f5", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 30, + "value": 4857997517078141, + "v": "0x26", + "r": "0x6798e005e2950a761e4129af9e67ff88961a13157b1f1616791a3eac2e243112", + "s": "0x6e68d325ac34b7992e8388b6db57eda7acae0078da0b32b04a56105f5c280c26", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 55, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5263031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x18919e7eb9ce08c2ef1d6f73501746a9fd1b9bf5697ac8520c75362bfe0158e0", + "from": "0x919359cB09178058f2A68881176dD9E7aa4797bB", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4895176184865018, + "v": "0x25", + "r": "0x31341b24f4ce1462f5163aaf49cd082cfc6ee89c80e5a2b3be029ea85495a744", + "s": "0x1b5ea0d463f1c230e67f211e4bfea61822cebdc5750c29090304129476715fd0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 56, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5284031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xd1636fd72a6b24f9fa541cb4568d95c14257657ea1f980db8e86e00e009104b5", + "from": "0xC22e8e93eb2B25aDb26160718BB3AA0F44cd698F", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 29, + "value": 4849343434571929, + "v": "0x26", + "r": "0x45b23664a729c84fa15232f0329d5be5dc68302dd7d07430f303582243b7da3", + "s": "0x1529651ecd04a38846b07d0a9dee9dda483325b60d2ebcfc56275560e42f8a42", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 57, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5305031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x10f1f7122b3a31ac55b0b1f5d000909d7c7722fa6b6939e41398a6b47c568add", + "from": "0x92629D282757298957b938550f09fF073951F31a", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 28, + "value": 4882191808350344, + "v": "0x26", + "r": "0xcb15d5881f6265c4acf4947f60814cfa8015eeb2d0281261fc665e8236590e21", + "s": "0x14b3419a26fb89e69bf0788dc492ab2251c5a3de2064cd73e129920cc702b742", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 58, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5326031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x6f2f33018f3d50d0fc031e603d12806173d7358d00c6350a15ab8def7cf4c3af", + "from": "0x37a137933139c7A38A681Ba750e19C9AabDfd8E4", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 24, + "value": 4922477826259382, + "v": "0x26", + "r": "0xadd29c2583baa702e5b06a67c76d30e0253c14cf32961b95cc1ff8b9eb401bc1", + "s": "0x200de7d1e721a2826ffde3f05577e70e5ec39f9f605eed2d4ff816169a6f42d8", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 59, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5347031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xa944a2fc34cf202d8feec18941a12dbc53c018396758550ccd32778080585ab7", + "from": "0x3a24FeC0Ce9D462e0E19B4b763Fc9E01127D5769", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 29, + "value": 4846640736761419, + "v": "0x26", + "r": "0x616b57640fcd1925937edab02d0d2fef2a414317fe9ff2c970d0d5247bdaef43", + "s": "0x149742272718f64247171b78726924bd327651a81ce9374860e8e6060fb01053", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 60, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5368031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x377f8f0bb843ac8b34e6d123c2e6ae2aa8886dc7588cdafbc28beee6fb37e5a7", + "from": "0xA47BAEeaD40cc6Ea8D01871684dc12F086E1ad42", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 25, + "value": 4915456746331092, + "v": "0x26", + "r": "0xc5e7bafa5b284ed64962ab378100d8e9c74ddf32a071d88e49e3720217512dd", + "s": "0x74d78ae7c712e622663f5bb971e8e3e2bee7c8a9c2feabc4c80be3f858c93563", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 61, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5389031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x19f20b32c5c3fee91e40e5e96ef33e59ab20cbaf23da50eccf0c3aa39b05a368", + "from": "0xfb99Bc8D4407DC72eBae65813B607D56360f6E32", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4925070289264815, + "v": "0x25", + "r": "0xedba6971efc6c9c4a2c3d6a2d7774d6942686addc4cee1dda6e2bd26ff954e0d", + "s": "0x2577b79eed1536f9bc893e5c718e47064501655e634a578d62b197a6463cade7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 62, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5410031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x57abb26eb7009673a33276a95a37852c875feec09ae6e71ae597d6d88a88f72c", + "from": "0xCC1C06FfA41Ee16C8be9E4502392ed82586A7f99", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 25, + "value": 4940138445254061, + "v": "0x26", + "r": "0x73058cbca60c0aca3af49e0564bb39f763a3cdd6cf355270a550124454b48507", + "s": "0x3bf62b6498913189fe28e6f459a9851e826a1f270c9b572f36d3724e8a1571c5", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 63, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5431031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xd10e079b1943c3e0567df0005f3b87a6547cba761dd44c80bf28f246a7240592", + "from": "0x43c81A5dA780b0b39E05A40Ed9E61B968309d3E5", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 30, + "value": 4853543653294279, + "v": "0x26", + "r": "0xb0ffae051cd1a08197d980222b3736c211600bdfa90f879c04bafe950d602a8a", + "s": "0x16c39cd374d86df0d9f5408067f687a2bd0a700f53d4c0c300cc10079ad71401", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 64, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5452031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x4d2ed5820fc773e0ed6d2e9262da55882b844e3503e3bf1765ee43179f855ca1", + "from": "0xf20356Fd3B8e95A854d7d6EbF72253398a8Be7F4", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 27, + "value": 4886792768382685, + "v": "0x26", + "r": "0xdab9f6f086563a887719a742c5d849804ba65b0fa48703afd81ed7464767a12e", + "s": "0x71a15038094c632fe622ac743765ccdd45e7ce2244bd9fe7c8965921a705d2b9", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 65, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5473031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xc30c039441503db82fafcf088094e5f3fbb53223e3f5415b9fb3ae39ef0fa2ce", + "from": "0xfd791256Ae21BC48AF7e5cd63bE5a26bb51b38A8", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 28, + "value": 4884027278495656, + "v": "0x25", + "r": "0x17ac80b40e9c603e82d56d00e0178dd82656577c19f1650a41bc03dc66271215", + "s": "0x7290b7b591f22e2e49e86b00161b7904724debc78a18aac9f9de9143289c04ef", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 66, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5494031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x280664d8417387e4af423422e17296cff783b7779dcab0f930b350704430fbb2", + "from": "0x9131A82a73bf4520F59458Ab24Ab8cf9616A57Ae", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4939178215126792, + "v": "0x26", + "r": "0x5d4e9ccbf99f68b1cc046bd8edbc805fb4cb29d47676c069d52407882a35cc3b", + "s": "0x250f84f38eddad2ce8dff9257535727bf23080086d87081b10faf0828a05e626", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 67, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5515031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x069924326ba0624edf1d22f3645c8bf5f166b5b831f1d037e2540ede6ca3262a", + "from": "0x2BE9a4C05304C3e907adbFd700A935F0FF52D1A0", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 30, + "value": 4874253484608542, + "v": "0x25", + "r": "0xb4b22e012eea374f70b186a71b8b5d163d58ad3c7f6a894272e72bbbf008261b", + "s": "0x4c0d34ef4d12e669fe8a8dfff23064e72436df7c8bdccc36a3cb121365d04083", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 68, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5536031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x1f6690931551839ae83639f5e9a34fdb4b27bbbab3f15814bc03c1caaf327520", + "from": "0x3FdC80685116EDFEF1366e8d7c3a8301Ea457F9E", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 28, + "value": 4877707003653986, + "v": "0x26", + "r": "0x7a229709abdbd6f9c3e3b6a54d25d6ed249a3f68fc1d7543cf4e02572481c205", + "s": "0x21da4bf252715aeb50b063e6ea1453d7fca2d25397f9d65669d63a711c8bfe9d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 69, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5557031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x5fc560b5acc6a87194012c0289a038e7faa3040cb8c33b6a406dcfc79f25bc07", + "from": "0xa4c7E24318edc3bA479433132CC7C8D5b851e737", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4867844760802802, + "v": "0x25", + "r": "0x592a254e098b412eaf2a506b278dc51209597fc4465fea90b28085bdb1cf85a4", + "s": "0x35e16332dc6a9209e4c8343bbaadbdfb57eed5b57cc84126b7beb9e48c4fcfd", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 70, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5578031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xf38747a4b84bf72470bdf48cada0330bbaca198fec9afb364b2fae915936af52", + "from": "0x7BDEF220A84490769DF1f46320BE5532828d7332", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4938414900365035, + "v": "0x26", + "r": "0xad64e57acf5d1b534fbc4580987fba490b951d8f1e89e6fcdab8b8b57927eaf", + "s": "0x27802ae0627e65205ffd32644f219cdd0a47adfea8783cab37559719be8e642c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 71, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5599031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x9ee2cb06833fa575e92bc2200b78eae045e773336aaa52f9aeae51b792c959a2", + "from": "0x0Fbd6809D1Def42003646069269a72CdB18081DF", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 23, + "value": 4928825789613725, + "v": "0x26", + "r": "0xdfb675669e58d42a183758fec8a2483b8d47f18d810221d1898d4438e6d18ac6", + "s": "0x24c34f9b9e1cbdbfbc2db711d3d1bcaad247bf1d59b95b391de5319ca7d06ec2", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 72, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5620031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xe84940733b0943c831513eafb857208cd3389392f784831339a4004945ed4cd5", + "from": "0xb153fd73d454f02450F03B1485D80eC42870D64C", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 23, + "value": 4974190908795314, + "v": "0x25", + "r": "0xbd025ec08cf648af58ee71ad700ceed8bf5b36a45e0fd105c335ac7e5c70e796", + "s": "0xba1a3603ce5c3e41ac53bd55a5ad37245b87597d891103c80a8e762b891fb67", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 73, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5641031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x9c5736d3c225007b542a6c1e58d30976398a655fd50e02a24d72ce720ac8087c", + "from": "0x179E2EB1E70d2524b9D19d4B79C0c9eBf1997f39", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 27, + "value": 4906774412931906, + "v": "0x25", + "r": "0x88c955efc7a103ae30aa9d4cd57e09711951278fa3e125f57d619ca84373ab41", + "s": "0x57bd9d8ab7c1437fa1cbf098fdb48ef50675ff43ea3356604b268371974a8f95", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 74, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5662031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xf0e9363787a16b98daf3bd99062b963ba98e1f21ed49315673845634519aa1f4", + "from": "0xD3f2FC0ba0EB04116B26F4BF45FB49C140D71D19", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 26, + "value": 4938948725052720, + "v": "0x26", + "r": "0x78b778057b42529d8504d15528d2353eff6c331a97501229228a12be64b5446f", + "s": "0x131bef7e6baa514f4bb44644873b4d53e9d0bd264f07a909e2c25dd926b339de", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 75, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5683031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xedeb19ea4364ba5eea48716e24c762bc2306b68249c672fb1565fd72b127a6dc", + "from": "0x9abF11845177F7446aC77206C75134c719630aE0", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 31, + "value": 4810552049485637, + "v": "0x25", + "r": "0x47e5320352e5542f0073a0a1205511b37a7a4dfab663d9f0251a2aaeef04c06e", + "s": "0xf9bcd97b0134b4ad05cd37670367db98da411f32a464461520f8988e3e17bd2", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 76, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5704031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x9345a911086f1b19ccb9598490effff9d761f0d3192c7437a770a76ed5542f43", + "from": "0xe8dC2c08d11e6856A1A2179689ba4D8A8593CFbE", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 30, + "value": 4907464184823160, + "v": "0x25", + "r": "0x48327c9ee9c52e8036989b46be7d9adb15506750a82dda9347d7258ac7ea3cb4", + "s": "0x576dfc60303f7a0ee75ede51c41691199e355b5ef5b55bec8a561e7e8c649f57", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 77, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5725031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x6ffc69c6e612cc78b0f5945a963b79b9ac0fed7828d8a42d46174f4d9b878f3d", + "from": "0x9a65d1ABa40f3f83910891245787553bE3fB3508", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 25, + "value": 4921019528878485, + "v": "0x25", + "r": "0x75b40d0631cbb3916dd1ca51bc3cb31ed00a2d985d63617c340b63e8e92b8c55", + "s": "0x27029428d1b97d5e9053c0e76f344dfbf0c072ff467fbc8d0cb943ba018c730c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 78, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5746031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x36cc294d864cb05d98e1d8a4d1989fe9b65130fe28cce0bfcf9631b1f7da1f56", + "from": "0x190D0D107e8Dd88c6e97f30F5122Ae69EfFCcED5", + "to": "0x75c395Be271a09C7e5f4dBda025E5680CfB3d915", + "gas": 21000, + "gasPrice": 59751008, + "input": "0x", + "nonce": 25, + "value": 4906990996910983, + "v": "0x26", + "r": "0x38b35680d6be36cd6c4d870b8d3c6d9b23dd813d78681fabf81da03b4e04cf64", + "s": "0x9a11b037e815a23e3c75a9f1db9e38edf3329fc438598377ef2ce08ddc26cb9", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 79, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5767031, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x03485b36efbec08601041be349518fb0377dd987dd91166e6c9c17129b5c2e48", + "from": "0x7f604D597c15b2e2F60DC645844f68b1D781b752", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 133090, + "gasPrice": 59371029, + "nonce": 173692, + "value": 0, + "v": "0x1", + "r": "0xfdb1d08db99a5cd31a8ff7bcd74db7c0d21afd9c786ba561bee51e640ac20214", + "s": "0x37f1300b344ccb95f7ca465a1acf85e3504b780f92ebe070cf46d4e6e5ec8847", + "maxFeePerGas": 121528112, + "maxPriorityFeePerGas": 7277286, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 80, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5829291, + "gasUsed": 62260, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x439B4Cc1C405464060DB5AF91a21bca272Ec5F69" + }, + { + "name": "_value", + "type": "uint256", + "value": 56524000000 + } + ], + "args": { + "_to": "0x439B4Cc1C405464060DB5AF91a21bca272Ec5F69", + "_value": 56524000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 154, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x03485b36efbec08601041be349518fb0377dd987dd91166e6c9c17129b5c2e48", + "transactionIndex": 80, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000d2917cb00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007f604d597c15b2e2f60dc645844f68b1d781b752", + "0x000000000000000000000000439b4cc1c405464060db5af91a21bca272ec5f69" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x7f604D597c15b2e2F60DC645844f68b1D781b752" + }, + { + "name": "to", + "type": "address", + "value": "0x439B4Cc1C405464060DB5AF91a21bca272Ec5F69" + }, + { + "name": "value", + "type": "uint256", + "value": 56524000000 + } + ], + "args": { + "from": "0x7f604D597c15b2e2F60DC645844f68b1D781b752", + "to": "0x439B4Cc1C405464060DB5AF91a21bca272Ec5F69", + "value": 56524000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "from": "0x2858e8628327aB695bb751a328CFb3d5dFd762F4", + "to": "0x173272739Bd7Aa6e4e214714048a9fE699453059", + "gas": 231279, + "gasPrice": 59187215, + "input": "0xcfc3257000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006c96de32cea08842dcc4058c14d3aaad7fa41dee00000000000000000000000000000000000000000000000000000000000076bc000000000000000000000000edaba024be4d87974d5ab11c6dd586963cccb0270000000000000000000000000000000000000000000000000000000000000e95d57c664b7fbda11e52120e2ec7c4e1e129151fa3524b6c5efce4e460d05f49070000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000187ad0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000f301bec395546c22b426ca2909e1bc7d9bc6382f000000020f33fd400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "nonce": 101146, + "value": 0, + "v": "0x0", + "r": "0x7579b96a40a6361b925b91f342e2f98613726235b35b2bffea897e1c3edefab1", + "s": "0x153a1aa09182b892f2dc1b0236986fb37a479202a8f93335aef71b65dc4dc6b", + "maxFeePerGas": 69605963, + "maxPriorityFeePerGas": 7093472, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 81, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5925693, + "gasUsed": 96402, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "a10f02b99849f09b841ffcfd88252390a83c39bf2256200ee40b388b3e0f5c0a", + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x173272739bd7aa6e4e214714048a9fe699453059", + "standard": "ERC1967", + "target": "0xfe9ab78ed4f9f3dbb168d9f5e5213d78605c9805" + } + ] + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 155, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "transactionIndex": 81, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000020f33fd40", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006c96de32cea08842dcc4058c14d3aaad7fa41dee", + "0x000000000000000000000000f301bec395546c22b426ca2909e1bc7d9bc6382f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6C96dE32CEa08842dcc4058c14d3aaAD7Fa41dee" + }, + { + "name": "to", + "type": "address", + "value": "0xf301bec395546c22b426cA2909E1BC7d9bC6382F" + }, + { + "name": "value", + "type": "uint256", + "value": 8845000000 + } + ], + "args": { + "from": "0x6C96dE32CEa08842dcc4058c14d3aaAD7Fa41dee", + "to": "0xf301bec395546c22b426cA2909E1BC7d9bC6382F", + "value": 8845000000 + } + } + }, + { + "removed": false, + "logIndex": 156, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "transactionIndex": 81, + "address": "0x6C96dE32CEa08842dcc4058c14d3aaAD7Fa41dee", + "data": "0x00000000000000000000000000000000000000000000000000000000000076bc000000000000000000000000000000000000000000000000000000020f33fd40", + "topics": [ + "0xefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c", + "0xd57c664b7fbda11e52120e2ec7c4e1e129151fa3524b6c5efce4e460d05f4907", + "0x000000000000000000000000f301bec395546c22b426ca2909e1bc7d9bc6382f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x6c96de32cea08842dcc4058c14d3aaad7fa41dee", + "standard": "ERC1967", + "target": "0xcd979b10a55fcdac23ec785ce3066c6ef8a479a4" + } + ] + } + } + }, + { + "removed": false, + "logIndex": 157, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "transactionIndex": 81, + "address": "0x1a44076050125825900e736c501f859c50fE728c", + "data": "0x00000000000000000000000000000000000000000000000000000000000076bc000000000000000000000000edaba024be4d87974d5ab11c6dd586963cccb0270000000000000000000000000000000000000000000000000000000000000e950000000000000000000000006c96de32cea08842dcc4058c14d3aaad7fa41dee", + "topics": [ + "0x3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca04" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "65b21e3c8baed9814ad3fb4ab03f6b63d4c0d4c209e50bd242e7f9934242eae2", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x7f257282351f72ef1819867dc56181016f3188ebb27929f4d613f71be0144096", + "from": "0x19a33d5deC623449e97b960d6e4F3aeBD03f87f0", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 55000, + "gasPrice": 59082497, + "nonce": 0, + "value": 0, + "v": "0x0", + "r": "0xafe96c6dc6084ded4087a71c87fd68a2d6f396664f1d748be14aec9a60caece7", + "s": "0x44ad620505ea0ab631b7f9ff5f1b90f96be2bd427a058571025ae8fcd9d31bf5", + "maxFeePerGas": 59082497, + "maxPriorityFeePerGas": 59082497, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 82, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 5966029, + "gasUsed": 40336, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x08fA1D231580FF854DB5513ae8F877A25ddA9576" + }, + { + "name": "_value", + "type": "uint256", + "value": 398 + } + ], + "args": { + "_to": "0x08fA1D231580FF854DB5513ae8F877A25ddA9576", + "_value": 398 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 158, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x7f257282351f72ef1819867dc56181016f3188ebb27929f4d613f71be0144096", + "transactionIndex": 82, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000000018e", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000019a33d5dec623449e97b960d6e4f3aebd03f87f0", + "0x00000000000000000000000008fa1d231580ff854db5513ae8f877a25dda9576" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x19a33d5deC623449e97b960d6e4F3aeBD03f87f0" + }, + { + "name": "to", + "type": "address", + "value": "0x08fA1D231580FF854DB5513ae8F877A25ddA9576" + }, + { + "name": "value", + "type": "uint256", + "value": 398 + } + ], + "args": { + "from": "0x19a33d5deC623449e97b960d6e4F3aeBD03f87f0", + "to": "0x08fA1D231580FF854DB5513ae8F877A25ddA9576", + "value": 398 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x9b4400e92448baecfc2b9d760cda56748baecc50d183bd2ad00c0c9232657174", + "from": "0xE59A6b7d2C83137Cf78005Bdd0AB8844BADc3c6e", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 55000, + "gasPrice": 59082497, + "nonce": 0, + "value": 0, + "v": "0x0", + "r": "0xba5c4d56f4ba2aef4ba19d44caffdc747f4ca13af51bb21c40f26ce39ec88659", + "s": "0x747dd57dde67c746c759a022017ef0aadae991ed14dffcac6ded4b121f4d9e4", + "maxFeePerGas": 59082497, + "maxPriorityFeePerGas": 59082497, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 83, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6007314, + "gasUsed": 41285, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x7bEf16275a88Bd9C3004DBd0b85Da65B08705c24" + }, + { + "name": "_value", + "type": "uint256", + "value": 2481 + } + ], + "args": { + "_to": "0x7bEf16275a88Bd9C3004DBd0b85Da65B08705c24", + "_value": 2481 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 159, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x9b4400e92448baecfc2b9d760cda56748baecc50d183bd2ad00c0c9232657174", + "transactionIndex": 83, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000000009b1", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e59a6b7d2c83137cf78005bdd0ab8844badc3c6e", + "0x0000000000000000000000007bef16275a88bd9c3004dbd0b85da65b08705c24" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xE59A6b7d2C83137Cf78005Bdd0AB8844BADc3c6e" + }, + { + "name": "to", + "type": "address", + "value": "0x7bEf16275a88Bd9C3004DBd0b85Da65B08705c24" + }, + { + "name": "value", + "type": "uint256", + "value": 2481 + } + ], + "args": { + "from": "0xE59A6b7d2C83137Cf78005Bdd0AB8844BADc3c6e", + "to": "0x7bEf16275a88Bd9C3004DBd0b85Da65B08705c24", + "value": 2481 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x74f57c4851c5c6e18414b7199fb9f59a0ff6db5d168f98fb138770d477997a24", + "from": "0x577153bC9fe6e42013e57b21e6e4E2084758CBc3", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 55000, + "gasPrice": 59082497, + "nonce": 35, + "value": 0, + "v": "0x1", + "r": "0xda7c49859e63f06a38c7c98d30c4b547f734aba9b981441c7514556f9b97b5c9", + "s": "0x4333a03d9118f96294bd14c58e80e45c7e074f8a5e6ea569938c70b2e222f783", + "maxFeePerGas": 59082497, + "maxPriorityFeePerGas": 59082497, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 84, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6052450, + "gasUsed": 45136, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x750Ec35535925979488993eE5eBF5050A12539FA" + }, + { + "name": "_value", + "type": "uint256", + "value": 2450 + } + ], + "args": { + "_to": "0x750Ec35535925979488993eE5eBF5050A12539FA", + "_value": 2450 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 160, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x74f57c4851c5c6e18414b7199fb9f59a0ff6db5d168f98fb138770d477997a24", + "transactionIndex": 84, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000000000992", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000577153bc9fe6e42013e57b21e6e4e2084758cbc3", + "0x000000000000000000000000750ec35535925979488993ee5ebf5050a12539fa" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x577153bC9fe6e42013e57b21e6e4E2084758CBc3" + }, + { + "name": "to", + "type": "address", + "value": "0x750Ec35535925979488993eE5eBF5050A12539FA" + }, + { + "name": "value", + "type": "uint256", + "value": 2450 + } + ], + "args": { + "from": "0x577153bC9fe6e42013e57b21e6e4E2084758CBc3", + "to": "0x750Ec35535925979488993eE5eBF5050A12539FA", + "value": 2450 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xb61218053211b798def7acaa886f83e84747a0e7ff72003ee80d205e3c335a74", + "from": "0xD3090fE5FD1ec776c9324E6a51D904207E690e5c", + "to": "0xBDD15F27837294D76c2fFD59b33224EDb65Feaf9", + "gas": 21000, + "gasPrice": 57635651, + "input": "0x", + "nonce": 92, + "value": "49720000000000000", + "v": "0x0", + "r": "0x6cbd6ad35b196ea43e4079fc662f04b46a085433d9f1c325d7a4ca598e4d16eb", + "s": "0x23c0e32abaff5c4975f860a66254e89df22fe94ca92209074e683208a60f3fd", + "maxFeePerGas": 62845025, + "maxPriorityFeePerGas": 5541908, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 85, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6073450, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0xb98f9a9b6267161543f3f53d275132b61575de7b78b5b411489c99a7379192d6", + "from": "0x5771318E579e4C4AB504f99cfe72fD7aC765Cbc3", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 70000, + "gasPrice": 57635651, + "nonce": 170, + "value": 0, + "v": "0x1", + "r": "0x80851fa0d608546fce1566a4c71edd7a228c4975f49c6fc0f99fae040802cbfe", + "s": "0x31d324896e00aa535bfcbba5fe059ffd008d9d6777f449ff35aa26bb2964d24a", + "maxFeePerGas": 62845025, + "maxPriorityFeePerGas": 5541908, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 86, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6118610, + "gasUsed": 45160, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x750Ec35535925979488993eE5eBF5050A12539FA" + }, + { + "name": "_value", + "type": "uint256", + "value": 2297794117 + } + ], + "args": { + "_to": "0x750Ec35535925979488993eE5eBF5050A12539FA", + "_value": 2297794117 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 161, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb98f9a9b6267161543f3f53d275132b61575de7b78b5b411489c99a7379192d6", + "transactionIndex": 86, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000088f58e45", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005771318e579e4c4ab504f99cfe72fd7ac765cbc3", + "0x000000000000000000000000750ec35535925979488993ee5ebf5050a12539fa" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5771318E579e4C4AB504f99cfe72fD7aC765Cbc3" + }, + { + "name": "to", + "type": "address", + "value": "0x750Ec35535925979488993eE5eBF5050A12539FA" + }, + { + "name": "value", + "type": "uint256", + "value": 2297794117 + } + ], + "args": { + "from": "0x5771318E579e4C4AB504f99cfe72fD7aC765Cbc3", + "to": "0x750Ec35535925979488993eE5eBF5050A12539FA", + "value": 2297794117 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xbd8a5fd1deecf4f4ff7e4dd0d6a1fcce8b02c881c97b0b9a0f0d2fed13844bbb", + "from": "0x9F5C2ae82df9CF37297c5d2b7B6557317527444e", + "to": "0x017AabF7F5170Ef491bab9E08B61532E2e92eFeb", + "gas": 198847, + "gasPrice": 56933065, + "nonce": 39961, + "value": 0, + "v": "0x0", + "r": "0xd7bbc07716643e5c0483cac4d9c43451b564519e68e13e10b3f47f326526afed", + "s": "0xb1ef10e505c43bf3b68b0a313a31c32a7ff3104de17fc4d9d263e2fd2388818", + "maxFeePerGas": 113247572, + "maxPriorityFeePerGas": 4839322, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 87, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6216486, + "gasUsed": 97876, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "914dffbc6a6d3858d5c07abfe2708f994845bc5800d023a9a236b940a2214758", + "contractType": { + "name": null + } + }, + "call": { + "name": "sendMultiSigToken", + "signature": "sendMultiSigToken(address,uint256,address,uint256,uint256,bytes)", + "params": [ + { + "name": "toAddress", + "type": "address", + "value": "0x428Cf082D321d435fF0e1F8a994e01f976F19c11" + }, + { + "name": "value", + "type": "uint256", + "value": 5000000000 + }, + { + "name": "tokenContractAddress", + "type": "address", + "value": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + }, + { + "name": "expireTime", + "type": "uint256", + "value": 1771481821 + }, + { + "name": "sequenceId", + "type": "uint256", + "value": 1927 + }, + { + "name": "signature", + "type": "bytes", + "value": "0x628b711751f22d54d1ca44c65d04c79c5de36b2d05c096156d7aa68ac4b4cae56d5a87d5bc5d35b7e29c2e832be19f46be634b7e0e38a94570d10391990e13e81c" + } + ], + "args": { + "toAddress": "0x428Cf082D321d435fF0e1F8a994e01f976F19c11", + "value": 5000000000, + "tokenContractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "expireTime": 1771481821, + "sequenceId": 1927, + "signature": "0x628b711751f22d54d1ca44c65d04c79c5de36b2d05c096156d7aa68ac4b4cae56d5a87d5bc5d35b7e29c2e832be19f46be634b7e0e38a94570d10391990e13e81c" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 162, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xbd8a5fd1deecf4f4ff7e4dd0d6a1fcce8b02c881c97b0b9a0f0d2fed13844bbb", + "transactionIndex": 87, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000012a05f200", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000017aabf7f5170ef491bab9e08b61532e2e92efeb", + "0x000000000000000000000000428cf082d321d435ff0e1f8a994e01f976f19c11" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x017AabF7F5170Ef491bab9E08B61532E2e92eFeb" + }, + { + "name": "to", + "type": "address", + "value": "0x428Cf082D321d435fF0e1F8a994e01f976F19c11" + }, + { + "name": "value", + "type": "uint256", + "value": 5000000000 + } + ], + "args": { + "from": "0x017AabF7F5170Ef491bab9E08B61532E2e92eFeb", + "to": "0x428Cf082D321d435fF0e1F8a994e01f976F19c11", + "value": 5000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "from": "0x5c60F46432BDF037679194Fa0f0eC6d5776000B5", + "to": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce", + "gas": 169971, + "gasPrice": 56913711, + "input": "0xfaadb53b00000000000000000000000000000000000000000000000000000000004c4b4000000000000000000000000000000000000000000000000000000000000027111da14592027f2767288047b65e44251e8658db05191a61dc26e5ec83000942e6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000006639656630363739643430373930393864623131343561333666363137343561633a3a31323230313266613863313037643539366339663165346432396432666139396230633732366135646561623830323765393735346236386536666436333334616538390000000000000000000000000000000000000000000000000000", + "nonce": 7281, + "value": 0, + "v": "0x26", + "r": "0xea89e085da992dc5515134e09ca4e1cc7635eb980f1e24133ac2e381107ca5fe", + "s": "0x6fdea7dc7e562ab74b19712c9cb83bd15a2f5b7c76477d330f3aab357cd23504", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 88, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6348016, + "gasUsed": 131530, + "fromInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [] + } + }, + "toInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x8888888199b2df864bf678259607d6d5ebb4e3ce", + "standard": "ERC1967", + "target": "0x7d817ce411839c4a5716c5b8e85bdd2cf40e3915" + }, + { + "address": "0x7d817ce411839c4a5716c5b8e85bdd2cf40e3915", + "standard": "ERC1967" + } + ] + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 163, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "transactionIndex": 88, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000004c4b40", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005c60f46432bdf037679194fa0f0ec6d5776000b5", + "0x0000000000000000000000008888888199b2df864bf678259607d6d5ebb4e3ce" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5c60F46432BDF037679194Fa0f0eC6d5776000B5" + }, + { + "name": "to", + "type": "address", + "value": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce" + }, + { + "name": "value", + "type": "uint256", + "value": 5000000 + } + ], + "args": { + "from": "0x5c60F46432BDF037679194Fa0f0eC6d5776000B5", + "to": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce", + "value": 5000000 + } + } + }, + { + "removed": false, + "logIndex": 164, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "transactionIndex": 88, + "address": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce", + "data": "0x00000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000000000000000000000000000000000000000002711661237037dc811823d8b2de17aaabb8ef2ac9b713ca7db3b01fc7f7baf7db562000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006639656630363739643430373930393864623131343561333666363137343561633a3a31323230313266613863313037643539366339663165346432396432666139396230633732366135646561623830323765393735346236386536666436333334616538390000000000000000000000000000000000000000000000000000", + "topics": [ + "0x2eef4ec627e0f99d1cc55f26e234a6066090b7bc0b3f61245f1f2d7c91d3e563", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0000000000000000000000005c60f46432bdf037679194fa0f0ec6d5776000b5", + "0x1da14592027f2767288047b65e44251e8658db05191a61dc26e5ec83000942e6" + ], + "addressInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x8888888199b2df864bf678259607d6d5ebb4e3ce", + "standard": "ERC1967", + "target": "0x7d817ce411839c4a5716c5b8e85bdd2cf40e3915" + }, + { + "address": "0x7d817ce411839c4a5716c5b8e85bdd2cf40e3915", + "standard": "ERC1967" + } + ] + } + } + }, + { + "removed": false, + "logIndex": 165, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "transactionIndex": 88, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000004c4b40", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008888888199b2df864bf678259607d6d5ebb4e3ce", + "0x00000000000000000000000077777777dcc4d5a8b6e418fd04d8997ef11000ee" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce" + }, + { + "name": "to", + "type": "address", + "value": "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE" + }, + { + "name": "value", + "type": "uint256", + "value": 5000000 + } + ], + "args": { + "from": "0x8888888199b2Df864bf678259607d6D5EBb4e3Ce", + "to": "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE", + "value": 5000000 + } + } + }, + { + "removed": false, + "logIndex": 166, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "transactionIndex": 88, + "address": "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE", + "data": "0x00000000000000000000000000000000000000000000000000000000004c4b40", + "topics": [ + "0x4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a9", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x000000000000000000000000427761a14f15629e3b550fbe6740cf16d2d29669", + "0x0000000000000000000000008888888199b2df864bf678259607d6d5ebb4e3ce" + ], + "addressInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [ + { + "address": "0x77777777dcc4d5a8b6e418fd04d8997ef11000ee", + "standard": "ERC1967", + "target": "0xde4d0329db2c046b8ba35180822aeeccf63d3294" + }, + { + "address": "0xde4d0329db2c046b8ba35180822aeeccf63d3294", + "standard": "ERC1967" + } + ] + } + } + } + ] + }, + { + "transaction": { + "hash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "from": "0x4eD9a759d32b65689F5bCc7147Aa0C8CE73212C6", + "to": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "gas": 157682, + "gasPrice": 53093743, + "input": "0x6f074e32000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002ea0ab6fe29e4dfffcb643db6724cf8243f9cb14000000000000000000000000f1f1340efc02583469e8433a38b523be656438a600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000010d000000000000000000000000000000000000000000000000000000000000010d", + "nonce": 1096, + "value": 0, + "v": "0x1", + "r": "0x6374c60748b4816ef9a1ff76d806d0eaf9dd669e15ce2b9f3d91da48cef12158", + "s": "0x6b1da9acd6eb0979d173cc7dcb5a1f9288dbcf260b21723bc95e5b21f3e2405f", + "maxFeePerGas": 1000000000, + "maxPriorityFeePerGas": 1000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 89, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6502939, + "gasUsed": 154923, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 167, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "data": "0x0000000000000000000000000000000000000000000000000000038559e0e494", + "topics": [ + "0x78f5cdad99320ec2ba57132d7dffb1d125775c823239e60ff5e9300fd4ac898c", + "0x0000000000000000000000002ea0ab6fe29e4dfffcb643db6724cf8243f9cb14" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 168, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000000010d", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ca9a58b0a808d45d343745b2baf8c7bd9e860b2", + "0x0000000000000000000000002ea0ab6fe29e4dfffcb643db6724cf8243f9cb14" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2" + }, + { + "name": "to", + "type": "address", + "value": "0x2eA0AB6FE29E4DFfFcB643DB6724Cf8243F9cB14" + }, + { + "name": "value", + "type": "uint256", + "value": 269 + } + ], + "args": { + "from": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "to": "0x2eA0AB6FE29E4DFfFcB643DB6724Cf8243F9cB14", + "value": 269 + } + } + }, + { + "removed": false, + "logIndex": 169, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "data": "0x000000000000000000000000000000000000000000000000000000000000010d", + "topics": [ + "0x3ddb739c68dd901671f09fbe0bc2344c179ed55f8e8110a7c7a3c5665bd9518d", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0000000000000000000000002ea0ab6fe29e4dfffcb643db6724cf8243f9cb14" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 170, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "data": "0x0000000000000000000000000000000000000000000000000000038559e0e494", + "topics": [ + "0x78f5cdad99320ec2ba57132d7dffb1d125775c823239e60ff5e9300fd4ac898c", + "0x000000000000000000000000f1f1340efc02583469e8433a38b523be656438a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 171, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000000010d", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ca9a58b0a808d45d343745b2baf8c7bd9e860b2", + "0x000000000000000000000000f1f1340efc02583469e8433a38b523be656438a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2" + }, + { + "name": "to", + "type": "address", + "value": "0xF1f1340eFC02583469e8433A38B523bE656438A6" + }, + { + "name": "value", + "type": "uint256", + "value": 269 + } + ], + "args": { + "from": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "to": "0xF1f1340eFC02583469e8433A38B523bE656438A6", + "value": 269 + } + } + }, + { + "removed": false, + "logIndex": 172, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "transactionIndex": 89, + "address": "0x1ca9a58b0A808d45d343745b2Baf8c7bD9e860b2", + "data": "0x000000000000000000000000000000000000000000000000000000000000010d", + "topics": [ + "0x3ddb739c68dd901671f09fbe0bc2344c179ed55f8e8110a7c7a3c5665bd9518d", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x000000000000000000000000f1f1340efc02583469e8433a38b523be656438a6" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "from": "0xcC3679122e2Ce07B1A4366E259F754B38231d486", + "to": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "gas": 132331, + "gasPrice": 53093743, + "input": "0x6f074e32000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006910477b9025f8a5b05836b7564b649f1eae1753000000000000000000000000c0d030649414558076c014cb7e1fb1aacc68675f00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f4", + "nonce": 1129, + "value": 0, + "v": "0x1", + "r": "0xaea3f7b9ee384fa93b9973df7193eda25f19ec066d967a1146b17cbd6aaa2667", + "s": "0x4f34cd3607e73046f9623fe409b857fdf7ea5f6c2c1f42a4bb6f873af704ef1c", + "maxFeePerGas": 1000000000, + "maxPriorityFeePerGas": 1000000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 90, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 6632862, + "gasUsed": 129923, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 173, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "data": "0x0000000000000000000000000000000000000000000000000000038559e0e494", + "topics": [ + "0x78f5cdad99320ec2ba57132d7dffb1d125775c823239e60ff5e9300fd4ac898c", + "0x0000000000000000000000006910477b9025f8a5b05836b7564b649f1eae1753" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 174, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000001f4", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009bd92f433953ab0f67286f122df669659032528d", + "0x0000000000000000000000006910477b9025f8a5b05836b7564b649f1eae1753" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9Bd92F433953Ab0F67286F122DF669659032528D" + }, + { + "name": "to", + "type": "address", + "value": "0x6910477b9025f8a5b05836b7564b649f1EaE1753" + }, + { + "name": "value", + "type": "uint256", + "value": 500 + } + ], + "args": { + "from": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "to": "0x6910477b9025f8a5b05836b7564b649f1EaE1753", + "value": 500 + } + } + }, + { + "removed": false, + "logIndex": 175, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "data": "0x00000000000000000000000000000000000000000000000000000000000001f4", + "topics": [ + "0x3ddb739c68dd901671f09fbe0bc2344c179ed55f8e8110a7c7a3c5665bd9518d", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0000000000000000000000006910477b9025f8a5b05836b7564b649f1eae1753" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 176, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "data": "0x0000000000000000000000000000000000000000000000000000038559e0e494", + "topics": [ + "0x78f5cdad99320ec2ba57132d7dffb1d125775c823239e60ff5e9300fd4ac898c", + "0x000000000000000000000000c0d030649414558076c014cb7e1fb1aacc68675f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 177, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000001f4", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009bd92f433953ab0f67286f122df669659032528d", + "0x000000000000000000000000c0d030649414558076c014cb7e1fb1aacc68675f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9Bd92F433953Ab0F67286F122DF669659032528D" + }, + { + "name": "to", + "type": "address", + "value": "0xc0d030649414558076c014cB7E1fB1AaCC68675F" + }, + { + "name": "value", + "type": "uint256", + "value": 500 + } + ], + "args": { + "from": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "to": "0xc0d030649414558076c014cB7E1fB1AaCC68675F", + "value": 500 + } + } + }, + { + "removed": false, + "logIndex": 178, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "transactionIndex": 90, + "address": "0x9Bd92F433953Ab0F67286F122DF669659032528D", + "data": "0x00000000000000000000000000000000000000000000000000000000000001f4", + "topics": [ + "0x3ddb739c68dd901671f09fbe0bc2344c179ed55f8e8110a7c7a3c5665bd9518d", + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x000000000000000000000000c0d030649414558076c014cb7e1fb1aacc68675f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "e3745e822458f10a13c122d5685cba12bbdb880671b6d10fd7cdf7f00555a17d", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "from": "0x54732c211bA61667ed2499536B8A6a08D7E25179", + "to": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "gas": 600993, + "gasPrice": 52393743, + "input": "0xd47a1a270000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000e51046c777453db9f29c0fb6246f191f84572f380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004438432643300000000000000000000000000000000000000000000000000000000000000000000000000000000000000009d2723ccf157e71181b6dd36e0ce7d2cef852ba50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eb607dc1509bef74daff72ecf56bc08fbb22b2e90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c990c20b41ef24a76f89c253cc587bf75bf6fc1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be15000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029c90a9e31b4ae3aae486fab850bfc6c1dd0b78a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039467005ce4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019a02bd816a66319f3566ffa76b7f90f185687f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be15000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084ed0073022f13b0a6d299bff07eb78480d78211000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443843264330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e51046c777453db9f29c0fb6246f191f84572f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000029c90a9e31b4ae3aae486fab850bfc6c1dd0b78a000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000084ed0073022f13b0a6d299bff07eb78480d78211000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000009d2723ccf157e71181b6dd36e0ce7d2cef852ba5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000eb607dc1509bef74daff72ecf56bc08fbb22b2e9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000c990c20b41ef24a76f89c253cc587bf75bf6fc1c000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000019a02bd816a66319f3566ffa76b7f90f185687f0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8", + "nonce": 6090, + "value": 0, + "v": "0x1", + "r": "0xb4a64f7eaa9f32516a9b87b0b2d7cd9b65ee44d152c6f8d51dd2cc4d7c5c469c", + "s": "0x51150a5ef04079b1c4c1d93529437ceeb14894c3427fd696e079f509696e58c5", + "maxFeePerGas": 72061190, + "maxPriorityFeePerGas": 300000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 91, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7172349, + "gasUsed": 539487, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "b50ada20d3a3c0d82a74270baedf0d4970919b6bacd2294942d0d39772d9ef57", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 179, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x000000000000000000000000e51046c777453db9f29c0fb6246f191f84572f38" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0xe51046c777453Db9F29c0FB6246f191F84572f38" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0xe51046c777453Db9F29c0FB6246f191F84572f38", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 180, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x00000000000000000000000029c90a9e31b4ae3aae486fab850bfc6c1dd0b78a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0x29C90A9e31b4ae3AAE486fAB850BfC6c1DD0B78A" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0x29C90A9e31b4ae3AAE486fAB850BfC6c1DD0B78A", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 181, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x00000000000000000000000084ed0073022f13b0a6d299bff07eb78480d78211" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0x84ed0073022f13B0A6d299BFF07Eb78480D78211" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0x84ed0073022f13B0A6d299BFF07Eb78480D78211", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 182, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x0000000000000000000000009d2723ccf157e71181b6dd36e0ce7d2cef852ba5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0x9D2723Ccf157E71181B6DD36e0CE7d2CEF852BA5" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0x9D2723Ccf157E71181B6DD36e0CE7d2CEF852BA5", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 183, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x000000000000000000000000eb607dc1509bef74daff72ecf56bc08fbb22b2e9" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0xEb607DC1509bEf74DAff72eCF56BC08fBb22b2e9" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0xEb607DC1509bEf74DAff72eCF56BC08fBb22b2e9", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 184, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x000000000000000000000000c990c20b41ef24a76f89c253cc587bf75bf6fc1c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0xc990C20b41eF24A76f89C253cc587BF75Bf6FC1C" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0xc990C20b41eF24A76f89C253cc587BF75Bf6FC1C", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 185, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001cc767399ed6d51d3ff05293faaa61e89086bf4e", + "0x00000000000000000000000019a02bd816a66319f3566ffa76b7f90f185687f0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e" + }, + { + "name": "to", + "type": "address", + "value": "0x19A02bd816a66319F3566ffa76b7F90f185687f0" + }, + { + "name": "value", + "type": "uint256", + "value": 1000 + } + ], + "args": { + "from": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "to": "0x19A02bd816a66319F3566ffa76b7F90f185687f0", + "value": 1000 + } + } + }, + { + "removed": false, + "logIndex": 186, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "transactionIndex": 91, + "address": "0x1cC767399ed6d51d3Ff05293Faaa61e89086bF4e", + "data": "0x000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e", + "topics": [ + "0x433a0bba59492ad0c08d3c99cb7ca4dd3e1f881b2f2d1169df811f0ce12509bf" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "b50ada20d3a3c0d82a74270baedf0d4970919b6bacd2294942d0d39772d9ef57", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x3ff6d37150b07e0cb95314796684ab8e81a81ae8aea92c63eb972e44e174bbe8", + "from": "0x8D3b38316F4Fa5DB1779ee372D1dDae465b55769", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 38849, + "gasPrice": 52193743, + "nonce": 19806, + "value": 0, + "v": "0x1", + "r": "0x998595389096b79f1f75e87da757a63ff3d4dda543f640fd74dc6273f39ca27", + "s": "0x2328163dd6ec12d9903f37259e9be37409cbe568738f05a185422cecc6eac2fb", + "maxFeePerGas": 99080338, + "maxPriorityFeePerGas": 100000, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 92, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7210831, + "gasUsed": 38482, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "approve", + "signature": "approve(address,uint256)", + "params": [ + { + "name": "_spender", + "type": "address", + "value": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45" + }, + { + "name": "_value", + "type": "uint256", + "value": 61398241561 + } + ], + "args": { + "_spender": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "_value": 61398241561 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 187, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x3ff6d37150b07e0cb95314796684ab8e81a81ae8aea92c63eb972e44e174bbe8", + "transactionIndex": 92, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000e4b9ed119", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000008d3b38316f4fa5db1779ee372d1ddae465b55769", + "0x00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0x8D3b38316F4Fa5DB1779ee372D1dDae465b55769" + }, + { + "name": "spender", + "type": "address", + "value": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45" + }, + { + "name": "value", + "type": "uint256", + "value": 61398241561 + } + ], + "args": { + "owner": "0x8D3b38316F4Fa5DB1779ee372D1dDae465b55769", + "spender": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "value": 61398241561 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xb442c74f4d1850efd73bf5199a01dab3d04c0c8e539459794dcea70d2c487e78", + "from": "0x90b99Ff1B30202f0Abd9Cc55A76FB208DBe5e6a7", + "to": "0xe4731D1d77cAE73C340e47B6A10f0B34Ad9C6B96", + "gas": 104906, + "gasPrice": 52093780, + "input": "0x7111a994000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000600000000000000000000000006bc9a7af72a5dfc476222c9c059c54a1354cd6b000000000000000000000000b05bac7b555edff581dc8bd8962d09dce2d15109000000000000000000000000b05b68a2a968f7d97c8b6fa391d1a20ce2d15109000000000000000000000000d1998ed7aa05e4a805eb09d9c8858b360e7b23570000000000000000000000009fddc52d21f1de06dddfc946a3b9ce2f525e099d0000000000000000000000009fddc52d21f1de06dddfc946a3b9ce2f525e099d0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000007e9712bb440000000000000000000000000000000000000000000000000000007f849a32b10000000000000000000000000000000000000000000000000000006961d96bab800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001388", + "nonce": 7609, + "value": 0, + "v": "0x1", + "r": "0x11a80fcc14bc95c7f230260e4574a3e38a3cca830c712e5ce6f49941dabd4d0c", + "s": "0x3ede6a9561224d7adb32d3aac6f13716957b4127b2d44a1aef5f506717565da9", + "maxFeePerGas": 123725459, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 93, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7314742, + "gasUsed": 103911, + "fromInfo": { + "isContract": true, + "contractType": { + "name": null, + "proxies": [] + } + }, + "toInfo": { + "isContract": true, + "fingerprint": "d79bf040f07e067393094a716f68a819ee56eb3db4a856143d647d4e5c9015ed", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 188, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xb442c74f4d1850efd73bf5199a01dab3d04c0c8e539459794dcea70d2c487e78", + "transactionIndex": 93, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000001388", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e4731d1d77cae73c340e47b6a10f0b34ad9c6b96", + "0x0000000000000000000000009fddc52d21f1de06dddfc946a3b9ce2f525e099d" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xe4731D1d77cAE73C340e47B6A10f0B34Ad9C6B96" + }, + { + "name": "to", + "type": "address", + "value": "0x9Fddc52d21F1de06ddDFC946a3B9ce2F525E099d" + }, + { + "name": "value", + "type": "uint256", + "value": 5000 + } + ], + "args": { + "from": "0xe4731D1d77cAE73C340e47B6A10f0B34Ad9C6B96", + "to": "0x9Fddc52d21F1de06ddDFC946a3B9ce2F525E099d", + "value": 5000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x61844494548d526e7ba513e2892ea1c8ef8231a64cb23393e9e6fd5c43c5e3ef", + "from": "0xb4fcBDdAbe0D14E7A9A23D9D5350fCb44B05aeCb", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 84000, + "gasPrice": 52093780, + "nonce": 26748, + "value": 0, + "v": "0x0", + "r": "0xaf40d829d614dd6753aa8fd5e11d7ea4024897a5fa6949f880dc9b9a8ebcc58b", + "s": "0x478d6878b272948f0ac820a1a52ea5b39e7639ade6a71cbe91a7694a8cc1d248", + "maxFeePerGas": 64437222, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 94, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7376990, + "gasUsed": 62248, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xA6D2e62979839BC1344e9625D5f940D66c1df7ed" + }, + { + "name": "_value", + "type": "uint256", + "value": 185440000 + } + ], + "args": { + "_to": "0xA6D2e62979839BC1344e9625D5f940D66c1df7ed", + "_value": 185440000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 189, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x61844494548d526e7ba513e2892ea1c8ef8231a64cb23393e9e6fd5c43c5e3ef", + "transactionIndex": 94, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x000000000000000000000000000000000000000000000000000000000b0d9700", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b4fcbddabe0d14e7a9a23d9d5350fcb44b05aecb", + "0x000000000000000000000000a6d2e62979839bc1344e9625d5f940d66c1df7ed" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb4fcBDdAbe0D14E7A9A23D9D5350fCb44B05aeCb" + }, + { + "name": "to", + "type": "address", + "value": "0xA6D2e62979839BC1344e9625D5f940D66c1df7ed" + }, + { + "name": "value", + "type": "uint256", + "value": 185440000 + } + ], + "args": { + "from": "0xb4fcBDdAbe0D14E7A9A23D9D5350fCb44B05aeCb", + "to": "0xA6D2e62979839BC1344e9625D5f940D66c1df7ed", + "value": 185440000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x45a34920a605f5f94845dad8fc48aacacda072f8ec70b754fd261e3f2346147e", + "from": "0x3FBd55bbFbb36f45167c9abe1396a4E5A192E8fb", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 84000, + "gasPrice": 52093780, + "nonce": 96395, + "value": 0, + "v": "0x0", + "r": "0xf00975f5f3b115a0ab9eeed4da53095fccf1422510c7a8d7f358ff5ded2189f6", + "s": "0x2341f2f101496534526cc365943a879f2f176f2be80d050432992cca78f6a76d", + "maxFeePerGas": 64437222, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 95, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7440199, + "gasUsed": 63209, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xb37A581B5A96EbBfAca8Ad43F8B212cCB9828724" + }, + { + "name": "_value", + "type": "uint256", + "value": 325000000 + } + ], + "args": { + "_to": "0xb37A581B5A96EbBfAca8Ad43F8B212cCB9828724", + "_value": 325000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 190, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x45a34920a605f5f94845dad8fc48aacacda072f8ec70b754fd261e3f2346147e", + "transactionIndex": 95, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000135f1b40", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000003fbd55bbfbb36f45167c9abe1396a4e5a192e8fb", + "0x000000000000000000000000b37a581b5a96ebbfaca8ad43f8b212ccb9828724" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x3FBd55bbFbb36f45167c9abe1396a4E5A192E8fb" + }, + { + "name": "to", + "type": "address", + "value": "0xb37A581B5A96EbBfAca8Ad43F8B212cCB9828724" + }, + { + "name": "value", + "type": "uint256", + "value": 325000000 + } + ], + "args": { + "from": "0x3FBd55bbFbb36f45167c9abe1396a4E5A192E8fb", + "to": "0xb37A581B5A96EbBfAca8Ad43F8B212cCB9828724", + "value": 325000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x30adf501e56200bb8711788aa1e02d55ea0fad39e18d40678d02ad9d8a9b9f8e", + "from": "0xCc0061c5025E1173C6ab08D56aF429E3ba3037fd", + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "gas": 63440, + "gasPrice": 52093780, + "nonce": 27585, + "value": 0, + "v": "0x1", + "r": "0xbbf6dd514ee9e20e166329d8bab3b699f6803628d16a1d48ec798e4dba2da271", + "s": "0x399089d5e57cbdaf25d156d6b27bf2bd736e8caabe8b1a7e9cde05d14956c532", + "maxFeePerGas": 64437222, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 96, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7492276, + "gasUsed": 52077, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "c6ab212f15e5519def732bd4f06a6ea9a38410a4c438118dca6dabe658ae31e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ChainLink Token", + "symbol": "LINK", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x09fBD6E00CeAe25149c6f80114687A234c237F46" + }, + { + "name": "_value", + "type": "uint256", + "value": "870000000000000000" + } + ], + "args": { + "_to": "0x09fBD6E00CeAe25149c6f80114687A234c237F46", + "_value": "870000000000000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 191, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x30adf501e56200bb8711788aa1e02d55ea0fad39e18d40678d02ad9d8a9b9f8e", + "transactionIndex": 96, + "address": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "data": "0x0000000000000000000000000000000000000000000000000c12dc63fa970000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000cc0061c5025e1173c6ab08d56af429e3ba3037fd", + "0x00000000000000000000000009fbd6e00ceae25149c6f80114687a234c237f46" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c6ab212f15e5519def732bd4f06a6ea9a38410a4c438118dca6dabe658ae31e1", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ChainLink Token", + "symbol": "LINK", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xCc0061c5025E1173C6ab08D56aF429E3ba3037fd" + }, + { + "name": "to", + "type": "address", + "value": "0x09fBD6E00CeAe25149c6f80114687A234c237F46" + }, + { + "name": "value", + "type": "uint256", + "value": "870000000000000000" + } + ], + "args": { + "from": "0xCc0061c5025E1173C6ab08D56aF429E3ba3037fd", + "to": "0x09fBD6E00CeAe25149c6f80114687A234c237F46", + "value": "870000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x4e4256c2220a1b2a6a1f2e96c98fc7a661f4311a3f183149e081482fe9edfdd7", + "from": "0x9fDd5F884208b16291046b0f63810739F2fe099D", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 46467, + "gasPrice": 52093780, + "nonce": 0, + "value": 0, + "v": "0x0", + "r": "0xc9d4c860c1c64c538d04f6bca60e9b4c52783a51a9c041c5d9b98cbe8f6e2cc3", + "s": "0xdfe18d00a66e974a60a7e0913175d7892cae8d1f6229e10fb5fa0b7bf61b7d6", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 97, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7538361, + "gasUsed": 46085, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x37BE6a6849ceC9ed4eB2cE11b9d4dB16544b368B" + }, + { + "name": "_value", + "type": "uint256", + "value": 7500 + } + ], + "args": { + "_to": "0x37BE6a6849ceC9ed4eB2cE11b9d4dB16544b368B", + "_value": 7500 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 192, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x4e4256c2220a1b2a6a1f2e96c98fc7a661f4311a3f183149e081482fe9edfdd7", + "transactionIndex": 97, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000001d4c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009fdd5f884208b16291046b0f63810739f2fe099d", + "0x00000000000000000000000037be6a6849cec9ed4eb2ce11b9d4db16544b368b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9fDd5F884208b16291046b0f63810739F2fe099D" + }, + { + "name": "to", + "type": "address", + "value": "0x37BE6a6849ceC9ed4eB2cE11b9d4dB16544b368B" + }, + { + "name": "value", + "type": "uint256", + "value": 7500 + } + ], + "args": { + "from": "0x9fDd5F884208b16291046b0f63810739F2fe099D", + "to": "0x37BE6a6849ceC9ed4eB2cE11b9d4dB16544b368B", + "value": 7500 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xef98db7a4b5f3b42396dbd1313ef873bc64a091b219ca94a5b41d00a9eb28282", + "from": "0xe5B0485E6CB08184b7d62eFD96144b359dA88C5A", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 45516, + "gasPrice": 52093780, + "nonce": 1, + "value": 0, + "v": "0x1", + "r": "0x52e050fd610b8bd87e11ea4e72402b8c0a189111198e669c702a2b25119c37c7", + "s": "0x42bb2c70e4c2f938cd930b4811ee2e399e48fa6642118d30631ea2ebf954af82", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 98, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7583497, + "gasUsed": 45136, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2" + }, + { + "name": "_value", + "type": "uint256", + "value": 3245 + } + ], + "args": { + "_to": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2", + "_value": 3245 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 193, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xef98db7a4b5f3b42396dbd1313ef873bc64a091b219ca94a5b41d00a9eb28282", + "transactionIndex": 98, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000000000cad", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000e5b0485e6cb08184b7d62efd96144b359da88c5a", + "0x000000000000000000000000c0a1e393590a06e74efda03acb6c9c9b2ee0f2b2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xe5B0485E6CB08184b7d62eFD96144b359dA88C5A" + }, + { + "name": "to", + "type": "address", + "value": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2" + }, + { + "name": "value", + "type": "uint256", + "value": 3245 + } + ], + "args": { + "from": "0xe5B0485E6CB08184b7d62eFD96144b359dA88C5A", + "to": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2", + "value": 3245 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x684fb85759f3d45380f03db2660a91a15d6a33d6a0d78813b2a337f121c0faa2", + "from": "0x80D17511A1ac59c2F401f20795BeAd7F7187fc6E", + "to": "0x0910156077ec2087E8f364d592366Fddb8DF9D85", + "gas": 21000, + "gasPrice": 52093780, + "input": "0x", + "nonce": 1, + "value": 1000000000, + "v": "0x1", + "r": "0xdb3e7473983cdfb1beeb479111800e2da6b5843c240063f66f10667707ff6264", + "s": "0x313d46eb07c79cff939081198e10efe05e6b1c62268de22a3282edac26e36ca3", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 99, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7604497, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x2f42ee078cd5df9b0036e8196bd999e08aa0c4e557aa4ea6396c460fd3672082", + "from": "0x43e41c28743D211A1733Ae8606b05b8eCe71d198", + "to": "0xe129188380d48Fa09A6a89AC91adc761afDc1612", + "gas": 21000, + "gasPrice": 52093780, + "input": "0x", + "nonce": 109, + "value": 1000000000, + "v": "0x1", + "r": "0x5bb15f08e62e80729820a92b26f7bd2f32441e9acc12a8a75dafb52bfbd42670", + "s": "0x102b21c1ed34e21c8f7dd225b2d50130d9ccfa6ddd81aec6da2bbdf3581d463", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 100, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7625497, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x46340b786c458771424f3f6e307cc1d13c2bfe7b2a7e32c62a5ca74b0a8f4b58", + "from": "0x80D16A2490cb06020F659FB3be60740F7187fC6E", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 45516, + "gasPrice": 52093780, + "nonce": 1, + "value": 0, + "v": "0x0", + "r": "0x19e05e9cabdd7855aacc671724fa23b353f5ef304e621189bdb3eb432d5f2276", + "s": "0x1a6f4df5cc0fd5dda52e19839b3ded44436b9d4a3b17bcb0595b0dc69767eab9", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 101, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7670633, + "gasUsed": 45136, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x0910156077ec2087E8f364d592366Fddb8DF9D85" + }, + { + "name": "_value", + "type": "uint256", + "value": 2800 + } + ], + "args": { + "_to": "0x0910156077ec2087E8f364d592366Fddb8DF9D85", + "_value": 2800 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 194, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x46340b786c458771424f3f6e307cc1d13c2bfe7b2a7e32c62a5ca74b0a8f4b58", + "transactionIndex": 101, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000000000af0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000080d16a2490cb06020f659fb3be60740f7187fc6e", + "0x0000000000000000000000000910156077ec2087e8f364d592366fddb8df9d85" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x80D16A2490cb06020F659FB3be60740F7187fC6E" + }, + { + "name": "to", + "type": "address", + "value": "0x0910156077ec2087E8f364d592366Fddb8DF9D85" + }, + { + "name": "value", + "type": "uint256", + "value": 2800 + } + ], + "args": { + "from": "0x80D16A2490cb06020F659FB3be60740F7187fC6E", + "to": "0x0910156077ec2087E8f364d592366Fddb8DF9D85", + "value": 2800 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x4ebd331e239628992c7e9ac22fd6c77a494801cb83f2dc3d7124e78a71bd2786", + "from": "0x6ADcaED78EC78280EAB274102f331e7af99923da", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 45733, + "gasPrice": 52093780, + "nonce": 4, + "value": 0, + "v": "0x0", + "r": "0x51734e73720f5cc1b5071e2425d6880364c4ec2a59ee0ffb9bcdff9d6ff4088b", + "s": "0x5a33a01077c5ee87690aabd7c9e42037fcd987298c121862aba19c2b3a5b8a7a", + "maxFeePerGas": 64337256, + "maxPriorityFeePerGas": 37, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 102, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7710969, + "gasUsed": 40336, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x4081AB2C1089C17b570e1aBBb0AdA64a5e17867c" + }, + { + "name": "_value", + "type": "uint256", + "value": 5000 + } + ], + "args": { + "_to": "0x4081AB2C1089C17b570e1aBBb0AdA64a5e17867c", + "_value": 5000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 195, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x4ebd331e239628992c7e9ac22fd6c77a494801cb83f2dc3d7124e78a71bd2786", + "transactionIndex": 102, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000000001388", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006adcaed78ec78280eab274102f331e7af99923da", + "0x0000000000000000000000004081ab2c1089c17b570e1abbb0ada64a5e17867c" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6ADcaED78EC78280EAB274102f331e7af99923da" + }, + { + "name": "to", + "type": "address", + "value": "0x4081AB2C1089C17b570e1aBBb0AdA64a5e17867c" + }, + { + "name": "value", + "type": "uint256", + "value": 5000 + } + ], + "args": { + "from": "0x6ADcaED78EC78280EAB274102f331e7af99923da", + "to": "0x4081AB2C1089C17b570e1aBBb0AdA64a5e17867c", + "value": 5000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "from": "0x32F365aDCe14BC332Cb1B899c2443C399D139839", + "to": "0x06D82a3839B94344599D2C15eAC68a518F2a69dC", + "gas": 306031, + "gasPrice": 52093773, + "input": "0x8aaa8f3b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000c20000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000b5dd64a381db3a99e3e16fe10cf2ec4ca18be1440000000000000000000000004fd5cf85b16a9b3e210a3f550aed9dbc10005ff80000000000000000000000009e352a33f030fa89de5cd874501a9be4f0723b990000000000000000000000008696e84ab5e78983f2456bcb5c199eea9648c8c20000000000000000000000004fcbe087605cb8b656e66339d6bc9889a8b303d3000000000000000000000000b9c42bfd2ac4599ad3ac46789cf70bfd1fa8ff7f000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e5610000000000000000000000005b5fd84bdf53df224f33abd7e9cc21a4ed9554470000000000000000000000007ec81ec8076dfbfc45be9704a0d8f7b940b46431000000000000000000000000b2cefde21267044443b9ae78e1c00868adbd065f000000000000000000000000eb62684ebd086509e32035e8d7633dd30450decf000000000000000000000000c86a31d896733784d33368f932711ef3e14945c500000000000000000000000052530f9612b41eb1b9aae10d7a4ebea69ef45111000000000000000000000000eaa962169c075bdd9daf71bc326837e0370b29ac0000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e5610000000000000000000000001ab44e5943af227cd8bce8b6a8acd3ff44fa10cc0000000000000000000000006d98918a2001b1e9447151048a46b9cd6dd13f1200000000000000000000000057d7b62c7b877f315b2d0cac98c4775f5bd3cd0b0000000000000000000000004c1211b9b2acb8cf812eede09d3e993a095c32fd000000000000000000000000c0a1e393590a06e74efda03acb6c9c9b2ee0f2b2000000000000000000000000f1f92b8f780995b6df8f37de3bb9b59b7e1438a60000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a0000000000000000000000002bc6457374432452c60bf2ad26c4f07e49e0d6f5000000000000000000000000c66344647a5140df4c7427742320ae9230272e56000000000000000000000000a0ba601c986493416713b5423d30b2a390e55d730000000000000000000000009c1f7e5932a658fb137a99c640797128a2399ed8000000000000000000000000ca3f8945afa9223fc508707f57bb0f5172daafe4000000000000000000000000f26948911c22d3e6ec71233b633e3aca50b440b500000000000000000000000021e77be3dd7b8a6e583404c24f08e3af0356d717000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000c7199f3f610e8e517c0577fdad8d188ff01cb4fb000000000000000000000000361327b593e38f3d70f145792a0e6db93a03b2910000000000000000000000003b3372183613c746c06ef18001742793020955c0000000000000000000000000d528daac52ee640cb1438e13b1149026a9fc6c5b0000000000000000000000004e5d6c0d6ec0cb96ea36f78b3058d1134176b9e8000000000000000000000000f1eb4248c93491589dcdb9ae4d8849111d5174ad000000000000000000000000f8ff5b83f8f5fb422b7e59b897ddf72a857175510000000000000000000000005d53058aaa37235f82aaadd130c0b050679077c70000000000000000000000004506f312c9daf32a79124565df44462f9214ef35000000000000000000000000272f4e5c016a4c64c83b6ea39b40ca6a54b3392100000000000000000000000036cbe1ae2c6daaf52d39024ce5a1c2015aaf79520000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b4600000000000000000000000059bfaf367c45746b986262f0d46c252a66868ae00000000000000000000000001d423383ba77f0f3c06466f3457b7032a528cdeb000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b235700000000000000000000000015f6794430b78b9578d29aa71bd60ae2d23719730000000000000000000000009b1c4f0d641047ccf364514f82ecdf5995417aed000000000000000000000000f9439b28ab755dad68518aaa08010937d2e23fe50000000000000000000000001b9a33f67ab944041f099beb1cddeac25c01705d00000000000000000000000085d74c3630bc00033424b0ac0138da680501a61a000000000000000000000000e5b173049d84218c3ab793fd7cbd8f912da88c5a000000000000000000000000df9a55c7d99a29e46416e152dbde6c7ed0018a2b000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b2357000000000000000000000000156a9e844ad0a84b3e1c4ff081f11d7174181ad80000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b460000000000000000000000008b87fb4af0595cf61bc9eaee1a3846b7e6079c3b00000000000000000000000069d1e9d3f28d32885e0986df2736383419dcbc0900000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad7200000000000000000000000040ad8e8085f8c052fae40f0afda247025f353ddb00000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad72000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000010520c14000000000000000000000000000000000000000000000000000000022ecb25c00000000000000000000000000000000000000000000000000000000002a72725300000000000000000000000000000000000000000000001244d0827f5aa400000000000000000000000000000000000000000000000000005b97e9081d9400000000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000000000370378a70000000000000000000000000000000000000000000000000000000012b5f19600000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000000000000001848c3b30000000000000000000000000000000000000000000000000000470de4df8200000000000000000000000000000000000000000000000000000000000db9b1b0ab000000000000000000000000000000000000000000000000000000f53c5dae80000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000009ba48350000000000000000000000000000000000000000000000000000000001b81bd8c0000000000000000000000000000000000000000000000001f399b1438a1000000000000000000000000000000000000000000000000000000000001d238573800000000000000000000000000000000000000000000000000000000ba43b740000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000c16ac5400000000000000000000000000000000000000000000000000000000007cf5bf000000000000000000000000000000000000000000000000000000009ba4835000000000000000000000000000000000000000000000000000000001678acf0af0000000000000000000000000000000000000000000000000000000a84486abf00000000000000000000000000000000000000000000000000000001aca3b918000000000000000000000000000000000000000000000000000001d1a94a2000000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000002e90edd000000000000000000000000000000000000000000000000001bc16d674ec800000", + "nonce": 26178, + "value": 0, + "v": "0x0", + "r": "0xc98e8bb4aaad2178586d568f97b9d00d5b224e131b9fd3a7e2607b5afa76601e", + "s": "0x3cdab679e37af7d2cc4e22918141514418f832db803efce4d740c7174be401d8", + "maxFeePerGas": 148470529, + "maxPriorityFeePerGas": 30, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 103, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7912225, + "gasUsed": 201256, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "c1ed0c0736ebd38f905873d3ed46d95f0e274f6164ccc9b09c9a101a7c13ee16", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 196, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x000000000000000000000000000000000000000000000000000000010520c140", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b5dd64a381db3a99e3e16fe10cf2ec4ca18be144", + "0x000000000000000000000000c7199f3f610e8e517c0577fdad8d188ff01cb4fb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xB5DD64a381dB3A99E3E16Fe10cF2EC4Ca18BE144" + }, + { + "name": "to", + "type": "address", + "value": "0xC7199F3F610e8E517c0577FDAd8d188fF01Cb4Fb" + }, + { + "name": "value", + "type": "uint256", + "value": 4381000000 + } + ], + "args": { + "from": "0xB5DD64a381dB3A99E3E16Fe10cF2EC4Ca18BE144", + "to": "0xC7199F3F610e8E517c0577FDAd8d188fF01Cb4Fb", + "value": 4381000000 + } + } + }, + { + "removed": false, + "logIndex": 197, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x00000000000000000000000000000000000000000000000000000022ecb25c00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004fd5cf85b16a9b3e210a3f550aed9dbc10005ff8", + "0x000000000000000000000000361327b593e38f3d70f145792a0e6db93a03b291" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4fd5Cf85B16A9B3e210A3f550aed9dbc10005Ff8" + }, + { + "name": "to", + "type": "address", + "value": "0x361327b593E38f3d70F145792A0e6db93a03B291" + }, + { + "name": "value", + "type": "uint256", + "value": 150000000000 + } + ], + "args": { + "from": "0x4fd5Cf85B16A9B3e210A3f550aed9dbc10005Ff8", + "to": "0x361327b593E38f3d70F145792A0e6db93a03B291", + "value": 150000000000 + } + } + }, + { + "removed": false, + "logIndex": 198, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x000000000000000000000000000000000000000000000000000000002a727253", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009e352a33f030fa89de5cd874501a9be4f0723b99", + "0x0000000000000000000000003b3372183613c746c06ef18001742793020955c0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9e352A33F030fa89De5CD874501a9Be4F0723B99" + }, + { + "name": "to", + "type": "address", + "value": "0x3B3372183613C746C06ef18001742793020955C0" + }, + { + "name": "value", + "type": "uint256", + "value": 712143443 + } + ], + "args": { + "from": "0x9e352A33F030fa89De5CD874501a9Be4F0723B99", + "to": "0x3B3372183613C746C06ef18001742793020955C0", + "value": 712143443 + } + } + }, + { + "removed": false, + "logIndex": 199, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x00000000000000000000000000000000000000000000001244d0827f5aa40000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008696e84ab5e78983f2456bcb5c199eea9648c8c2", + "0x000000000000000000000000d528daac52ee640cb1438e13b1149026a9fc6c5b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x8696e84aB5e78983f2456bCB5c199eEa9648C8C2" + }, + { + "name": "to", + "type": "address", + "value": "0xD528dAaC52EE640cb1438e13B1149026a9FC6C5B" + }, + { + "name": "value", + "type": "uint256", + "value": "337000000000000000000" + } + ], + "args": { + "from": "0x8696e84aB5e78983f2456bCB5c199eEa9648C8C2", + "to": "0xD528dAaC52EE640cb1438e13B1149026a9FC6C5B", + "value": "337000000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 200, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x0000000000000000000000000000000000000000000000005b97e9081d940000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004fcbe087605cb8b656e66339d6bc9889a8b303d3", + "0x0000000000000000000000004e5d6c0d6ec0cb96ea36f78b3058d1134176b9e8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4fcbE087605cB8b656E66339d6bC9889A8B303D3" + }, + { + "name": "to", + "type": "address", + "value": "0x4E5D6c0d6eC0CB96ea36F78b3058D1134176b9E8" + }, + { + "name": "value", + "type": "uint256", + "value": "6600000000000000000" + } + ], + "args": { + "from": "0x4fcbE087605cB8b656E66339d6bC9889A8B303D3", + "to": "0x4E5D6c0d6eC0CB96ea36F78b3058D1134176b9E8", + "value": "6600000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 201, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x0000000000000000000000000000000000000000000000004563918244f40000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b9c42bfd2ac4599ad3ac46789cf70bfd1fa8ff7f", + "0x000000000000000000000000f1eb4248c93491589dcdb9ae4d8849111d5174ad" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb9c42bFD2Ac4599ad3ac46789cF70BFd1fA8Ff7f" + }, + { + "name": "to", + "type": "address", + "value": "0xf1eB4248c93491589DCdB9aE4D8849111D5174Ad" + }, + { + "name": "value", + "type": "uint256", + "value": "5000000000000000000" + } + ], + "args": { + "from": "0xb9c42bFD2Ac4599ad3ac46789cF70BFd1fA8Ff7f", + "to": "0xf1eB4248c93491589DCdB9aE4D8849111D5174Ad", + "value": "5000000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 202, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x0000000000000000000000000000000000000000000000000000000370378a70", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e561", + "0x000000000000000000000000f8ff5b83f8f5fb422b7e59b897ddf72a85717551" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xee424c1aE1f55232691d3b64634610F4De55E561" + }, + { + "name": "to", + "type": "address", + "value": "0xf8FF5b83f8F5Fb422B7e59b897ddf72a85717551" + }, + { + "name": "value", + "type": "uint256", + "value": 14767590000 + } + ], + "args": { + "from": "0xee424c1aE1f55232691d3b64634610F4De55E561", + "to": "0xf8FF5b83f8F5Fb422B7e59b897ddf72a85717551", + "value": 14767590000 + } + } + }, + { + "removed": false, + "logIndex": 203, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x000000000000000000000000000000000000000000000000000000012b5f1960", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005b5fd84bdf53df224f33abd7e9cc21a4ed955447", + "0x0000000000000000000000005d53058aaa37235f82aaadd130c0b050679077c7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5B5fd84BDF53DF224f33abD7e9cc21a4ed955447" + }, + { + "name": "to", + "type": "address", + "value": "0x5D53058AaA37235f82AaAdd130C0B050679077C7" + }, + { + "name": "value", + "type": "uint256", + "value": 5022620000 + } + ], + "args": { + "from": "0x5B5fd84BDF53DF224f33abD7e9cc21a4ed955447", + "to": "0x5D53058AaA37235f82AaAdd130C0B050679077C7", + "value": 5022620000 + } + } + }, + { + "removed": false, + "logIndex": 204, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x0000000000000000000000000000000000000000000000000214e8348c4f0000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000007ec81ec8076dfbfc45be9704a0d8f7b940b46431", + "0x0000000000000000000000004506f312c9daf32a79124565df44462f9214ef35" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x7Ec81EC8076dFBFC45Be9704a0D8F7B940b46431" + }, + { + "name": "to", + "type": "address", + "value": "0x4506f312c9dAf32A79124565DF44462f9214eF35" + }, + { + "name": "value", + "type": "uint256", + "value": "150000000000000000" + } + ], + "args": { + "from": "0x7Ec81EC8076dFBFC45Be9704a0D8F7B940b46431", + "to": "0x4506f312c9dAf32A79124565DF44462f9214eF35", + "value": "150000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 205, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x0000000000000000000000000000000000000000000000000000001848c3b300", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b2cefde21267044443b9ae78e1c00868adbd065f", + "0x000000000000000000000000272f4e5c016a4c64c83b6ea39b40ca6a54b33921" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xB2CEfDE21267044443B9AE78E1c00868aDBD065f" + }, + { + "name": "to", + "type": "address", + "value": "0x272f4e5C016A4c64C83b6eA39B40ca6A54B33921" + }, + { + "name": "value", + "type": "uint256", + "value": 104300000000 + } + ], + "args": { + "from": "0xB2CEfDE21267044443B9AE78E1c00868aDBD065f", + "to": "0x272f4e5C016A4c64C83b6eA39B40ca6A54B33921", + "value": 104300000000 + } + } + }, + { + "removed": false, + "logIndex": 206, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x00000000000000000000000000000000000000000000000000470de4df820000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000eb62684ebd086509e32035e8d7633dd30450decf", + "0x00000000000000000000000036cbe1ae2c6daaf52d39024ce5a1c2015aaf7952" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xEB62684EBd086509e32035e8D7633DD30450DeCF" + }, + { + "name": "to", + "type": "address", + "value": "0x36cBE1aE2C6DAAF52D39024ce5a1C2015AAF7952" + }, + { + "name": "value", + "type": "uint256", + "value": "20000000000000000" + } + ], + "args": { + "from": "0xEB62684EBd086509e32035e8D7633DD30450DeCF", + "to": "0x36cBE1aE2C6DAAF52D39024ce5a1C2015AAF7952", + "value": "20000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 207, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x0000000000000000000000000000000000000000000000000000000db9b1b0ab", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c86a31d896733784d33368f932711ef3e14945c5", + "0x0000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b46" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC86A31D896733784D33368f932711Ef3e14945c5" + }, + { + "name": "to", + "type": "address", + "value": "0x2Caf897509193bA8141e0Ab1F5C410DbB0c67b46" + }, + { + "name": "value", + "type": "uint256", + "value": 58950004907 + } + ], + "args": { + "from": "0xC86A31D896733784D33368f932711Ef3e14945c5", + "to": "0x2Caf897509193bA8141e0Ab1F5C410DbB0c67b46", + "value": 58950004907 + } + } + }, + { + "removed": false, + "logIndex": 208, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x000000000000000000000000000000000000000000000000000000f53c5dae80", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000052530f9612b41eb1b9aae10d7a4ebea69ef45111", + "0x00000000000000000000000059bfaf367c45746b986262f0d46c252a66868ae0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x52530f9612B41EB1b9AAE10D7A4EBea69EF45111" + }, + { + "name": "to", + "type": "address", + "value": "0x59BFaF367c45746b986262f0d46c252A66868ae0" + }, + { + "name": "value", + "type": "uint256", + "value": 1053279760000 + } + ], + "args": { + "from": "0x52530f9612B41EB1b9AAE10D7A4EBea69EF45111", + "to": "0x59BFaF367c45746b986262f0d46c252A66868ae0", + "value": 1053279760000 + } + } + }, + { + "removed": false, + "logIndex": 209, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x000000000000000000000000000000000000000000000000000000e8d4a51000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000eaa962169c075bdd9daf71bc326837e0370b29ac", + "0x0000000000000000000000001d423383ba77f0f3c06466f3457b7032a528cdeb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xeaA962169c075BdD9dAF71bC326837e0370b29Ac" + }, + { + "name": "to", + "type": "address", + "value": "0x1D423383ba77f0F3C06466F3457B7032A528cdeB" + }, + { + "name": "value", + "type": "uint256", + "value": 1000000000000 + } + ], + "args": { + "from": "0xeaA962169c075BdD9dAF71bC326837e0370b29Ac", + "to": "0x1D423383ba77f0F3C06466F3457B7032A528cdeB", + "value": 1000000000000 + } + } + }, + { + "removed": false, + "logIndex": 210, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x00000000000000000000000000000000000000000000000000000009ba483500", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a", + "0x000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b2357" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5390150b3eC8F9103F99e857FAffa634B926b41A" + }, + { + "name": "to", + "type": "address", + "value": "0xd1995940f2eeea1D13edf20F5904A2ed837B2357" + }, + { + "name": "value", + "type": "uint256", + "value": 41780000000 + } + ], + "args": { + "from": "0x5390150b3eC8F9103F99e857FAffa634B926b41A", + "to": "0xd1995940f2eeea1D13edf20F5904A2ed837B2357", + "value": 41780000000 + } + } + }, + { + "removed": false, + "logIndex": 211, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x00000000000000000000000000000000000000000000000000000001b81bd8c0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e561", + "0x00000000000000000000000015f6794430b78b9578d29aa71bd60ae2d2371973" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xee424c1aE1f55232691d3b64634610F4De55E561" + }, + { + "name": "to", + "type": "address", + "value": "0x15f6794430B78B9578D29aA71BD60Ae2d2371973" + }, + { + "name": "value", + "type": "uint256", + "value": 7383800000 + } + ], + "args": { + "from": "0xee424c1aE1f55232691d3b64634610F4De55E561", + "to": "0x15f6794430B78B9578D29aA71BD60Ae2d2371973", + "value": 7383800000 + } + } + }, + { + "removed": false, + "logIndex": 212, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x000000000000000000000000000000000000000000000001f399b1438a100000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000001ab44e5943af227cd8bce8b6a8acd3ff44fa10cc", + "0x0000000000000000000000009b1c4f0d641047ccf364514f82ecdf5995417aed" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x1Ab44e5943af227cd8Bce8B6A8aCd3fF44FA10CC" + }, + { + "name": "to", + "type": "address", + "value": "0x9b1C4f0d641047CcF364514f82eCDf5995417AED" + }, + { + "name": "value", + "type": "uint256", + "value": "36000000000000000000" + } + ], + "args": { + "from": "0x1Ab44e5943af227cd8Bce8B6A8aCd3fF44FA10CC", + "to": "0x9b1C4f0d641047CcF364514f82eCDf5995417AED", + "value": "36000000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 213, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x0000000000000000000000000000000000000000000000000000001d23857380", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000006d98918a2001b1e9447151048a46b9cd6dd13f12", + "0x000000000000000000000000f9439b28ab755dad68518aaa08010937d2e23fe5" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x6D98918a2001B1E9447151048A46B9cd6Dd13f12" + }, + { + "name": "to", + "type": "address", + "value": "0xf9439B28AB755Dad68518aAA08010937D2e23fE5" + }, + { + "name": "value", + "type": "uint256", + "value": 125150000000 + } + ], + "args": { + "from": "0x6D98918a2001B1E9447151048A46B9cd6Dd13f12", + "to": "0xf9439B28AB755Dad68518aAA08010937D2e23fE5", + "value": 125150000000 + } + } + }, + { + "removed": false, + "logIndex": 214, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x0000000000000000000000000000000000000000000000000000000ba43b7400", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000057d7b62c7b877f315b2d0cac98c4775f5bd3cd0b", + "0x0000000000000000000000001b9a33f67ab944041f099beb1cddeac25c01705d" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x57d7b62c7b877f315B2d0cac98c4775F5Bd3cD0b" + }, + { + "name": "to", + "type": "address", + "value": "0x1B9a33F67Ab944041F099beB1CDDEAc25c01705D" + }, + { + "name": "value", + "type": "uint256", + "value": 50000000000 + } + ], + "args": { + "from": "0x57d7b62c7b877f315B2d0cac98c4775F5Bd3cD0b", + "to": "0x1B9a33F67Ab944041F099beB1CDDEAc25c01705D", + "value": 50000000000 + } + } + }, + { + "removed": false, + "logIndex": 215, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x00000000000000000000000000000000000000000000000000000000000f4240", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000004c1211b9b2acb8cf812eede09d3e993a095c32fd", + "0x00000000000000000000000085d74c3630bc00033424b0ac0138da680501a61a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x4C1211b9B2AcB8CF812eEde09d3e993a095c32FD" + }, + { + "name": "to", + "type": "address", + "value": "0x85d74C3630Bc00033424b0aC0138da680501A61a" + }, + { + "name": "value", + "type": "uint256", + "value": 1000000 + } + ], + "args": { + "from": "0x4C1211b9B2AcB8CF812eEde09d3e993a095c32FD", + "to": "0x85d74C3630Bc00033424b0aC0138da680501A61a", + "value": 1000000 + } + } + }, + { + "removed": false, + "logIndex": 216, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x00000000000000000000000000000000000000000000000000000000c16ac540", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c0a1e393590a06e74efda03acb6c9c9b2ee0f2b2", + "0x000000000000000000000000e5b173049d84218c3ab793fd7cbd8f912da88c5a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2" + }, + { + "name": "to", + "type": "address", + "value": "0xE5B173049d84218C3aB793FD7cBd8F912dA88C5a" + }, + { + "name": "value", + "type": "uint256", + "value": 3245000000 + } + ], + "args": { + "from": "0xC0a1e393590a06e74EFDA03aCB6C9c9b2ee0F2B2", + "to": "0xE5B173049d84218C3aB793FD7cBd8F912dA88C5a", + "value": 3245000000 + } + } + }, + { + "removed": false, + "logIndex": 217, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x0000000000000000000000000000000000000000000000000000000007cf5bf0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f1f92b8f780995b6df8f37de3bb9b59b7e1438a6", + "0x000000000000000000000000df9a55c7d99a29e46416e152dbde6c7ed0018a2b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xf1f92b8F780995b6dF8f37de3Bb9B59B7e1438A6" + }, + { + "name": "to", + "type": "address", + "value": "0xDf9a55c7d99a29e46416E152dBDE6C7eD0018a2B" + }, + { + "name": "value", + "type": "uint256", + "value": 131030000 + } + ], + "args": { + "from": "0xf1f92b8F780995b6dF8f37de3Bb9B59B7e1438A6", + "to": "0xDf9a55c7d99a29e46416E152dBDE6C7eD0018a2B", + "value": 131030000 + } + } + }, + { + "removed": false, + "logIndex": 218, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x00000000000000000000000000000000000000000000000000000009ba483500", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a", + "0x000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b2357" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x5390150b3eC8F9103F99e857FAffa634B926b41A" + }, + { + "name": "to", + "type": "address", + "value": "0xd1995940f2eeea1D13edf20F5904A2ed837B2357" + }, + { + "name": "value", + "type": "uint256", + "value": 41780000000 + } + ], + "args": { + "from": "0x5390150b3eC8F9103F99e857FAffa634B926b41A", + "to": "0xd1995940f2eeea1D13edf20F5904A2ed837B2357", + "value": 41780000000 + } + } + }, + { + "removed": false, + "logIndex": 219, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x0000000000000000000000000000000000000000000000000000001678acf0af", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002bc6457374432452c60bf2ad26c4f07e49e0d6f5", + "0x000000000000000000000000156a9e844ad0a84b3e1c4ff081f11d7174181ad8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x2bc6457374432452c60Bf2ad26c4F07e49e0D6f5" + }, + { + "name": "to", + "type": "address", + "value": "0x156A9E844AD0a84B3e1C4FF081f11d7174181ad8" + }, + { + "name": "value", + "type": "uint256", + "value": 96513880239 + } + ], + "args": { + "from": "0x2bc6457374432452c60Bf2ad26c4F07e49e0D6f5", + "to": "0x156A9E844AD0a84B3e1C4FF081f11d7174181ad8", + "value": 96513880239 + } + } + }, + { + "removed": false, + "logIndex": 220, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x0000000000000000000000000000000000000000000000000000000a84486abf", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c66344647a5140df4c7427742320ae9230272e56", + "0x0000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b46" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC66344647A5140Df4c7427742320aE9230272e56" + }, + { + "name": "to", + "type": "address", + "value": "0x2Caf897509193bA8141e0Ab1F5C410DbB0c67b46" + }, + { + "name": "value", + "type": "uint256", + "value": 45169011391 + } + ], + "args": { + "from": "0xC66344647A5140Df4c7427742320aE9230272e56", + "to": "0x2Caf897509193bA8141e0Ab1F5C410DbB0c67b46", + "value": 45169011391 + } + } + }, + { + "removed": false, + "logIndex": 221, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x00000000000000000000000000000000000000000000000000000001aca3b918", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000a0ba601c986493416713b5423d30b2a390e55d73", + "0x0000000000000000000000008b87fb4af0595cf61bc9eaee1a3846b7e6079c3b" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xa0bA601C986493416713B5423D30b2A390e55d73" + }, + { + "name": "to", + "type": "address", + "value": "0x8b87FB4AF0595Cf61bc9EAEe1a3846b7e6079c3b" + }, + { + "name": "value", + "type": "uint256", + "value": 7191378200 + } + ], + "args": { + "from": "0xa0bA601C986493416713B5423D30b2A390e55d73", + "to": "0x8b87FB4AF0595Cf61bc9EAEe1a3846b7e6079c3b", + "value": 7191378200 + } + } + }, + { + "removed": false, + "logIndex": 222, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0x347B772C920B6c826cBFAEBc4be05510FDdd8986", + "data": "0x000000000000000000000000000000000000000000000000000001d1a94a2000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009c1f7e5932a658fb137a99c640797128a2399ed8", + "0x00000000000000000000000069d1e9d3f28d32885e0986df2736383419dcbc09" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x9c1F7e5932A658Fb137A99C640797128a2399ED8" + }, + { + "name": "to", + "type": "address", + "value": "0x69D1E9d3F28D32885E0986DF2736383419dcbC09" + }, + { + "name": "value", + "type": "uint256", + "value": 2000000000000 + } + ], + "args": { + "from": "0x9c1F7e5932A658Fb137A99C640797128a2399ED8", + "to": "0x69D1E9d3F28D32885E0986DF2736383419dcbC09", + "value": 2000000000000 + } + } + }, + { + "removed": false, + "logIndex": 223, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x000000000000000000000000000000000000000000000001bc16d674ec800000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ca3f8945afa9223fc508707f57bb0f5172daafe4", + "0x00000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad72" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xCa3f8945afA9223FC508707f57BB0F5172DAaFE4" + }, + { + "name": "to", + "type": "address", + "value": "0x25734674b2387DfB4D2Eb66dbcF387c09408Ad72" + }, + { + "name": "value", + "type": "uint256", + "value": "32000000000000000000" + } + ], + "args": { + "from": "0xCa3f8945afA9223FC508707f57BB0F5172DAaFE4", + "to": "0x25734674b2387DfB4D2Eb66dbcF387c09408Ad72", + "value": "32000000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 224, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xBdfA6137fB2F84B09f10E51b155458a8eEE34B32", + "data": "0x0000000000000000000000000000000000000000000000000000002e90edd000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000f26948911c22d3e6ec71233b633e3aca50b440b5", + "0x00000000000000000000000040ad8e8085f8c052fae40f0afda247025f353ddb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xf26948911C22d3e6EC71233b633E3aca50b440B5" + }, + { + "name": "to", + "type": "address", + "value": "0x40aD8e8085F8c052FaE40F0afDA247025F353Ddb" + }, + { + "name": "value", + "type": "uint256", + "value": 200000000000 + } + ], + "args": { + "from": "0xf26948911C22d3e6EC71233b633E3aca50b440B5", + "to": "0x40aD8e8085F8c052FaE40F0afDA247025F353Ddb", + "value": 200000000000 + } + } + }, + { + "removed": false, + "logIndex": 225, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "transactionIndex": 103, + "address": "0xdb0996930fb7b311e710E80B192C3013D36A8D35", + "data": "0x000000000000000000000000000000000000000000000001bc16d674ec800000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000021e77be3dd7b8a6e583404c24f08e3af0356d717", + "0x00000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad72" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "66d7939ae1b326affd58299ca186ec65ad5b97213ffbd8f4967ab8093d3d13ac", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x21E77Be3Dd7b8A6E583404c24f08E3af0356d717" + }, + { + "name": "to", + "type": "address", + "value": "0x25734674b2387DfB4D2Eb66dbcF387c09408Ad72" + }, + { + "name": "value", + "type": "uint256", + "value": "32000000000000000000" + } + ], + "args": { + "from": "0x21E77Be3Dd7b8A6E583404c24f08E3af0356d717", + "to": "0x25734674b2387DfB4D2Eb66dbcF387c09408Ad72", + "value": "32000000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x1856ff57259b03840a1ef2a3d67fefc29c31dc4d096215ea3bcec2f57a407181", + "from": "0x9C19B0497997Fe9E75862688a295168070456951", + "to": "0xa989adC10ba10d207beA0356F9b829280cb9f6a2", + "gas": 21000, + "gasPrice": 52093773, + "input": "0x", + "nonce": 564561, + "value": "476040000000000000", + "v": "0x0", + "r": "0x3b500a0448a29617b577c854f6d72a061ed732b71dd36d362010e03971be834a", + "s": "0x15848eace2c1a03a0c79c9d69b6d94b6c755b699bd922536a8dfe233760264d9", + "maxFeePerGas": 98980368, + "maxPriorityFeePerGas": 30, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 104, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7933225, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x11a574aeed9d4c0d6e42f75f8dacb3be92153b7ca96861c7bc9dad7d7e4c57f1", + "from": "0x9C19B0497997Fe9E75862688a295168070456951", + "to": "0x6fB8140bA4F039fE61E7cd477D5150179B14D2bd", + "gas": 21000, + "gasPrice": 52093773, + "input": "0x", + "nonce": 564562, + "value": "3962260000000000000", + "v": "0x1", + "r": "0xfa85c8ef06e33eff12f33f314e3efdc85d03c531de9b18d6f1ea0198b1a051b2", + "s": "0x2458a6440cfae0b86a16deae7c6d24d4b46303b3e855f06b63b460f2628d5db4", + "maxFeePerGas": 98980368, + "maxPriorityFeePerGas": 30, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 105, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7954225, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x37d7ee233456cee9def23925d108ddbcf2bb98c65fa227c7400b933e1ebd1f2e", + "from": "0x8811372839cB719BD4e2D9693fd11B9c898F72B1", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 84000, + "gasPrice": 52093768, + "nonce": 5, + "value": 0, + "v": "0x0", + "r": "0x6ed1d7ec4fda04dc4fa5f95d84ebf7c3737481889b2a752aff227dd653e2ddd1", + "s": "0x478210cf70da1aeb69cfab66db0edf8d050913a74f78803b03ab295d1368392b", + "maxFeePerGas": 64437210, + "maxPriorityFeePerGas": 25, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 106, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 7995534, + "gasUsed": 41309, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x337aB67279AF6E192aE98C71fCdc1564bc1D3Fab" + }, + { + "name": "_value", + "type": "uint256", + "value": 60200000 + } + ], + "args": { + "_to": "0x337aB67279AF6E192aE98C71fCdc1564bc1D3Fab", + "_value": 60200000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 226, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x37d7ee233456cee9def23925d108ddbcf2bb98c65fa227c7400b933e1ebd1f2e", + "transactionIndex": 106, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000003969440", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008811372839cb719bd4e2d9693fd11b9c898f72b1", + "0x000000000000000000000000337ab67279af6e192ae98c71fcdc1564bc1d3fab" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x8811372839cB719BD4e2D9693fd11B9c898F72B1" + }, + { + "name": "to", + "type": "address", + "value": "0x337aB67279AF6E192aE98C71fCdc1564bc1D3Fab" + }, + { + "name": "value", + "type": "uint256", + "value": 60200000 + } + ], + "args": { + "from": "0x8811372839cB719BD4e2D9693fd11B9c898F72B1", + "to": "0x337aB67279AF6E192aE98C71fCdc1564bc1D3Fab", + "value": 60200000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xa53fe347e52ab37f9f678edd5a489a2946eb2d0aecc32a36211f11c15db9b968", + "from": "0xd39E369A4a161a34F7275d2CBE9A95A1fED88A1D", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 84000, + "gasPrice": 52093768, + "nonce": 16, + "value": 0, + "v": "0x0", + "r": "0x7d6f2b207b5bddf0591b930d166d3c494df3dede26a21f762c0b3c051cfcd85", + "s": "0x6a06c4be88b6d90dd51b2993feb0662edc3674bb4b1856ba51f1f74deda23824", + "maxFeePerGas": 64437210, + "maxPriorityFeePerGas": 25, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 107, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8035882, + "gasUsed": 40348, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x346A15bc419429E1452c0B53CF1174c9114D764e" + }, + { + "name": "_value", + "type": "uint256", + "value": 600000000 + } + ], + "args": { + "_to": "0x346A15bc419429E1452c0B53CF1174c9114D764e", + "_value": 600000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 227, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa53fe347e52ab37f9f678edd5a489a2946eb2d0aecc32a36211f11c15db9b968", + "transactionIndex": 107, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000000023c34600", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000d39e369a4a161a34f7275d2cbe9a95a1fed88a1d", + "0x000000000000000000000000346a15bc419429e1452c0b53cf1174c9114d764e" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xd39E369A4a161a34F7275d2CBE9A95A1fED88A1D" + }, + { + "name": "to", + "type": "address", + "value": "0x346A15bc419429E1452c0B53CF1174c9114D764e" + }, + { + "name": "value", + "type": "uint256", + "value": 600000000 + } + ], + "args": { + "from": "0xd39E369A4a161a34F7275d2CBE9A95A1fED88A1D", + "to": "0x346A15bc419429E1452c0B53CF1174c9114D764e", + "value": 600000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x099e29652215012a30278af790e24cd2bb642829e635a483ac8be485d1967d98", + "from": "0x016E06C7772bbEA7819819B339EACbAFF5F7C786", + "to": "0x307576Dd4F73f91BB8c4A2EdB762938E8e067d31", + "gas": 21000, + "gasPrice": 52093768, + "input": "0x", + "nonce": 558, + "value": "49310315207306000", + "v": "0x0", + "r": "0x33321d2ff3cf1862f55ceed915c4a10ca072c17db124b2b10d0672bb968fdd07", + "s": "0xf10136166c526572d858db1ef2d3d3b6de8bc919d9dc8e55084844c40872af8", + "maxFeePerGas": 64437210, + "maxPriorityFeePerGas": 25, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 108, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8056882, + "gasUsed": 21000, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": false + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [] + }, + { + "transaction": { + "hash": "0x83b3b98b33642ba82c2b473919a1b9524d98f8b20eb5160f6fbd7efad4134681", + "from": "0x16f148015742Be254DD62CE57f5f31C0151Ba294", + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "gas": 84000, + "gasPrice": 52093768, + "nonce": 1, + "value": 0, + "v": "0x0", + "r": "0x23ea1603ae666722120dca27e12c44361f4163799f14e3b2ed720d7f0b06c176", + "s": "0x614e7df3d5e03b87114bb07108f0914afed74a74ff68634a3015f098b8bd9e09", + "maxFeePerGas": 64437210, + "maxPriorityFeePerGas": 25, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 109, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8098191, + "gasUsed": 41309, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x3068aaa8E7E07693CF3066dD15F174F7afC30C40" + }, + { + "name": "_value", + "type": "uint256", + "value": 103761337 + } + ], + "args": { + "_to": "0x3068aaa8E7E07693CF3066dD15F174F7afC30C40", + "_value": 103761337 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 228, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x83b3b98b33642ba82c2b473919a1b9524d98f8b20eb5160f6fbd7efad4134681", + "transactionIndex": 109, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000062f45b9", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000016f148015742be254dd62ce57f5f31c0151ba294", + "0x0000000000000000000000003068aaa8e7e07693cf3066dd15f174f7afc30c40" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x16f148015742Be254DD62CE57f5f31C0151Ba294" + }, + { + "name": "to", + "type": "address", + "value": "0x3068aaa8E7E07693CF3066dD15F174F7afC30C40" + }, + { + "name": "value", + "type": "uint256", + "value": 103761337 + } + ], + "args": { + "from": "0x16f148015742Be254DD62CE57f5f31C0151Ba294", + "to": "0x3068aaa8E7E07693CF3066dD15F174F7afC30C40", + "value": 103761337 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x4c09063946da75589794a5b09f680f9870e4a1b04739b42e46e2fcb578b25ca7", + "from": "0x55FE002aefF02F77364de339a1292923A15844B8", + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 150000, + "gasPrice": 52093765, + "nonce": 1508851, + "value": 0, + "v": "0x1", + "r": "0xa5fc5f769d54b7aadd1f2b7d4d4774ecc5da8c22855dd50f21ae9dc9745f6ed7", + "s": "0x391b4652d548c8f2efc2d500bcbb335d435080e3e306c9d4ea0c58f6c37a4723", + "maxFeePerGas": 500000000000, + "maxPriorityFeePerGas": 22, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 110, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8143351, + "gasUsed": 45160, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x0191E427515594A62FD6Af4Ba4c02dc27D32F452" + }, + { + "name": "_value", + "type": "uint256", + "value": 86000000000 + } + ], + "args": { + "_to": "0x0191E427515594A62FD6Af4Ba4c02dc27D32F452", + "_value": 86000000000 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 229, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x4c09063946da75589794a5b09f680f9870e4a1b04739b42e46e2fcb578b25ca7", + "transactionIndex": 110, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x0000000000000000000000000000000000000000000000000000001405ffdc00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000055fe002aeff02f77364de339a1292923a15844b8", + "0x0000000000000000000000000191e427515594a62fd6af4ba4c02dc27d32f452" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x55FE002aefF02F77364de339a1292923A15844B8" + }, + { + "name": "to", + "type": "address", + "value": "0x0191E427515594A62FD6Af4Ba4c02dc27D32F452" + }, + { + "name": "value", + "type": "uint256", + "value": 86000000000 + } + ], + "args": { + "from": "0x55FE002aefF02F77364de339a1292923A15844B8", + "to": "0x0191E427515594A62FD6Af4Ba4c02dc27D32F452", + "value": 86000000000 + } + } + } + ] + }, + { + "transaction": { + "hash": "0x904be733e1f9234ae49c98a6806921dbb4bcc6443aa25b7edc037624343c3f86", + "from": "0x1571BD48C0bc598c440966568058e02f2373162f", + "to": "0x6E879d0CcC85085A709eBf5539224f53d0D396B0", + "gas": 39551, + "gasPrice": 52093758, + "input": "0xa924e8810000000000000000000000003a43aec53490cb9fa922847385d82fe25d0e9de70000000000000000000000000000000000000000000000000ef6368afbd6b353", + "nonce": 1892, + "value": 0, + "v": "0x1", + "r": "0xe2c6467cc88efeb6e9fdb07a0f750050536de300a5052096915f8dc8fe76f86a", + "s": "0xd8c5f5629597ee8cf96bc09e225efcdd3ebfa445b9ba81a044774d7fb596b0f", + "maxFeePerGas": 98980353, + "maxPriorityFeePerGas": 15, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 111, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8182534, + "gasUsed": 39183, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "55b919d254b670a7043f57e349c1e074fecdb07907392aa2d87695a0d70ff356", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 230, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x904be733e1f9234ae49c98a6806921dbb4bcc6443aa25b7edc037624343c3f86", + "transactionIndex": 111, + "address": "0x6E879d0CcC85085A709eBf5539224f53d0D396B0", + "data": "0x0000000000000000000000000000000000000000000000000ef6368afbd6b35300000000000000000000000000000000000000000000000000000000698d7073", + "topics": [ + "0x60551cde8ad777c516ddf88d76ba006788da7b927b96c68a5b194da575300260", + "0x0000000000000000000000003a43aec53490cb9fa922847385d82fe25d0e9de7" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "55b919d254b670a7043f57e349c1e074fecdb07907392aa2d87695a0d70ff356", + "contractType": { + "name": null + } + } + } + ] + }, + { + "transaction": { + "hash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "from": "0xc0007D8c810becE9B3199Bb65799145165F9437C", + "to": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "gas": 348262, + "gasPrice": 52093758, + "input": "0x13d06a4c0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000003b713413cf22bee658d88893c83377535155f4f2000000000000000000000000f2d96acee05581dee42bf450826b8136fc8ce6dc000000000000000000000000f809a14fbff0cab72005f4e43748f2666cfa9a5500000000000000000000000078e5fcb3cd644d3db71a6369949d6d627a5579dc000000000000000000000000fdfaa94d8dfeb41a105b55cf009fb60e5777dce2000000000000000000000000bdc0019b92f11b26fc074b582983d7127a2c49ed0000000000000000000000003b713413cf22bee658d88893c83377535155f4f2000000000000000000000000f2d96acee05581dee42bf450826b8136fc8ce6dc000000000000000000000000f809a14fbff0cab72005f4e43748f2666cfa9a5500000000000000000000000078e5fcb3cd644d3db71a6369949d6d627a5579dc000000000000000000000000fdfaa94d8dfeb41a105b55cf009fb60e5777dce2000000000000000000000000bdc0019b92f11b26fc074b582983d7127a2c49ed000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000019800000000000000000000000000000000000000000000000000000000000001b500000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd454", + "nonce": 132656, + "value": 0, + "v": "0x0", + "r": "0x77ecf3f2dad80de8425a5f21b6cf94fa0f2b2441bc3bf8e2eead97030c76b5ee", + "s": "0x2a6d2338a2218e471cd9006f92b1e0b2609c3a858c4995b85c2dab51aaebf382", + "maxFeePerGas": 98980353, + "maxPriorityFeePerGas": 15, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 112, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8526896, + "gasUsed": 344362, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "9bc1bc39f1d8fdaf81d567153598209b616ea314840d509fcb559fa874d1e5af", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 231, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c8", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x0000000000000000000000003b713413cf22bee658d88893c83377535155f4f2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0x3B713413Cf22BEE658d88893c83377535155F4f2" + }, + { + "name": "value", + "type": "uint256", + "value": 200 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0x3B713413Cf22BEE658d88893c83377535155F4f2", + "value": 200 + } + } + }, + { + "removed": false, + "logIndex": 232, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000000000008a", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x000000000000000000000000f2d96acee05581dee42bf450826b8136fc8ce6dc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0xf2D96ACEe05581Dee42bf450826B8136fc8Ce6DC" + }, + { + "name": "value", + "type": "uint256", + "value": 138 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0xf2D96ACEe05581Dee42bf450826B8136fc8Ce6DC", + "value": 138 + } + } + }, + { + "removed": false, + "logIndex": 233, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x0000000000000000000000000000000000000000000000000000000000000198", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x000000000000000000000000f809a14fbff0cab72005f4e43748f2666cfa9a55" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0xf809a14fBFF0CaB72005F4e43748f2666cfa9a55" + }, + { + "name": "value", + "type": "uint256", + "value": 408 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0xf809a14fBFF0CaB72005F4e43748f2666cfa9a55", + "value": 408 + } + } + }, + { + "removed": false, + "logIndex": 234, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000000001b5", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x00000000000000000000000078e5fcb3cd644d3db71a6369949d6d627a5579dc" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0x78E5FCB3cD644D3dB71a6369949D6d627a5579dC" + }, + { + "name": "value", + "type": "uint256", + "value": 437 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0x78E5FCB3cD644D3dB71a6369949D6d627a5579dC", + "value": 437 + } + } + }, + { + "removed": false, + "logIndex": 235, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "data": "0x00000000000000000000000000000000000000000000000000000000000000c3", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x000000000000000000000000fdfaa94d8dfeb41a105b55cf009fb60e5777dce2" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "5157940bcbc1f14cc9cd9b04787267e55a3cb6455b14d6eb8fdb2d7f1057a3aa", + "contractName": "AdminUpgradeabilityProxy", + "contractType": { + "name": "Token", + "proxies": [ + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "standard": "ERC897", + "target": "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" + } + ], + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0xFdFAA94D8DFEb41a105B55cf009Fb60e5777dCe2" + }, + { + "name": "value", + "type": "uint256", + "value": 195 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0xFdFAA94D8DFEb41a105B55cf009Fb60e5777dCe2", + "value": 195 + } + } + }, + { + "removed": false, + "logIndex": 236, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "transactionIndex": 112, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000000000008c", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000c727eb69ccf89d5911042f21be25a193d67e2c23", + "0x000000000000000000000000bdc0019b92f11b26fc074b582983d7127a2c49ed" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23" + }, + { + "name": "to", + "type": "address", + "value": "0xbdC0019b92F11b26fC074B582983D7127a2c49ed" + }, + { + "name": "value", + "type": "uint256", + "value": 140 + } + ], + "args": { + "from": "0xC727eb69Ccf89d5911042f21bE25A193D67e2c23", + "to": "0xbdC0019b92F11b26fC074B582983D7127a2c49ed", + "value": 140 + } + } + } + ] + }, + { + "transaction": { + "hash": "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "from": "0x5Bb06d84c7D2b9094EDf129Ad1bBfBCA7D4EDFF5", + "to": "0x56001a55633cca1D6CC98E2DAd04c572e954Abda", + "gas": 152903, + "gasPrice": 52093758, + "input": "0xa9059cbb0000000000000000000000001e7220f659faeec9306ea4cdfe781058e7b94a590000000000000000000000000000000000000000000000000000000019cf309f5bc596055ec0e4a86c48960436885e87e41ad6d768d923b6b2d57fb7bda00ee48c3303f7ec022752c404f5fde0a12b73b015b27925c2ca71b98a9105fcb2a3bfc6033323ca7836f8160cab0a354972882a109b5ae4d23e24380bfd1a1faf7ecf1fe4ad34e0b9ffb03017c621e0138365face09c89ca42991671c207c7a8065b6c3969cfecc0a25aa238d5882d4f2a492703559d52f15fca8840b0bbe2ecf6eabc31f89a2fc05f0656325c50f6096ea991b1f66515ea8a52f41a0ccff1650d03851907be25ab48b8c18dcd003483d49dc613e14db1d2f30750000000000000000000000008f5c6ba7815d0d40ed46a15cf38bd7d2a8f98419000000000000000000000000723204dfe65bdc836d183a05d7c8b1d8cfac586400000000000000000000000000000000000000000000043c33c1937564800000", + "nonce": 5807, + "value": 0, + "v": "0x0", + "r": "0xb756e5475dee7587d50c3caaa6234d59da149701d164167ac307c2f7a4e530e", + "s": "0x1b3a68c9f7c3bff7cd1bf12d9173fcce4768a19a403f314784e5861a496cab3f", + "maxFeePerGas": 98980353, + "maxPriorityFeePerGas": 15, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 113, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8579021, + "gasUsed": 52125, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "cc0564e89cf76d303155a28ba6723175c983a69791bb4c46c13342d474302e98", + "contractName": "ERC20Detailed", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "⁡Ε⁡t⁢h​е⁢n⁡а⁢", + "symbol": "⁤Ε⁠Ν‌Α‌", + "decimals": 18 + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 237, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "transactionIndex": 113, + "address": "0x57e114B691Db790C35207b2e685D4A43181e6061", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000008f5c6ba7815d0d40ed46a15cf38bd7d2a8f98419", + "0x00000000000000000000000056001a55633cca1d6cc98e2dad04c572e954abda" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "04eb66b0cf32d1bfac13ecbd94b725d0312264b1d42c61514f5f014a21f5e456", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ENA", + "symbol": "ENA", + "decimals": 18 + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "owner", + "type": "address", + "value": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419" + }, + { + "name": "spender", + "type": "address", + "value": "0x56001a55633cca1D6CC98E2DAd04c572e954Abda" + }, + { + "name": "value", + "type": "uint256", + "value": 0 + } + ], + "args": { + "owner": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419", + "spender": "0x56001a55633cca1D6CC98E2DAd04c572e954Abda", + "value": 0 + } + } + }, + { + "removed": false, + "logIndex": 238, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "transactionIndex": 113, + "address": "0x57e114B691Db790C35207b2e685D4A43181e6061", + "data": "0x0000000000000000000000000000000000000000000000000000000000000000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008f5c6ba7815d0d40ed46a15cf38bd7d2a8f98419", + "0x000000000000000000000000723204dfe65bdc836d183a05d7c8b1d8cfac5864" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "04eb66b0cf32d1bfac13ecbd94b725d0312264b1d42c61514f5f014a21f5e456", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "ENA", + "symbol": "ENA", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419" + }, + { + "name": "to", + "type": "address", + "value": "0x723204DfE65bdc836d183a05D7C8b1d8cFAc5864" + }, + { + "name": "value", + "type": "uint256", + "value": 0 + } + ], + "args": { + "from": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419", + "to": "0x723204DfE65bdc836d183a05D7C8b1d8cFAc5864", + "value": 0 + } + } + }, + { + "removed": false, + "logIndex": 239, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "transactionIndex": 113, + "address": "0x56001a55633cca1D6CC98E2DAd04c572e954Abda", + "data": "0x00000000000000000000000000000000000000000000043c33c1937564800000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000008f5c6ba7815d0d40ed46a15cf38bd7d2a8f98419", + "0x000000000000000000000000723204dfe65bdc836d183a05d7c8b1d8cfac5864" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "cc0564e89cf76d303155a28ba6723175c983a69791bb4c46c13342d474302e98", + "contractName": "ERC20Detailed", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "⁡Ε⁡t⁢h​е⁢n⁡а⁢", + "symbol": "⁤Ε⁠Ν‌Α‌", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419" + }, + { + "name": "to", + "type": "address", + "value": "0x723204DfE65bdc836d183a05D7C8b1d8cFAc5864" + }, + { + "name": "value", + "type": "uint256", + "value": "20000000000000000000000" + } + ], + "args": { + "from": "0x8F5C6BA7815d0D40Ed46a15CF38Bd7d2a8f98419", + "to": "0x723204DfE65bdc836d183a05D7C8b1d8cFAc5864", + "value": "20000000000000000000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0x4a6f3e4092705abc172433607929737f736253d627e6aff6b90d9b7d8b6fa226", + "from": "0xCE1570823B3372b632c024a70784cdD250f3c677", + "to": "0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "gas": 51914, + "gasPrice": 52093758, + "nonce": 0, + "value": 0, + "v": "0x0", + "r": "0xe52767e88428f7b37be2508c5ad776f01e78cfddd8a75effa0768819fd0eb53d", + "s": "0x40952bdc100166e6880e61e788789d45d49106691254d67c969c7fc41a4f8578", + "maxFeePerGas": 98980353, + "maxPriorityFeePerGas": 15, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 114, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8625963, + "gasUsed": 46942, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "af2fe0bce0eefe94ffd89ce8a134dbc0190be2170022377fc96b1024a227a3da", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Polygon Ecosystem Token", + "symbol": "POL", + "decimals": 18 + } + }, + "call": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "_to", + "type": "address", + "value": "0x78085CF18070F8Ce10e41Ca928196323aBa3569a" + }, + { + "name": "_value", + "type": "uint256", + "value": "1216128413222100000000" + } + ], + "args": { + "_to": "0x78085CF18070F8Ce10e41Ca928196323aBa3569a", + "_value": "1216128413222100000000" + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 240, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x4a6f3e4092705abc172433607929737f736253d627e6aff6b90d9b7d8b6fa226", + "transactionIndex": 114, + "address": "0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "data": "0x000000000000000000000000000000000000000000000041ed2c0c8042bbdd00", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000ce1570823b3372b632c024a70784cdd250f3c677", + "0x00000000000000000000000078085cf18070f8ce10e41ca928196323aba3569a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "af2fe0bce0eefe94ffd89ce8a134dbc0190be2170022377fc96b1024a227a3da", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Polygon Ecosystem Token", + "symbol": "POL", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xCE1570823B3372b632c024a70784cdD250f3c677" + }, + { + "name": "to", + "type": "address", + "value": "0x78085CF18070F8Ce10e41Ca928196323aBa3569a" + }, + { + "name": "value", + "type": "uint256", + "value": "1216128413222100000000" + } + ], + "args": { + "from": "0xCE1570823B3372b632c024a70784cdD250f3c677", + "to": "0x78085CF18070F8Ce10e41Ca928196323aBa3569a", + "value": "1216128413222100000000" + } + } + } + ] + }, + { + "transaction": { + "hash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "from": "0xb78886e4610531dc98d383C54D34284a0e830814", + "to": "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5", + "gas": 561481, + "gasPrice": 52093758, + "input": "0xe21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000a00000000000000023850c28aaa65e50000000000000000023850c28aaa65e50000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000004181d580cd1540a092aee7ff0c957f84b598a483d5577a28cd0569d78d16c714e873990c512ce74bcb7333fe41bc27c52f91ac5804e098d7ad0163342256b764021c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000021be6526a21e0c000000000000000000254bb32ab32eb000000000000000000023850c28aaa65e50000000000000000000000000000091843a000000000000000000000000000000000000000000000980000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000698d70e200000000000000000000000000000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000161f598cd000000000000000031439a79a3535d69b65c3be384840282b4ea0aa70000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042800000000000000000253ec059d3f400000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000023850c28aaa65e500003b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb0000000000000000000000000000000000000000000000000000000100eed0b5000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28000000000000000000000120455ad9500000000000000000112eaa457ee369e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000112eaa457ee369e38a494ef0000000000000002121b20a953a964a774d7fcf046643ceb87d53cc7000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000020d77be0155139d5a960154100000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000009181f260000000000000000000000000000000000000000000000000112eaa457ee369e000000000000000000000000003b9f41e300698d70a86b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000402537f0ff96813da12b31a7845539e9f446a202a7d2c454ae925478e47d185433edf7915fdd5a4f56694814f8637ecaaffffa1c39f13d452968fc4de82869d077000000000000000000000000000000000000000000000000000000000000001463242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3b9d6e0900000000000000025455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b00000000000000000000000000000000000000000000000000000001000276a4000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7800000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000000000000000000000000023850c28aaa65e50000000000000000000000000000000000000000000000000000000000000900fb4400000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002767b22536f75726365223a22222c22416d6f756e74496e555344223a223135342e3230303834353831313231373336222c22416d6f756e744f7574555344223a223135322e3534313639373630353932343634222c22526566657272616c223a22222c22466c616773223a302c22416d6f756e744f7574223a22313532353835313230222c2254696d657374616d70223a313737303837373033352c22526f7574654944223a2236386638613733312d366635312d343536652d393233382d3731616364366663353233663a32353165643339312d366532352d343036612d396662382d616230396332326639653562222c22496e74656772697479496e666f223a7b224b65794944223a2231222c225369676e6174757265223a22465932487a57414c4b57456e4b31716e4a445466357a4938793232314b4f304664737854556b314f594d6e3345356c6965454672534d48585833366c597455476647792f7979636b4c56726b2b4249626f796a694c2b566577466b785878545a784f6c7074695a6839794e334f7648386a7a5a5047744c764770342f32506b4a4379594e434d48695444622b356a523866505355697945554f3749544f79484d7a576b6e4a675857613234787735756338487a6c4455656b7a336e56424b656e4d4a7954307548754253373869775936464f4d52563170617a4446396756664c3957515332366f5045785947725270593459636c6b434c472f44316663493470684d736e4163303146633366774f56415052557374745043385658724e5472564c446c4f686f6e315a3577782f45554e6d38322f505836443671794c78706861742b344538646b78584c3777644f34476145426a54513d3d227d7d00000000000000000000", + "nonce": 557, + "value": 0, + "v": "0x1", + "r": "0xae8c335c2f7bc7a6ea28cf2c5a1e7c31d29c8e17120cfc327def7b01f8fb0d6", + "s": "0x6c7c0c6cc855d4ccf7587be1daa9d88f11df9b88cb15265d92173ba92d665ded", + "maxFeePerGas": 74235268, + "maxPriorityFeePerGas": 15, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": 24438850, + "transactionIndex": 115, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 8957017, + "gasUsed": 331054, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "c528afe1b653b099fa5bc10d430a9204ea6f5c6bf4ad1919246c6c6f0e733e3e", + "contractType": { + "name": null + } + }, + "timestamp": "2026-02-12 06:17:23.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 241, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "data": "0x00000000000000000000000000000000000000000000023850c28aaa65e50000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x000000000000000000000000b78886e4610531dc98d383c54d34284a0e830814", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0xb78886e4610531dc98d383C54D34284a0e830814" + }, + { + "name": "to", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "value", + "type": "uint256", + "value": "10483570000000000000000" + } + ], + "args": { + "from": "0xb78886e4610531dc98d383C54D34284a0e830814", + "to": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "value": "10483570000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 242, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000001116877e5670cb0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB" + }, + { + "name": "dst", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "wad", + "type": "uint256", + "value": "76957532801141936" + } + ], + "args": { + "src": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "dst": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "wad": "76957532801141936" + } + } + }, + { + "removed": false, + "logIndex": 243, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "data": "0x00000000000000000000000000000000000000000000023850c28aaa65e50000", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x0000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "to", + "type": "address", + "value": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB" + }, + { + "name": "value", + "type": "uint256", + "value": "10483570000000000000000" + } + ], + "args": { + "from": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "to": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "value": "10483570000000000000000" + } + } + }, + { + "removed": false, + "logIndex": 244, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x9C7eD68B00DC4f45243b07Ce71a54A86e8f8FcBB", + "data": "0x00000000000000000000000000000000000000000000023850c28aaa65e50000fffffffffffffffffffffffffffffffffffffffffffffffffeee97881a98f350000000000000000000000000000000000000000000b26dd31a5127aadee6cc5a000000000000000000000000000000000000000000001326ec1f30b0807311c6fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe328e", + "topics": [ + "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "36e24a2a238fcaf1060e3932f7757075724831809d472fdec7f6de2e8478c629", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair", + "token0": { + "address": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "info": { + "isContract": true, + "fingerprint": "186385461f78001dc70230cdca71642d2fd1d8651fc7101e58efdc77c5b37499", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "OpenServ", + "symbol": "SERV", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + } + } + }, + "event": { + "name": "Swap", + "signature": "Swap(address,address,int256,int256,uint160,uint128,int24)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "recipient", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "amount0", + "type": "int256", + "value": "10483570000000000000000" + }, + { + "name": "amount1", + "type": "int256", + "value": "115792089237316195423570985008687907853269984665640564039457507050380328498000" + }, + { + "name": "sqrtPriceX96", + "type": "uint160", + "value": "215707427997376870078663770" + }, + { + "name": "liquidity", + "type": "uint128", + "value": "90442953820776078447046" + }, + { + "name": "tick", + "type": "int24", + "value": "115792089237316195423570985008687907853269984665640564039457584007913129521806" + } + ], + "args": { + "sender": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "recipient": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "amount0": "10483570000000000000000", + "amount1": "115792089237316195423570985008687907853269984665640564039457507050380328498000", + "sqrtPriceX96": "215707427997376870078663770", + "liquidity": "90442953820776078447046", + "tick": "115792089237316195423570985008687907853269984665640564039457584007913129521806" + } + } + }, + { + "removed": false, + "logIndex": 245, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "data": "0x0000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb00000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000001116877e5670cb0", + "topics": [ + "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "256631d887b9080134230cd6d7450b19b4fe317f31949dd13a3e7d549c4d5067", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 246, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000090b58d9", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "to", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "value", + "type": "uint256", + "value": 151738585 + } + ], + "args": { + "from": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "to": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "value": 151738585 + } + } + }, + { + "removed": false, + "logIndex": 247, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "data": "0x00000000000000000000000000000000000000000000000001116877e5670cb0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x00000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff86" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "src", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "dst", + "type": "address", + "value": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86" + }, + { + "name": "wad", + "type": "uint256", + "value": "76957532801141936" + } + ], + "args": { + "src": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "dst": "0x67336Cec42645F55059EfF241Cb02eA5cC52fF86", + "wad": "76957532801141936" + } + } + }, + { + "removed": false, + "logIndex": 248, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x111111125421cA6dc452d289314280a0f8842A65", + "data": "0x2c8804b053c7cb5c81c9c72088deaa2a2ed2c2e746e784546448ee0d22764cd000000000000000000000000000000000000000000000000000000000000cc64d", + "topics": [ + "0xfec331350fce78ba658e082a71da20ac9f8d798a99b3c79681c8440cbfe77e07" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "4e35634dee3239699af0a1198d9013b8c2303cced156a23c893a4b8beb7ad7c0", + "contractType": { + "name": "TokenPair" + }, + "properties": { + "type": "TokenPair" + } + } + }, + { + "removed": false, + "logIndex": 249, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "data": "0x000000000000000000000000111111125421ca6dc452d289314280a0f8842a65000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000001116877e5670cb000000000000000000000000000000000000000000000000000000000090b58d9", + "topics": [ + "0xa6fee24309b1d83d9ec7b9e4dbb73c6f882746efbfb26db7b7d9e9f2fb6dc95a" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "256631d887b9080134230cd6d7450b19b4fe317f31949dd13a3e7d549c4d5067", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 250, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x00000000000000000000000000000000000000000000000000000000090b58d9", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0", + "0x000000000000000000000000b78886e4610531dc98d383c54d34284a0e830814" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0" + }, + { + "name": "to", + "type": "address", + "value": "0xb78886e4610531dc98d383C54D34284a0e830814" + }, + { + "name": "value", + "type": "uint256", + "value": 151738585 + } + ], + "args": { + "from": "0x63242A4Ea82847b20E506b63B0e2e2eFF0CC6cB0", + "to": "0xb78886e4610531dc98d383C54D34284a0e830814", + "value": 151738585 + } + } + }, + { + "removed": false, + "logIndex": 251, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5", + "data": "0x000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000000000000000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000000000000090b58d9", + "topics": [ + "0xd6d4f5681c246c9f42c203e287975af1601f8df8035a9251f79aab5c8f09e2f8" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c528afe1b653b099fa5bc10d430a9204ea6f5c6bf4ad1919246c6c6f0e733e3e", + "contractType": { + "name": null + } + }, + "event": { + "name": "Swapped", + "signature": "Swapped(address,address,address,address,uint256,uint256)", + "params": [ + { + "name": "sender", + "type": "address", + "value": "0xb78886e4610531dc98d383C54D34284a0e830814" + }, + { + "name": "srcToken", + "type": "address", + "value": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042" + }, + { + "name": "dstToken", + "type": "address", + "value": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "name": "dstReceiver", + "type": "address", + "value": "0xb78886e4610531dc98d383C54D34284a0e830814" + }, + { + "name": "spentAmount", + "type": "uint256", + "value": "10483570000000000000000" + }, + { + "name": "returnAmount", + "type": "uint256", + "value": 151738585 + } + ], + "args": { + "sender": "0xb78886e4610531dc98d383C54D34284a0e830814", + "srcToken": "0x40e3d1A4B2C47d9AA61261F5606136ef73E28042", + "dstToken": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "dstReceiver": "0xb78886e4610531dc98d383C54D34284a0e830814", + "spentAmount": "10483570000000000000000", + "returnAmount": 151738585 + } + } + }, + { + "removed": false, + "logIndex": 252, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5", + "data": "0x00000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000090b58d9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "topics": [ + "0xddac40937f35385a34f721af292e5a83fc5b840f722bff57c2fc71adba708c48" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c528afe1b653b099fa5bc10d430a9204ea6f5c6bf4ad1919246c6c6f0e733e3e", + "contractType": { + "name": null + } + } + }, + { + "removed": false, + "logIndex": 253, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "transactionIndex": 115, + "address": "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5", + "data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002767b22536f75726365223a22222c22416d6f756e74496e555344223a223135342e3230303834353831313231373336222c22416d6f756e744f7574555344223a223135322e3534313639373630353932343634222c22526566657272616c223a22222c22466c616773223a302c22416d6f756e744f7574223a22313532353835313230222c2254696d657374616d70223a313737303837373033352c22526f7574654944223a2236386638613733312d366635312d343536652d393233382d3731616364366663353233663a32353165643339312d366532352d343036612d396662382d616230396332326639653562222c22496e74656772697479496e666f223a7b224b65794944223a2231222c225369676e6174757265223a22465932487a57414c4b57456e4b31716e4a445466357a4938793232314b4f304664737854556b314f594d6e3345356c6965454672534d48585833366c597455476647792f7979636b4c56726b2b4249626f796a694c2b566577466b785878545a784f6c7074695a6839794e334f7648386a7a5a5047744c764770342f32506b4a4379594e434d48695444622b356a523866505355697945554f3749544f79484d7a576b6e4a675857613234787735756338487a6c4455656b7a336e56424b656e4d4a7954307548754253373869775936464f4d52563170617a4446396756664c3957515332366f5045785947725270593459636c6b434c472f44316663493470684d736e4163303146633366774f56415052557374745043385658724e5472564c446c4f686f6e315a3577782f45554e6d38322f505836443671794c78706861742b344538646b78584c3777644f34476145426a54513d3d227d7d00000000000000000000", + "topics": [ + "0x095e66fa4dd6a6f7b43fb8444a7bd0edb870508c7abf639bc216efb0bcff9779" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "c528afe1b653b099fa5bc10d430a9204ea6f5c6bf4ad1919246c6c6f0e733e3e", + "contractType": { + "name": null + } + } + } + ] + } + ] +} diff --git a/sample-data/evm_get_block(raw).json b/sample-data/evm_get_block(raw).json new file mode 100644 index 0000000..c723ed7 --- /dev/null +++ b/sample-data/evm_get_block(raw).json @@ -0,0 +1,2641 @@ +{ + "hash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "parentHash": "0xe96154a6f9708ff81260c548d5932eda1abe6ddb2370d12dd2bee2c25df8a33d", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "miner": "0xb364e75b1189dcbbf7f0c856456c1ba8e4d6481b", + "stateRoot": "0x6d3339b26fbf9f81c92dd06d780b7976eb161ee97230e4dcff361ecd9354e6ba", + "transactionsRoot": "0x0b5206e766dc6831c83279b7269b06776d1d43d0fc9bdc5bc3e3e02c6fc74bf1", + "receiptsRoot": "0x1faa3c9d4cebd6746bf6c2c2856901db1ddb7466f6b2e1ce22d4b183957f16c0", + "logsBloom": "0x816a724835a4210182288d00c13012921153a6c50aaa42d281e979082259e827935860063288242a0313d2fce643711cc71099088c862410186c64e0932908422223069100e80009ea7a620fb4fc50eec84f1cab54cf0b2c25001b5ef5bc04134a1033cc0a158d3d098398620812e9012212252252b25c181188e299808f74e20016082b9a190516ca5a10621214402a01012c7b5108802b044f855090f5882b0fda9a671891605f002034ea31841aa0dd2d49698648d788016d8ecc012120e32245d9eb953b02254e4f924c27f8dd8f5235b56264151e9354ab959b91a4a0c653107e30d81a0c1624c3ba2207d52c409460c49815040840637060c164052251", + "difficulty": "0x0", + "number": "0x174e842", + "gasLimit": "0x3938700", + "gasUsed": "0x88ac59", + "timestamp": "2026-02-12 06:17:23.000 UTC", + "extraData": "0x4e65746865726d696e642076312e33352e32", + "mixHash": "0xd4dc4281319360371317723c9c4e841c5a3a170f1f50292e31046652e36832e9", + "nonce": "0x0000000000000000", + "baseFeePerGas": "0x31ae32f", + "withdrawalsRoot": "0x57e780df4c5af981766bdbae47ca1e9bd353740c7c3e3dae7676dbdccd7efe65", + "blobGasUsed": "0xa0000", + "excessBlobGas": "0xa666ad3", + "parentBeaconBlockRoot": "0x544ea15eedfbfa219139d96d795de3283e2fc2b492735f3ffa8c13b52173f67a", + "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "size": "0xbc1a", + "uncles": [], + "transactions": [ + { + "type": "0x3", + "chainId": "0x1", + "nonce": "0x1eb47b", + "gas": "0x5208", + "maxFeePerGas": "0x1c0d2ae80", + "maxPriorityFeePerGas": "0x959b8f80", + "to": "0xff00000000000000000000000000000000008453", + "value": "0x0", + "accessList": [], + "blobVersionedHashes": [ + "0x01789005678ea0d23874f107ba08f4e8186c8cc534e4d0c136050c10c71b73c8", + "0x0101871f114e6ff8cdf0ff361ce5558b95e7c3c2dd4553d601d84050303c699d", + "0x0155a226f4035ab472043683ca37b103285b219924e5f70f699fad3125f7b949", + "0x0195f5be1d78977f2b52f163c68702bb8b07405d9cc879a79708a32452c8eed2", + "0x0149556d5e4612126c83cb80861b5bb50c920a863d942691d4ab265464f81f36" + ], + "maxFeePerBlobGas": "0x3b9aca00", + "input": "0x", + "r": "0x830e57467e6de28e97fdfd2aee69ec553066e39b49be9fe95722327e273bcec4", + "s": "0x9948c61dd8816c15964cb31f0de553a7632ac5e413c5a3839c7dea02ac57337", + "yParity": "0x0", + "v": "0x0", + "hash": "0x39efdaadf2063d7c11041f7cc4713855d4956633941b44b14a5964d127ae6cab", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x0", + "from": "0x5050f69a9786f081509234f1a7f4684b5e5b76c9", + "gasPrice": "0x98b672af", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x5", + "gasPrice": "0x2b7e5c0ce", + "gas": "0x15f90", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "input": "0xa9059cbb000000000000000000000000e17eff36d88df136529764b2517e9c8cc6113f4f000000000000000000000000000000000000000000000000000000002e2819e0", + "r": "0x4645a67bf639278485eae0e503ac3634c8e17b476c52ae756d5c3193b23e804c", + "s": "0x3dafaa6db7d4a622323943150f475ec3157846ce2628d5419bdc3e19599d9c84", + "v": "0x26", + "hash": "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1", + "from": "0x63c5c270acdcea542789dcfb2af73f9811acf5fd", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x9", + "gas": "0x5208", + "maxFeePerGas": "0x12e1ef346", + "maxPriorityFeePerGas": "0x12a05f200", + "to": "0x6928f3e126dbac9923d52300fdef714b280b305c", + "value": "0xbfe23f7a6334da", + "accessList": [], + "input": "0x", + "r": "0x6207edaa8bc88d4f0ccf43563950f2f5f6016c67a2c13d8c8b20146b9cbb419c", + "s": "0x726f60652acbe6712c628b737aeefa6f6e668d64ccfdc3ab0750d47ff3554d1a", + "yParity": "0x1", + "v": "0x1", + "hash": "0xc9ae216dddd2b375bf444df6359ef0f9c4dd5fa24162398ac95be9c70954ce90", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2", + "from": "0xfc63c4360f086ca8b18655763813b4ab36d41dc3", + "gasPrice": "0x12d20d52f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x0", + "gasPrice": "0x1122e6e00", + "gas": "0x5208", + "to": "0x77ebdef9dc7161a4a706cd387153b35c38527400", + "value": "0xb03a078ca6d000", + "input": "0x", + "r": "0xb6e4c2c28e9e977319385d16078e0b757e3bea205e715aa4cec3767566f5627c", + "s": "0x6b2bbe68540affc51d583c284a072f2ad739c353fb6dfd9276b3a529514d58d0", + "v": "0x25", + "hash": "0xa2a5f20e833f4538e34f7a759954003b592aeb80541c0b739ac14c61bfa95d65", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3", + "from": "0xdd3e648724c2f46bbe5f4e0b2452c5d236a205f3", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xa91", + "gas": "0x69438", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0xb2d05e00", + "to": "0x6cf6cb29754aebf88af12089224429bd68b0b8c8", + "value": "0xb5303ad38b800", + "accessList": [], + "input": "0x701d10bb00000000000000000000000000000000000000000000000000000000000b71b00000000000000000000000000000000000000000000000000000000000000320", + "r": "0x148d22a1ab8c1e0b745ae2c71d2be61be83087153e22e5f0832fd13891686ab2", + "s": "0x423b421c6e932b1c4f2194174745ee0540d3041911b3b13bfdf8c235e4d0a69e", + "yParity": "0x0", + "v": "0x0", + "hash": "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4", + "from": "0xdf590a63b91e8278a9102bee9aafd444f8a4b780", + "gasPrice": "0xb5eb412f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0xf", + "gasPrice": "0xb2d05e00", + "gas": "0x5208", + "to": "0x4923d9753389d6a9683e31bf995c8cb0d04fe928", + "value": "0x88c78bc7da4000", + "input": "0x", + "r": "0xf02495128f6d1877f9f391651b0400d70435638bade037abee9895997e8513dc", + "s": "0x71af7536bc1aebc634afd95c8ae3d13abcbed488fc0d02780536b9fc6b80edd4", + "v": "0x26", + "hash": "0x9642342b015107719d4490ae115b3a5a8837383e5c795ae4d4afcb55f196fa3c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5", + "from": "0xfd5fb78a7b0b73d5ef1712904108effa45001e8f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0xb18", + "gasPrice": "0xb2d05e00", + "gas": "0x5208", + "to": "0x1aff738740f17f2aad1d13eb7221e62fc6bad2c8", + "value": "0xb159f9bb3000", + "input": "0x", + "r": "0x40cbe3703fb1c038ab192cae1073b8a78113eb74d7dae9ce36fa23f81288260d", + "s": "0xab8c2eee7236123939cd7289392206cfd192d2bfdea9c7500ae731015eb4250", + "v": "0x25", + "hash": "0x56c5b984af08baeb640aaf15cb2a055a382711be815fea1e6f47ec4ee20e5fe4", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6", + "from": "0x482a42e47ac1af9e559df3d7e1d4dabde75c22d4", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x70", + "gasPrice": "0xb2d05e00", + "gas": "0xfde8", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "input": "0xa9059cbb000000000000000000000000741388f50f27cfab6e93a228e67d14cd3c303e8900000000000000000000000000000000000000000000000000000000028683d0", + "r": "0xcd4b9d048cfc57548499c92890b3e3d48ccc3d1463d391ac4fd08d0927db08e0", + "s": "0x48f9c9b313b192a09b2d1536a788064b04e8e806b22ea68e566a28aada10ddfa", + "v": "0x26", + "hash": "0x144f292993a215737ccfe40a69b74fd962fd477bfeb089ed663547c01e31f24b", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x7", + "from": "0xcea8161089a090bcf0bcef268f1bf2255e93473a", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1", + "gasPrice": "0xb2d05e00", + "gas": "0xfde8", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "input": "0xa9059cbb000000000000000000000000741388f50f27cfab6e93a228e67d14cd3c303e890000000000000000000000000000000000000000000000000000000001bd8e80", + "r": "0x236e3944163403db6d7a7481a5956feb00cdff76e663ac5634698260099270fd", + "s": "0x382bf973b64ff1b08c813953de7d3d9c56c8cfdf3640aa050db2772bcd981fdc", + "v": "0x26", + "hash": "0x0a8386973fb0845aca6e3b59eb64b0c7c5013be801873ee4803399d7e0129ca1", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x8", + "from": "0xa93a49659d6cc09b55657b2a805ba971bcb4a240", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1011c", + "gas": "0x15f90", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x77359400", + "to": "0x66761fa41377003622aee3c7675fc7b5c1c2fac5", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000000000000000000000000057086a5506bd4f50000", + "r": "0x1b4232c581ef4219edb4e6b4376da02ecd732161d8490267caaed24b551c823a", + "s": "0x3ba0a59c9710bbf1afbbd60b493863459236900bf6e7e95bc0a1d609510031b6", + "yParity": "0x1", + "v": "0x1", + "hash": "0x7c87a48fbd3bbed89701fee15556f1a1c818837be8361661942a770cc6109a60", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x9", + "from": "0x6522b7f9d481eceb96557f44753a4b893f837e90", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x292f1", + "gas": "0x14820", + "maxFeePerGas": "0x17bfac7c00", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000047a66f65105670da049cf8926f7457ea379c25c0000000000000000000000000000000000000000000000000000000000896dd4", + "r": "0xba00905592e5116886bdec922bfd6a047a7513f0c0d949f2cff61e39de0e4763", + "s": "0x10a5c95be988431260b89b0defe98483f271000776e2205d5a3c64c543f72c9d", + "yParity": "0x1", + "v": "0x1", + "hash": "0xb6fed375ad0e4d3b59f3996066314cae8c43bb1c7f5e68e08fa245d4b56839f0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xa", + "from": "0xbaa67174531f0c031f91a373f6788c7e821af2c5", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x2f82c", + "gas": "0x5208", + "maxFeePerGas": "0x17bfac7c00", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xd9a59211f824aa2fe366aa829ed405f13a9f2d23", + "value": "0x2ac1aafbe4c293", + "accessList": [], + "input": "0x", + "r": "0xf95b5c868e91dd4e1ae29fc717e879b359a082f912f0b8a889fbc23c055a3ae0", + "s": "0x4b067090e9ea7e917f1ccfa8320d39eaf93b8c20310c5fbbfb6df26f04bb450d", + "yParity": "0x0", + "v": "0x0", + "hash": "0xdc3f714267a72c4247d9b3606f85a0b226fcaea59d7a0d418a9695276cf0576c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xb", + "from": "0x8f8d1206d1bce12ff892731f8a140ed18b93884e", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x11b", + "gas": "0x249f0", + "maxFeePerGas": "0x2540be400", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xd37bbe5744d730a1d98d8dc97c42f0ca46ad7146", + "value": "0x21ee9eca6f800", + "accessList": [], + "input": "0x574da717000000000000000000000000d6a5f6d3e89eb8c9deef50ae8214db2c4f4175a6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021ee9eca6f800000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000444f55543a4646363837343431353641334442303046324238303634394230423334314235453737394641353736304135464642373731354331434434444242394535304300000000000000000000000000000000000000000000000000000000", + "r": "0xa68979a03660205dbbadf67179c3946530a78c29649f6c227489b43d1b4f9ae4", + "s": "0x60b4be9f12dfb45dc91d958bd0f54e26c3727e3b68fad110cb906e46c6da327c", + "yParity": "0x0", + "v": "0x0", + "hash": "0x68de59089ba66af59842a71762575c3ace5eb839be6eb8658862930f80a86e2e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xc", + "from": "0x9c66fe52acc2a765aae6dd09ed34ef9507bdca32", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xe99e", + "gas": "0x7530", + "maxFeePerGas": "0x87005d17", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xa03400e098f4421b34a3a44a1b4e571419517687", + "value": "0x47f9da389860f6c", + "accessList": [], + "input": "0x", + "r": "0x9cba4219f61e173541afe67cfe77e162e529acd4e2952797fd56290374c0aa0d", + "s": "0x4fff2c8d68d5e92ed5f980359ec912a54c21394e1e0009b20843edde5c3c0071", + "yParity": "0x1", + "v": "0x1", + "hash": "0x88a8f9a4b422be14116f02644d55bce823bb030c460d5ff0bf812c4a978e97c3", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xd", + "from": "0x8e5a6e6fb4926284774a437241769f9b30c2f743", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x3e46b", + "gas": "0x186a0", + "maxFeePerGas": "0x7d6b5a5e", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000024dd97d84a91107f517e3ed17f3ad26e739cca200000000000000000000000000000000000000000000000000000000139ee4ed", + "r": "0x65bacd499e6695e4d17d0801d7367fb746ecc8af5a8301e8f4f149575eb4fdbe", + "s": "0x2a9aba2025896bb82829ace7101c09a1f7ba1123a9e364347ab016973b54b47c", + "yParity": "0x0", + "v": "0x0", + "hash": "0xf67af77cf0c19e3850d7324a579f0dfb1f56d2020f8cf32203c22c823a9a46f5", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xe", + "from": "0x2e7f2740a839231c41cfde0d531828df312bea04", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1f", + "gas": "0x5208", + "maxFeePerGas": "0x7d308101", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xf30ba13e4b04ce5dc4d254ae5fa95477800f0eb0", + "value": "0x38585a2c1dd6c38", + "accessList": [], + "input": "0x", + "r": "0xbcc0454eff2b7ac5aa759a3bef964836d197cb58fb3c8abf9dd1ef9621bb000b", + "s": "0x483d781264413222a2c9c9790ebb2aef119d5bb47ee23597788c99d19dc642fb", + "yParity": "0x1", + "v": "0x1", + "hash": "0xbcf02c87200286085d3baccbc5720827dcb0190517a87b53d54b62bb7739dbc0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0xf", + "from": "0xdc971a8e2a01b2234b371cb2e1af46ef5d694b24", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x8abb", + "gas": "0x5208", + "maxFeePerGas": "0x7d308101", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xf30ba13e4b04ce5dc4d254ae5fa95477800f0eb0", + "value": "0x3472a9f3cbb030", + "accessList": [], + "input": "0x", + "r": "0x9bb382cc32ea0847374284b03fcb728cbe0876638252fbdb570d428ac0dd2c3d", + "s": "0xf16d44d67e67b2e3e311d174ed96fe7cf8b4f7fe096aa3e92710454a5505a92", + "yParity": "0x1", + "v": "0x1", + "hash": "0xe733f12fc20d54d38b25444157e9ac6390acf78cc9dfc589779880473fab4b6c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x10", + "from": "0x0c8aa5263afde3c43a0fe88aed2b10ade922e666", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0x5208", + "maxFeePerGas": "0x7bd6d303", + "maxPriorityFeePerGas": "0x77359400", + "to": "0x89d43f7c0f1995b9911c0d2160a5d0a30c9b1051", + "value": "0x6afd04e0d1bdde8", + "accessList": [], + "input": "0x", + "r": "0xfc6a6ce9522d79a79a16c3e843f203848a6ebd56f23cf6099c72edde7d62ba65", + "s": "0x3a2c80ebb3204a71c8d1d960e6d820e9d7f99db0e6daabae7682df575724d6e5", + "yParity": "0x1", + "v": "0x1", + "hash": "0x64a9e4fe7e4d21de28818fb0d78a0b63148545e8675ba48b7b960b736e5f9626", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x11", + "from": "0x2e8fbdd6680450c0da7c462a748e4ea049183a3a", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xa2db3", + "gas": "0x17187", + "maxFeePerGas": "0x7a872219", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000007188d836fdc000536124eb0d32d83bfa07c9fdd8000000000000000000000000000000000000000000000000000000001b6b0b00", + "r": "0x684f46601bdf51edce072416feaf922133b0036b05dca03003eb7232e748a5b7", + "s": "0x42cf8995a215f8699e2db35521ba448d6ed059465457b925e0c7388eb8a8095f", + "yParity": "0x1", + "v": "0x1", + "hash": "0xae359239f74e2ac683234f14b0a163bbe2988c857d23dcf5b8458f03805030ea", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x12", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xa2db4", + "gas": "0x17199", + "maxFeePerGas": "0x7a872219", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000da02f12152a94b27dd4977e06eb6764c1828170000000000000000000000000000000000000000000000000000000000068e7780", + "r": "0x222e30f5862f706a74db010228c43e6a5123dff321faa721df171436c9d0ef9b", + "s": "0x4ea40af1e4907c08286675175eb71c7704e3ce9e3cbf5c53a9bd72e335e8946e", + "yParity": "0x0", + "v": "0x0", + "hash": "0x8721a389baf16d67831baff2b0f421b0e369e0ea4c48fd7f7692531522e3e79d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x13", + "from": "0x05ff6964d21e5dae3b1010d5ae0465b3c450f381", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x7a43b", + "gas": "0x1772e", + "maxFeePerGas": "0x7a872219", + "maxPriorityFeePerGas": "0x77359400", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000465763eb88dfa7b119f4352fa77c9b49c1c5288f00000000000000000000000000000000000000000000000000000000001310dc", + "r": "0xf8bfb68dd986975cce1831ce03098eaf04d4299919603fded0ca7b20317990e5", + "s": "0x480911c0ac11f35839dd2219accc6b59e22ce6c27f273147d258e55be0a0944d", + "yParity": "0x1", + "v": "0x1", + "hash": "0x77b744aa5113e95d6a783684e3290473117e38a824b6a521b820cf98b4720a63", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x14", + "from": "0xaa8ba7d4611437141192e7ceced531bc0a133efb", + "gasPrice": "0x7a50772f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x0", + "gasPrice": "0x77359400", + "gas": "0x5208", + "to": "0x50ec559bd9c47b1ea9433b98078e8ba5a055cbf3", + "value": "0x2d106c00540c000", + "input": "0x", + "r": "0x407f05d99e8adfe1d11bbd96b20cd0f23f97b475c865ae3611fd42b4d121dd18", + "s": "0x49622659f7274cf9250ce3c319bcb70f0eb70d8ac56830a409b3c427eb3ad078", + "v": "0x25", + "hash": "0x0d9c9ea504e6a244542f5dee5ea54647a45be99747e82b1178124a30247af36a", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x15", + "from": "0xe9bdbbc608382e5a8c66cd9df86c4fee994ed83c", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1", + "gasPrice": "0x77359400", + "gas": "0x5208", + "to": "0xc1cf7dbf161bd6e15999446132692cdd945f6354", + "value": "0x1f09b5ed1f1c800", + "input": "0x", + "r": "0x3fd6aa798701363c8956d8e935713ff7bdf8350ff567e57728396b6ca28f1bbe", + "s": "0x312b3e715a22ee5a7abc9d26bab3f577261c6c82e58d53ea094284a94599562f", + "v": "0x25", + "hash": "0x705af1df39dd70a618ff57fa05d5bcb35a28f81d55c01606995bc0fb1ad28007", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x16", + "from": "0xe9bdbbc608382e5a8c66cd9df86c4fee994ed83c", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x15ea", + "gasPrice": "0x77359400", + "gas": "0x10ad6", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "input": "0xa9059cbb0000000000000000000000006e0d69be784e1173dfeeee56faeec357354f85270000000000000000000000000000000000000000000000000000000165a0bc00", + "r": "0x3c6d139c7204decffe948471a25dc4703be55b0c5fcacc37d4ca44fc42593a26", + "s": "0x38c4b2c68c50d57cd333b05c707b50f1bb8edc40fb96613e7680b201ee176066", + "v": "0x26", + "hash": "0x0f720e57bde54d372d992f34982b3930d5ae9cc1bf0383a1b98c730d0fcde184", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x17", + "from": "0x3f8633560d6a7f517776cdb7d9d41dc0f9157f1c", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x0", + "gasPrice": "0x77359400", + "gas": "0x5208", + "to": "0x1c7f95bd96ad74c75e1ca274cb77641d2e93aa3f", + "value": "0x9042b52b5dcf30", + "input": "0x", + "r": "0x9b372a4a7c5c15c6ff7f64f404c97a2e1b8e6dff829e951deb1e6a0dbd3efc15", + "s": "0x6684fb7ed0aa8847f2c14086ee279505de33a853b64c21c5a75c3cca1cd6e4f7", + "v": "0x26", + "hash": "0x22242c5d5dc76967ba95d618dfd94d723d7249af1e5ceb4e9a3b38d0821cb6b5", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x18", + "from": "0x0114d00147f14bb19a02e73375c5daefb08b9594", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x9d7b", + "gas": "0x493e0", + "maxFeePerGas": "0x174876e800", + "maxPriorityFeePerGas": "0x59682f00", + "to": "0x20073dcd807ab5fe6fd0439cdf5b16d34628f401", + "value": "0x104fccc656de7800", + "accessList": [], + "input": "0x", + "r": "0xba2c5ea9ea4f9b8d39485d0fc2347918aa26d83e41f0e0827bdd767ee075b675", + "s": "0x32d28b56a78827dac8f49316e883f42910cfed4830923b77af559bd77b6350ae", + "yParity": "0x0", + "v": "0x0", + "hash": "0x7a1a83347bb3c6c0e8668fe7feb6285392374dd50a93c74c0deb17d03e305493", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x19", + "from": "0xb028b84783a0381d51dcf0e8ef04b5e502958618", + "gasPrice": "0x5c83122f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xead3ad", + "gas": "0x32918", + "maxFeePerGas": "0x2794ca2400", + "maxPriorityFeePerGas": "0x3b9aca00", + "to": "0xa8e8c167b74feb3642a3ab66279746e08e548c20", + "value": "0x43b2f2f4e398000", + "accessList": [], + "input": "0x", + "r": "0xf2aa439e43419b62b0b1a63c32eb789218e8ba88fe0a4979063a93744eae4917", + "s": "0x6b87a6e4aaa1fa3640e97c8d442c276500e8269e9a1e0415bd671de85398138f", + "yParity": "0x1", + "v": "0x1", + "hash": "0x382bd9152989dfd6f3a7d9b15c61aa9f53df3a03ac0c724948cfb05beef8a70a", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1a", + "from": "0x28c6c06298d514db089934071355e5743bf21d60", + "gasPrice": "0x3eb5ad2f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xd58be5", + "gas": "0x35d14", + "maxFeePerGas": "0x2794ca2400", + "maxPriorityFeePerGas": "0x3b9aca00", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000474957e5a4429a14d5d47fe8d646f52b93d5672c0000000000000000000000000000000000000000000000000000000002656740", + "r": "0x2c622ccf99208475ba9a580983af21054f2d340e744a6916f46f664b754a0b72", + "s": "0x786d6ff88e0dc704cc8f7dda1ba537a58434f537bce2324003564dd023d61a28", + "yParity": "0x0", + "v": "0x0", + "hash": "0xd2651c662c2ea6edc0c761b0a9ead9a4f44e6b39d61564d9827f1656616cd1dd", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1b", + "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", + "gasPrice": "0x3eb5ad2f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x57f", + "gas": "0x9cef", + "maxFeePerGas": "0x684ee180", + "maxPriorityFeePerGas": "0x3b9aca00", + "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000a9d1e08c7793af67e9d92fe308d5697fb81d3e43000000000000000000000000000000000000000000000164584018a258bc0000", + "r": "0xe8cfef7fc3db2b51684a26c67bfc6d789bc4324cc6e869e9b961c827099fe90d", + "s": "0x23e36a4e67b7941b41b3db682cbd2437b4a333064b1b1d4c44b5771678d0d1e1", + "yParity": "0x1", + "v": "0x1", + "hash": "0xa5a94f8b4b820474e0e44d7a5d2aa4a3b53e547c2e3e4d05ad47f05f40935234", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1c", + "from": "0xdae54db7ecd20509b8b266c9d1d4a8c8c6446fd1", + "gasPrice": "0x3eb5ad2f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x252", + "gas": "0xaae60", + "maxFeePerGas": "0x3eb5ad2f", + "maxPriorityFeePerGas": "0x3eb5ad2f", + "to": "0x8f5835e9d756c9bd934bce527157a4b0ef3c5cb7", + "value": "0x0", + "accessList": [], + "input": "0x4a7cf36200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000bb5f780000000000000000000000000000000000000000000000000000000000000004000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000016bee5962be10400000000000000000000000000000000000000000000000000000000000000000000000023301b344b52d23b000000000000000000000000000000000000000000000000000000012a07479a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000074c363e7577a6b3830b5025f60204d686ed2d5af000000000000000000000000000000000000000000000000000000012a07479a00000000000000000000000000000000000000000000000022ef1ee7f73dd4da00000000000000000000000000000000000000000000000000000000698d7735faed186b892ce14a11a58b1fdbe9de8e9fc9cac097c5ce6ab384d1318258905d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012a07479a0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000004139389595b667e5c90c6ad5573544e4dcb854ceace50409d5261134fefdec1cfe1711b263e2e7d8f894cfa3131ef5e8e0631143ccac8fb5e4b93138d14a6b8e011b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000340000000000000000000000000bbbbbbb520d69a9775e85b458c58c648259fad5f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002644dcebcba00000000000000000000000000000000000000000000000000000000698d70870000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab4100000000000000000000000051c72848c68a965f66fa7a88855f9f7784502a7f000000000000000000000000000000000000000000000000000004cfc90a936f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000012a00f71c0000000000000000000000000000000000000000000000002331e882e0bee8000000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000041497ef6b80bb3ee0b138c4b2717c057f53bce4b63f79adc2afc8d2b180e03d3af2f4a9278aafe201d8202a9e8cff7dafd23a6d22bb5ee91b7c410653fa2ccf7661b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000242e1a7d4d00000000000000000000000000000000000000000000000023301b344b52d23b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "r": "0xa811b78ffafbb18395506736e4554078fa98c98f8ad03c4c63a8f4524010bcb3", + "s": "0xd646fda51aa4da76075b83d29e3787588b6cc57923751608f193d0769484641", + "yParity": "0x0", + "v": "0x0", + "hash": "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1d", + "from": "0x6523fe8bc1e941b2690534cb3be142745406a969", + "gasPrice": "0x3eb5ad2f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x639", + "gasPrice": "0x3b9c50a0", + "gas": "0x13880", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "input": "0xa9059cbb0000000000000000000000009723c451e0f113a6ea14bace63e4ad383ab195900000000000000000000000000000000000000000000000000000000218711a00", + "r": "0xb99fbbfc9cb7c71848a38975c3fe32863a2ab1b4d89ec84b57b77ce8d10209d1", + "s": "0x21e604c12a79903fa040a6a30c36be9a6ede3b23db9ec99799e298f5a8932330", + "v": "0x25", + "hash": "0x08f9d6e82d8d4d7194341435d0495c6eebaceb6c6eff732e8038ed6c3706267d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1e", + "from": "0xbc1a56b754d5e04538a822600fff226ec1315ed5", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x0", + "gasPrice": "0x3b9aca00", + "gas": "0x55f0", + "to": "0xeba88149813bec1cccccfdb0dacefaaa5de94cb1", + "value": "0x18849ee99aef000", + "input": "0x", + "r": "0xc67adeeeb863c60753306717b0d39de6c9cc1100fa3e64d9d5e617f2015d9230", + "s": "0x74c31777193347d0a302e0fbc2aa0591159d595cff5f189a3d791908ebba4fed", + "v": "0x25", + "hash": "0x809b302e68704e651034c9a9b8e30f8f0d1f52fd8f252e31064f855a2ccf302f", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x1f", + "from": "0xc22fa213f4d99e4db0be59bee8ada41366bee415", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xa17a5", + "gas": "0x33450", + "maxFeePerGas": "0x749b0fa4a0", + "maxPriorityFeePerGas": "0x30bd1ca0", + "to": "0x0b38210ea11411557c13457d4da7dc6ea731b88a", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000001917244ea3a62f35d83e5db1dbf57241f27effd4000000000000000000000000000000000000000000001b11dadc45d50e6a9c00", + "r": "0x44c9d01a4f79f5b40271876a8a6207520626ef7090e3f5bfdde4e6962289fd03", + "s": "0x2cd40eb1f719fbda4b6d917c7042ec724181a46508113cee4ccbfeea378e959e", + "yParity": "0x1", + "v": "0x1", + "hash": "0xa13c39066b500e766749ac4e0f0f597a64ce0c0da00aa4f31941c7d8a64b29f7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x20", + "from": "0x91d40e4818f4d4c57b4578d9eca6afc92ac8debe", + "gasPrice": "0x33d7ffcf", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x47419", + "gas": "0x5208", + "maxFeePerGas": "0x3c78c24b", + "maxPriorityFeePerGas": "0x2e65c013", + "to": "0x241cdab6554c7830fcbd3bb285766ccbff44d45e", + "value": "0x38d7ea4c680000", + "accessList": [], + "input": "0x", + "r": "0x5cbee7a8100a26ccc71c852613a05e7559535f482aa8001bb1e39658cabb5d16", + "s": "0x4dad24e4453c4b0e20e2b66fadef21ec76e1aadee1009c27742ce41b8cdb4f3", + "yParity": "0x0", + "v": "0x0", + "hash": "0xd22f1f953df2fbad50eafcc1821f7b35981319c8fe71bd3d2c60dbcc3bec5160", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x21", + "from": "0x0abbc482fbd91dbf413e3d6cc5622e03552ac13a", + "gasPrice": "0x3180a342", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0x5208", + "maxFeePerGas": "0x37c7c18e", + "maxPriorityFeePerGas": "0x2e65c013", + "to": "0x76eeb4c8b149738a9b198d866c80e8087a0a4f17", + "value": "0xa272a66fcdb172", + "accessList": [], + "input": "0x", + "r": "0xbf3d8d2b3a6ace38cc930e307c792230a42616bb558ecbbc01437ef2dc662600", + "s": "0xba02e75510b55b0b8167676a384308cc8b2e4f10d042f62d96f473a808550cf", + "yParity": "0x1", + "v": "0x1", + "hash": "0x898fa6447ccaa2bea34d131b1047c78aabbb91b56632333e75b49330d773e376", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x22", + "from": "0xb3185a7007018bfbbe64740081b28ee5dad4c2f4", + "gasPrice": "0x3180a342", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x6758", + "gas": "0x5208", + "maxFeePerGas": "0x37b10fbe", + "maxPriorityFeePerGas": "0x2e65c013", + "to": "0x5909859ca84a208d9d96996528570108c7d8203f", + "value": "0x1355a982d298", + "accessList": [], + "input": "0x", + "r": "0x36cdadacdb0d751504772ab65ea8a58e6183db2cce167f61c3a74d07447dbb3e", + "s": "0x307156e62fb5688b59b22a01b83a65eecf55358f8f211a6f672286a80e9deb20", + "yParity": "0x1", + "v": "0x1", + "hash": "0x929ca40040739dd0c65f563b316e6c11647608c52fc2c982919a2e47ffc45ab3", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x23", + "from": "0x76eeb4c8b149738a9b198d866c80e8087a0a4f17", + "gasPrice": "0x3180a342", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x18c0", + "gas": "0x1e8480", + "maxFeePerGas": "0x12a05f200", + "maxPriorityFeePerGas": "0x1dcd6500", + "to": "0xb788144df611029c60b859df47e79b7726c4deba", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000076385141b359a97178e8391205e837f2cbc394500000000000000000000000000000000000000000000000a85287f90143e40000", + "r": "0x726013bdbc893662ee73dc507b8a61ed7c7e79b581e869baa1c12141815c254d", + "s": "0x5fb3e991688f29529f9316e0f456b1b04e4f23c934211bf1babb310cbd1d0f51", + "yParity": "0x1", + "v": "0x1", + "hash": "0x671bbfa74349c9eccecca2be90576fc590997fc6ca2c6c53379b26d45710c002", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x24", + "from": "0x6f858f383842c887a82d30b392cfc686938413ec", + "gasPrice": "0x20e8482f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x132", + "gas": "0x61a80", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0xa227cc36938f0c9e09ce0e64dfab226cad739447", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000d67e934eee4791c3f0d8a800bfdb1ed6cecdc83b00000000000000000000000000000000000000000000152d02c7e14af6800000", + "r": "0xf1185acc3c8e14c99b9eca6576eed374999af689156bcd64804768184faa8dc4", + "s": "0x2d12b2c66b00dbfa328084fe00876950b308db4a772920b544ea891f11f1a939", + "yParity": "0x0", + "v": "0x0", + "hash": "0xf70c0266a9deebed39320a53f1cff3e750d0fc2278ab112393ac66593d475a00", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x25", + "from": "0x912024c256a8eaee5324bc48a76ee303734568a8", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x2c8", + "gas": "0x61a80", + "maxFeePerGas": "0x2e90edd000", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0x6e6f6d696e61decd6605bd4a57836c5db6923340", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000789903b88ae058d8c733545ea3f94036552bfe7400000000000000000000000000000000000000000001a784379d99db42000000", + "r": "0x82bec95eaec4f7748f49f516df3d2c79ad109e19366974d6d8a56244c290f717", + "s": "0x35f8eda36e590cbd0d1e9522aa52bbe3ff52cc0f4b737010e1116c69c46095f6", + "yParity": "0x0", + "v": "0x0", + "hash": "0x058b160b889f0629d0245a9682adf27e207cb57ce9938f2b679c54685952089e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x26", + "from": "0x9e336b34bfa786ae0c56a776e13fb85a7e0cb234", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22f839", + "gas": "0x393b1", + "maxFeePerGas": "0x1dcd6500", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0x4cfc111e7aa7b1594b3699cdf48521073bd723e6", + "value": "0x0", + "accessList": [], + "input": "0xc97c547900000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc4500000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000000000000000000000000000000000000698d70910000000000000000000000000000000000000000000002bec6b29d7543947600", + "r": "0x8bf7ee17ababebc4719b3c7758f8b4cf64d25887a4d07b8d61cf31c3854a7178", + "s": "0x74ffa79b1c7953dab502ec0c4b17a8a634411c43b9d0448ac1d73c7bfe8d88fd", + "yParity": "0x1", + "v": "0x1", + "hash": "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x27", + "from": "0xb1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22f83a", + "gas": "0xf5346", + "maxFeePerGas": "0x1dcd6500", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0x5e1f62dac767b0491e3ce72469c217365d5b48cc", + "value": "0x0", + "accessList": [], + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000009255ffce64c894cff80000000000000000000000000000000000000000000000000046658ed10f3334b00000000000000000000000000000000000000000000000000000000698d7e7b00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e2804200000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000b771f724c504b329623b0ce9199907137670600e00000000000000000000000000000000000000000000000000000000000000020000000000000000000122c49c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb00000000000000000001044cb771f724c504b329623b0ce9199907137670600e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e77777777111180000000000000000000000000000000000004689ac586778913777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "r": "0xe1113f340d684748163f8e1916c2af4141a716323bedb2452a397d5aedd5efc5", + "s": "0x21d33928d83f1e9a7b93e858ad92aae199eab3dd9e4086e27a56e5c8ebe16d4f", + "yParity": "0x0", + "v": "0x0", + "hash": "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x28", + "from": "0xb1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22f83b", + "gas": "0x16d550", + "maxFeePerGas": "0x1dcd6500", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0x5e1f62dac767b0491e3ce72469c217365d5b48cc", + "value": "0x0", + "accessList": [], + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000440724c446e6bb3f580000000000000000000000000000000000000000000000000020c34ee628031f000000000000000000000000000000000000000000000000000000000698d7e7b00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e2804200000000000000000000000000000000000000000000000000000000000000030000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000030000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb5000000000000000000000000b771f724c504b329623b0ce9199907137670600e0000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000000000000000000000000000000000000000000003000000000000000000011e789c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb000000000000000000010834b771f724c504b329623b0ce9199907137670600e8000000000000000000100640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e280420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c8777777771111800000000000000000000000000000000000020d41dce815be18777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "r": "0x3876ba717f26f16cfd74ecc13d914ac1ac56e11686da912122b62bcf72617b4c", + "s": "0x609c48dd98a05db7a02f0765d66d1bc28c77ec284898487b6a965bd2596f7c65", + "yParity": "0x1", + "v": "0x1", + "hash": "0x14149ee8d87d7d62e4cd6b543422be63eb9eb7df01f5a1d533096bd12f28ef52", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x29", + "from": "0xb1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22f83c", + "gas": "0x297948", + "maxFeePerGas": "0x1dcd6500", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0x5e1f62dac767b0491e3ce72469c217365d5b48cc", + "value": "0x0", + "accessList": [], + "input": "0x0c307f7600000000000000000000000000000000000000000000000000000000000344c8000000000000000000000000b1b2d032aa2f52347fbcfd08e5c3cc55216e840400000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000001f7c9af534c3dc0acc0000000000000000000000000000000000000000000000000000000000ecd1a9500000000000000000000000000000000000000000000000000000000698d7e800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000520000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac500000000000000000000000000000000000000000000000000000000000000030000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb500000000000000000000000000000000000000000000000000000000000000030000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a60000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000000000000000000000000000000000000000000003800000000000000000010ae00000000000000000000000000000000000000000000000000000000000010074cb488b8452996454237d824d72f86090470292f4000000000000000000031bbc81aee07f99be78d88881fa6d98feff755511363500000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa00000000000000000000000000000000000000000000000000000000000000018000000000000000010227102bd541ab3b704f7d4c9dff79efadeaa85ec034f1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003ba3321cb00604c000000000000000000000000000000000000000000000000000000000698d7098000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff860000000000000000000000000000000000000000000000000000000004512fe800000000000000000000000000000000000000000000000000828a0be746631700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e4525e6938a36484d6dfae3c28c97dba5183d04fb4c9d634d3953a03b4ab8d0625692296ba4bff24567ef08ed7d7357bf81a4b036a23cb703c80f5a47f342cd91b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c21010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ecd7eef15713997528896cb5db7ec316db4c210100000000000000000000000000000000000000000000000000000000000000018000000000000000020327104f493b7de8aac7d55f71853688b1f7c8f0243c850000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000777777771111800000000000000000000000000000000000000000000ed4b27e777777771111000000000064fa00a9ed787f3793db668bff3e6e6e7db0f92a1b", + "r": "0xac933b42b0613d52cb6839c2801229c04f6bee0b1578d1601cf8dd957987def5", + "s": "0x48c7dc0b3c3e4ebce4fb6fb6d156f8e32560f972eaad5b25e709d1c9137311d2", + "yParity": "0x1", + "v": "0x1", + "hash": "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2a", + "from": "0xb1b2d032aa2f52347fbcfd08e5c3cc55216e8404", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x10ab", + "gas": "0x1459b5", + "maxFeePerGas": "0xbdc3310", + "maxPriorityFeePerGas": "0x5f5e100", + "to": "0xa3ee21c306a700e682abcdfe9baa6a08f3820419", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000b83630849c8a2bcb3a04062fedd015d7d67febde0000000000000000000000000000000000000000000000000000000000000000", + "r": "0xaf0629fec2011345d096afd682388e88e7952a87db3231547788b9370423cd45", + "s": "0x6854fa58c638e78969605118f4454216b8ccbd2fcbf0873cfd38cee53500858c", + "yParity": "0x0", + "v": "0x0", + "hash": "0x29a00b68476fad8c3137216b23218c2b0fa6b528fe4169902bf91e8a95b45b74", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2b", + "from": "0x55daf1ffdd44da5a189b1809aa5e0cb28848b23e", + "gasPrice": "0x910c42f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0xc3ae", + "maxFeePerGas": "0x8f081f8", + "maxPriorityFeePerGas": "0x54e0840", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000076bf6d91d4e061645a0d582b3a5da6e17c721b230000000000000000000000000000000000000000000000000000000165a0bc00", + "r": "0x777b1560174177ec39303d554bf0a160d63d84f0806c6c87036812a2de48cff1", + "s": "0x13ebe67ffe44932f179587c76e8e9049b08a7e3655414f004b7b58a7065218eb", + "yParity": "0x1", + "v": "0x1", + "hash": "0x46e961ef734d008887caae4af6b1ebeb053e8868365fcfece298e7766251f163", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2c", + "from": "0xde8e51d04e492a998cbb18bcdf79f742e2f34b08", + "gasPrice": "0x868eb6f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x5b34", + "gas": "0x42e64", + "maxFeePerGas": "0x7f92b29", + "maxPriorityFeePerGas": "0x4d76ad1", + "to": "0x66a9893cc07d91d95644aedd05d03f95e1dba8af", + "value": "0x0", + "accessList": [], + "input": "0x3593564c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000698d777100000000000000000000000000000000000000000000000000000000000000010800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000120000000000000000000000000750e70496c9ebe5a13551f0147e02206861869a4000000000000000000000000000000000000000000000000000017d0ae17212a0000000000000000000000000000000000000000000076be6ab43ed9879d101000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c114cf69972e3c1b4b529e0418012c01fcf9e725000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c0fe7f77ed2f522978b719372282ca89de8cf3e4756e697800000000000c", + "r": "0xa9c3a3ae781e6dd9233c8e569231a3cdfb83eb9c17614d29a4200ce537e4bb3f", + "s": "0x7282864e23a5de6b2fede84641f411c4d064676c41463db2e1bb5332f5fc4fe6", + "yParity": "0x1", + "v": "0x1", + "hash": "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2d", + "from": "0x750e70496c9ebe5a13551f0147e02206861869a4", + "gasPrice": "0x7f24e00", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0x5a3c", + "maxFeePerGas": "0xaba9500", + "maxPriorityFeePerGas": "0x4b571c0", + "to": "0x71674ac30940c74f4b6f4081cf0ec392a131f943", + "value": "0x1c38bcb573a9945", + "accessList": [], + "input": "0x", + "r": "0xd1eee8a75d712aea4bab70595a763c8291e985596e4a30b2d0af2cffcab30692", + "s": "0x2a7929109e3568258e9bc359972b906273c2ebaa3977cc461e6f0c80e92753f3", + "yParity": "0x0", + "v": "0x0", + "hash": "0xe3a89fe8178aa2dc2599a5601dff659bd6b36f69506e7aa46bf0554fb7ec5df6", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2e", + "from": "0x1804e8dc82c05595674fe44efe9ba439c4ec6f09", + "gasPrice": "0x7d054ef", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x5e", + "gas": "0x11fde6", + "maxFeePerGas": "0xaba9500", + "maxPriorityFeePerGas": "0x4b571c0", + "to": "0x5e1f62dac767b0491e3ce72469c217365d5b48cc", + "value": "0x0", + "accessList": [], + "input": "0xf2c426960000000000000000000000000000000000000000000000000000000000019afd000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000442db4b6a849f5c03000000000000000000000000000000000000000000000000000ea34d2d27c32300000000000000000000000000000000000000000000000000000000698d7e7a00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000008200000000000000000000000000000000000000000000000000000000000000a6000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa000000000000000000000000d68e2150cd2da77decaeb01ab630c864ad612aaa00000000000000000000000000000000000000000000000000000000000000028000000000000000000113882bd541ab3b704f7d4c9dff79efadeaa85ec034f18000000000000000000113880bdf246b4aef9cfe4dd6eef153a1b645ac4bcbb60000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003ba33202bd06048000000000000000000000000000000000000000000000000000000000698d7092000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef600000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff8600000000000000000000000000000000000000000000000000000000003f2f10000000000000000000000000000000000000000000000002216da5b5424fb450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000415c7ca04472e9522304b7e69ffa6636ea08eb9c3efc0e97e84a9b272f7f9075d33787f9b508099710e05535c6be6b4af4b7b31553c482d2065736b7a961ff8b551c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000340000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003ba33202ef0d048000000000000000000000000000000000000000000000000000000000698d7092000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000da5e1988097297dcdc1f90d4dfe7909e847cbef6000000000000000000000000b7131fc8cdc43060a6210257f537dba5fcae6aed00000000000000000000000000000000000000000000000000000000003f261e000000000000000000000000000000000000000000000002216da5b5424fb45000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000041cc77903677b457f3bfd02d05adebf408d756071d778d78544bf2e818891a863e7fc92930f07797e04c73d0fe3baa05e7832f2db20d1cfcb9bcb90c0a1a89b9d91c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004151ce86ce9b3a674df5ce65f6ce2ff86052992cc6c32c226998538ffe24d48ce47911cac6c414a972cbb132cbce912cc5a8dd3c915d5c06c92c08e6b34f65662c1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e7330237152920000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b2dc2da9684dfef77cfa5c6bb07e7330237152920000000000000000000000000000000000000000000000000000000000000001000000000000000001022710dae4135dac6c62937728d145f8048b2bab2ce55c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000000000000000000000000000000000000000000001000000000000000000000000031f1ad10547b8deb43a36e5491c06a93812023a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd000000000000000000000000000000000000000000000000000000000000000100000000000000000203271086cccda3799a43fbceb4cec6ad8b028f5bf8b3dd000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e800000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee3ca20afc2bbb00000081b3202cffed5d56eb6a17662756ca0fdf350e732c9818", + "r": "0xa62ba9f24ec6b8be166d85c1f7980b6c1a4f68b05a42386b23b54856d751bb6f", + "s": "0x5edf224eff519b50caddefb2f4577e0ad29ab239ea168c9eb1b7b491c820dc1b", + "yParity": "0x1", + "v": "0x1", + "hash": "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x2f", + "from": "0x158066ef70b5a4810bba668182e734a158d88c3f", + "gasPrice": "0x7d054ef", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x329", + "gas": "0x176e0", + "maxFeePerGas": "0x7984628", + "maxPriorityFeePerGas": "0x33955dd", + "to": "0xd1d2eb1b1e90b638588728b4130137d262c87cae", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000006def34cc18e41e0c59480facd8a0410d9a174745000000000000000000000000000000000000000000000000000110d9316ec000", + "r": "0x4fb08ed952068d8edc5f7d6e2a3f6e1e9ebded3dd691ef5143983287f6b7fe94", + "s": "0xacd7053b2452ea70b589495a491e5880f9c9be667620af456448ebd2b4a1dc7", + "yParity": "0x0", + "v": "0x0", + "hash": "0xbfa03c49d1c22e4562b4cb91717842c05f17f850e326696f60b9c04fe4d75a75", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x30", + "from": "0xb674928f6aa3b9639ab5bacc1232f90359db4d71", + "gasPrice": "0x654390c", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "nonce": "0x43c", + "gasPrice": "0x5e65210", + "gas": "0x186a0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "input": "0xa9059cbb000000000000000000000000c864667677286ea03ff4f13d822a62d7bd49c536000000000000000000000000000000000000000000000000000000000039fbc0", + "r": "0x1222d8ed12f3318bf42212ed60133eb5aabb79cd30da7e70ba8fbb02bb7e25df", + "s": "0x62800416a18c2e7a5e2bfe838a363e7e390d25e10b0b4616e682b1dc732068d0", + "v": "0x1c", + "hash": "0x1f71fd2bdc5d70f4c8618c81a37ae82117ea17a42b15a0fa98af49f0674050fc", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x31", + "from": "0xed01b2eb0d445bfd93cc71559f201adf5622a918", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x178", + "gasPrice": "0x4b1d299", + "gas": "0x23893", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x15c2a7b13fd0000", + "input": "0x7ff36ab5000000000000000000000000000000000000000000ca1f4e832841108a46502f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000bf334390485d31e37d9942306cdb692c0e1db5c400000000000000000000000000000000000000000000000000000000698d73ed0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000300fe9c923c41a29a4d68c72ca86f2c09c93a8b4", + "r": "0x2ec8802f8126a8610641cddde7b7f5214e49873713cbfc3616d657411e2a370b", + "s": "0xf51393d7d6a146a227294ee73e647e985ec6a2062ef7d50d5cac0622b49bff7", + "v": "0x25", + "hash": "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x32", + "from": "0xbf334390485d31e37d9942306cdb692c0e1db5c4", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x8", + "gas": "0x8d0b7", + "maxFeePerGas": "0x4387bfb", + "maxPriorityFeePerGas": "0xfd651e", + "to": "0x5e1f62dac767b0491e3ce72469c217365d5b48cc", + "value": "0x0", + "accessList": [], + "input": "0xf2c42696000000000000000000000000000000000000000000000000003ba331f7763a00000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000003c0e28d75c653d00000000000000000000000000000000000000000000000000125e31fc350be300000000000000000000000000000000000000000000000000000000698d7e7700000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd5200000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000020000000000000000000000006747bcaf9bd5a5f0758cbe08903490e45ddfacb50000000000000000000000005745050e787f693ed21e4418d528f78ad9c374a600000000000000000000000000000000000000000000000000000000000000020000000000000000000126ac9e7809c21ba130c1a51c112928ea6474d9a9ae3c800000000000000000010064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000c8", + "r": "0x42c9ef11ea41031b20d71dcc50fcfe75d6666c17bb159f4dd56664d26641b0b3", + "s": "0x2ad03742ce5b2ac11123fa7566ff8e1c8c394cd61ec6e10342e87e53ee243fe7", + "yParity": "0x0", + "v": "0x0", + "hash": "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x33", + "from": "0x2c2487ac660a6b730c55fc0c70bb4b46b17b62cc", + "gasPrice": "0x418484d", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1b1", + "gas": "0x5208", + "maxFeePerGas": "0x3bef061", + "maxPriorityFeePerGas": "0x3bef061", + "to": "0x5f032b213dda94d82ba2ca47925db4b4bed88bde", + "value": "0x8b79900685f4f8", + "accessList": [], + "input": "0x", + "r": "0xf6a798d6ea23b7d5e77ebe2e440e607e0e907e6b835ea80853d08bc759ea373d", + "s": "0x39c3883703d55de52deb833eb6c093cab89fa7f2ace93a6c3e133eabfe35519a", + "yParity": "0x1", + "v": "0x1", + "hash": "0x9e1215b2e13d3f8696052516f829aca2186029b83263e2f55a8b21c4c40e3c44", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x34", + "from": "0xfbb194eaefd726994330a6f65ef5c1075c29d4dc", + "gasPrice": "0x3bef061", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x28406", + "gas": "0x648c1", + "maxFeePerGas": "0x422c7aa", + "maxPriorityFeePerGas": "0x989680", + "to": "0x1ae0e997216f7a354eda202b5cb3352b9dafadff", + "value": "0x2497fe275010", + "accessList": [], + "input": "0xed0e5f6200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000007000000000000000000000000fe2f8943b31071a11235ffec50b502c5b85292510000000000000000000000005b7470f33b41c188b3f7466f7d22d94585cc75f9000000000000000000000000fdf26feb271878045b771e222cc691cc3f2adce2000000000000000000000000615aace108920d3e1cffea72e120a2b75d43eca6000000000000000000000000f2d82669cf2747c90d4ccb07bb0d4a799977e6dc0000000000000000000000000d9ea40d638bec752c72892d1efa6651c50fd44f000000000000000000000000f80dd39f8934513553e37b8ed91fda002b549a5500000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000069000000000000000000000000000000000000000000000000000000000000018e00000000000000000000000000000000000000000000000000000000000000c300000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000018b00000000000000000000000000000000000000000000000000000000000001980000000000000000000000000000000000000000000000000000000000000007000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b700000000000000000000000000000000000000000000000000000053a48e10b70", + "r": "0x10f32073866dc1a81750b5c3c012d9b5388f9e9eb0b29a34d2b605c402b32510", + "s": "0xba047c45ec6ac11e5ae6fea7024a405ff70db5743348107ed6e2bb147c22ea", + "yParity": "0x1", + "v": "0x1", + "hash": "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x35", + "from": "0x458a34440ba720c3054177483f33e4b000000000", + "gasPrice": "0x3b379af", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x9530", + "gas": "0x7a1200", + "maxFeePerGas": "0x3d56e6c", + "maxPriorityFeePerGas": "0x989680", + "to": "0xe41677500b425999cb4133950ca3ab79ea7470a6", + "value": "0x0", + "accessList": [], + "input": "0xb1dc65a40001594fe2fe534bd31f6ee4ecaa9450eba6f0c182f1705f4c3d0919931d7c22000000000000000000000000000000000000000000000000000000000244d30105d37fc0f220a6c0435dccb0f055e0f7fbf6b0b70566d98ecbcbd6581bce9e7000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000030000010100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000003d180000000000000000000000000000000000000000000000000000000000003d18fb8610c3adabac63584ada6022a4271723dd9a4943b1b0d7de6c02c5749589b4000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063aa0f0913b5661262eb66656937230e57d14a4aeca5e3ab97cb598abf5ab2f59a28f8a8a8ea4fcc67e0930b8bb41b9bc662bdd15b60ab59080341dbc711ae64a2b5377abf5a875b2092af63c7bde5e1e6ca88120b2577e9a8506959c7738d5d638399df6f791bb632a9d9199de9bc04b16a66fdcd6dbe4faef3ce38993cca7261f733bb5db978604570514eea9446ecb9c497c44ea41d49413a2f288e0c6d757da9357e78c26126eda234dd1c5724fea11bed91b163bffd74be471049d4fa38c000000000000000000000000000000000000000000000000000000000000000642bc142d02dafb512dca1a743f27a16cea2ad8fc88cbc6484823731b05d9192a26d74d0d65d1aa21f3fe698bd78fb12afc9fa11d47420024c5908a3d4ec2696015b36524b96d4fa687d3e47e47e970015d99e8d6f8ee69a539d40a1617455a6c2207b6f12f5db0e9880c043512661a637d2af19296af1164055b4dba0b613fd46d89cee0530adc234696cf75d6fac825de9f61117d68cc47a01557588637771f6d575bd1d675331e524ddfe25c408ecb747a674316e3bf1dfce31237c6b4e287", + "r": "0xb63c6f04e4f0e5b7ecf217cd370a7f1be52d9873f856d5ccd83ca66e5e8355d7", + "s": "0x70c64769cbc39974c7907c677135538cfed9963496f1cdc97e323c50346d92af", + "yParity": "0x1", + "v": "0x1", + "hash": "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x36", + "from": "0xa39b7c0f08e4727c8325b4ad043513aa5185a4e2", + "gasPrice": "0x3b379af", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1e", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x114252b0533e7d", + "input": "0x", + "r": "0x6798e005e2950a761e4129af9e67ff88961a13157b1f1616791a3eac2e243112", + "s": "0x6e68d325ac34b7992e8388b6db57eda7acae0078da0b32b04a56105f5c280c26", + "v": "0x26", + "hash": "0xd2af355b9b9aa9c6dba7037b9a0506e0fd66c06de5110424cc61fb21e9a2dd2d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x37", + "from": "0xa12e2f907b48ddec114882d63babfb3902faa3f5", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x116423059ca0fa", + "input": "0x", + "r": "0x31341b24f4ce1462f5163aaf49cd082cfc6ee89c80e5a2b3be029ea85495a744", + "s": "0x1b5ea0d463f1c230e67f211e4bfea61822cebdc5750c29090304129476715fd0", + "v": "0x25", + "hash": "0x18919e7eb9ce08c2ef1d6f73501746a9fd1b9bf5697ac8520c75362bfe0158e0", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x38", + "from": "0x919359cb09178058f2a68881176dd9e7aa4797bb", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1d", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x113a73c0cfc099", + "input": "0x", + "r": "0x45b23664a729c84fa15232f0329d5be5dc68302dd7d07430f303582243b7da3", + "s": "0x1529651ecd04a38846b07d0a9dee9dda483325b60d2ebcfc56275560e42f8a42", + "v": "0x26", + "hash": "0xd1636fd72a6b24f9fa541cb4568d95c14257657ea1f980db8e86e00e009104b5", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x39", + "from": "0xc22e8e93eb2b25adb26160718bb3aa0f44cd698f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1c", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x115853dc764888", + "input": "0x", + "r": "0xcb15d5881f6265c4acf4947f60814cfa8015eeb2d0281261fc665e8236590e21", + "s": "0x14b3419a26fb89e69bf0788dc492ab2251c5a3de2064cd73e129920cc702b742", + "v": "0x26", + "hash": "0x10f1f7122b3a31ac55b0b1f5d000909d7c7722fa6b6939e41398a6b47c568add", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3a", + "from": "0x92629d282757298957b938550f09ff073951f31a", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x18", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x117cf7ae3fb9b6", + "input": "0x", + "r": "0xadd29c2583baa702e5b06a67c76d30e0253c14cf32961b95cc1ff8b9eb401bc1", + "s": "0x200de7d1e721a2826ffde3f05577e70e5ec39f9f605eed2d4ff816169a6f42d8", + "v": "0x26", + "hash": "0x6f2f33018f3d50d0fc031e603d12806173d7358d00c6350a15ab8def7cf4c3af", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3b", + "from": "0x37a137933139c7a38a681ba750e19c9aabdfd8e4", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1d", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x1137fe7b77f64b", + "input": "0x", + "r": "0x616b57640fcd1925937edab02d0d2fef2a414317fe9ff2c970d0d5247bdaef43", + "s": "0x149742272718f64247171b78726924bd327651a81ce9374860e8e6060fb01053", + "v": "0x26", + "hash": "0xa944a2fc34cf202d8feec18941a12dbc53c018396758550ccd32778080585ab7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3c", + "from": "0x3a24fec0ce9d462e0e19b4b763fc9e01127d5769", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x19", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x117694f5461bd4", + "input": "0x", + "r": "0xc5e7bafa5b284ed64962ab378100d8e9c74ddf32a071d88e49e3720217512dd", + "s": "0x74d78ae7c712e622663f5bb971e8e3e2bee7c8a9c2feabc4c80be3f858c93563", + "v": "0x26", + "hash": "0x377f8f0bb843ac8b34e6d123c2e6ae2aa8886dc7588cdafbc28beee6fb37e5a7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3d", + "from": "0xa47baeead40cc6ea8d01871684dc12f086e1ad42", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x117f534915e0af", + "input": "0x", + "r": "0xedba6971efc6c9c4a2c3d6a2d7774d6942686addc4cee1dda6e2bd26ff954e0d", + "s": "0x2577b79eed1536f9bc893e5c718e47064501655e634a578d62b197a6463cade7", + "v": "0x25", + "hash": "0x19f20b32c5c3fee91e40e5e96ef33e59ab20cbaf23da50eccf0c3aa39b05a368", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3e", + "from": "0xfb99bc8d4407dc72ebae65813b607d56360f6e32", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x19", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x118d079d2badad", + "input": "0x", + "r": "0x73058cbca60c0aca3af49e0564bb39f763a3cdd6cf355270a550124454b48507", + "s": "0x3bf62b6498913189fe28e6f459a9851e826a1f270c9b572f36d3724e8a1571c5", + "v": "0x26", + "hash": "0x57abb26eb7009673a33276a95a37852c875feec09ae6e71ae597d6d88a88f72c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x3f", + "from": "0xcc1c06ffa41ee16c8be9e4502392ed82586a7f99", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1e", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x113e45b15b40c7", + "input": "0x", + "r": "0xb0ffae051cd1a08197d980222b3736c211600bdfa90f879c04bafe950d602a8a", + "s": "0x16c39cd374d86df0d9f5408067f687a2bd0a700f53d4c0c300cc10079ad71401", + "v": "0x26", + "hash": "0xd10e079b1943c3e0567df0005f3b87a6547cba761dd44c80bf28f246a7240592", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x40", + "from": "0x43c81a5da780b0b39e05a40ed9e61b968309d3e5", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1b", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x115c831b0ce6dd", + "input": "0x", + "r": "0xdab9f6f086563a887719a742c5d849804ba65b0fa48703afd81ed7464767a12e", + "s": "0x71a15038094c632fe622ac743765ccdd45e7ce2244bd9fe7c8965921a705d2b9", + "v": "0x26", + "hash": "0x4d2ed5820fc773e0ed6d2e9262da55882b844e3503e3bf1765ee43179f855ca1", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x41", + "from": "0xf20356fd3b8e95a854d7d6ebf72253398a8be7f4", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1c", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x1159ff37020fa8", + "input": "0x", + "r": "0x17ac80b40e9c603e82d56d00e0178dd82656577c19f1650a41bc03dc66271215", + "s": "0x7290b7b591f22e2e49e86b00161b7904724debc78a18aac9f9de9143289c04ef", + "v": "0x25", + "hash": "0xc30c039441503db82fafcf088094e5f3fbb53223e3f5415b9fb3ae39ef0fa2ce", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x42", + "from": "0xfd791256ae21bc48af7e5cd63be5a26bb51b38a8", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x118c280afeb708", + "input": "0x", + "r": "0x5d4e9ccbf99f68b1cc046bd8edbc805fb4cb29d47676c069d52407882a35cc3b", + "s": "0x250f84f38eddad2ce8dff9257535727bf23080086d87081b10faf0828a05e626", + "v": "0x26", + "hash": "0x280664d8417387e4af423422e17296cff783b7779dcab0f930b350704430fbb2", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x43", + "from": "0x9131a82a73bf4520f59458ab24ab8cf9616a57ae", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1e", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x11511b937ecc1e", + "input": "0x", + "r": "0xb4b22e012eea374f70b186a71b8b5d163d58ad3c7f6a894272e72bbbf008261b", + "s": "0x4c0d34ef4d12e669fe8a8dfff23064e72436df7c8bdccc36a3cb121365d04083", + "v": "0x25", + "hash": "0x069924326ba0624edf1d22f3645c8bf5f166b5b831f1d037e2540ede6ca3262a", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x44", + "from": "0x2be9a4c05304c3e907adbfd700a935f0ff52d1a0", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1c", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x11543fa9456f62", + "input": "0x", + "r": "0x7a229709abdbd6f9c3e3b6a54d25d6ed249a3f68fc1d7543cf4e02572481c205", + "s": "0x21da4bf252715aeb50b063e6ea1453d7fca2d25397f9d65669d63a711c8bfe9d", + "v": "0x26", + "hash": "0x1f6690931551839ae83639f5e9a34fdb4b27bbbab3f15814bc03c1caaf327520", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x45", + "from": "0x3fdc80685116edfef1366e8d7c3a8301ea457f9e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x114b476dca15f2", + "input": "0x", + "r": "0x592a254e098b412eaf2a506b278dc51209597fc4465fea90b28085bdb1cf85a4", + "s": "0x35e16332dc6a9209e4c8343bbaadbdfb57eed5b57cc84126b7beb9e48c4fcfd", + "v": "0x25", + "hash": "0x5fc560b5acc6a87194012c0289a038e7faa3040cb8c33b6a406dcfc79f25bc07", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x46", + "from": "0xa4c7e24318edc3ba479433132cc7c8d5b851e737", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x118b7651e3c6eb", + "input": "0x", + "r": "0xad64e57acf5d1b534fbc4580987fba490b951d8f1e89e6fcdab8b8b57927eaf", + "s": "0x27802ae0627e65205ffd32644f219cdd0a47adfea8783cab37559719be8e642c", + "v": "0x26", + "hash": "0xf38747a4b84bf72470bdf48cada0330bbaca198fec9afb364b2fae915936af52", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x47", + "from": "0x7bdef220a84490769df1f46320be5532828d7332", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x17", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x1182bdae59869d", + "input": "0x", + "r": "0xdfb675669e58d42a183758fec8a2483b8d47f18d810221d1898d4438e6d18ac6", + "s": "0x24c34f9b9e1cbdbfbc2db711d3d1bcaad247bf1d59b95b391de5319ca7d06ec2", + "v": "0x26", + "hash": "0x9ee2cb06833fa575e92bc2200b78eae045e773336aaa52f9aeae51b792c959a2", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x48", + "from": "0x0fbd6809d1def42003646069269a72cdb18081df", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x17", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x11ac001229e9b2", + "input": "0x", + "r": "0xbd025ec08cf648af58ee71ad700ceed8bf5b36a45e0fd105c335ac7e5c70e796", + "s": "0xba1a3603ce5c3e41ac53bd55a5ad37245b87597d891103c80a8e762b891fb67", + "v": "0x25", + "hash": "0xe84940733b0943c831513eafb857208cd3389392f784831339a4004945ed4cd5", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x49", + "from": "0xb153fd73d454f02450f03b1485d80ec42870d64c", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1b", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x116eaf71e03342", + "input": "0x", + "r": "0x88c955efc7a103ae30aa9d4cd57e09711951278fa3e125f57d619ca84373ab41", + "s": "0x57bd9d8ab7c1437fa1cbf098fdb48ef50675ff43ea3356604b268371974a8f95", + "v": "0x25", + "hash": "0x9c5736d3c225007b542a6c1e58d30976398a655fd50e02a24d72ce720ac8087c", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4a", + "from": "0x179e2eb1e70d2524b9d19d4b79c0c9ebf1997f39", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1a", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x118bf29c521530", + "input": "0x", + "r": "0x78b778057b42529d8504d15528d2353eff6c331a97501229228a12be64b5446f", + "s": "0x131bef7e6baa514f4bb44644873b4d53e9d0bd264f07a909e2c25dd926b339de", + "v": "0x26", + "hash": "0xf0e9363787a16b98daf3bd99062b963ba98e1f21ed49315673845634519aa1f4", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4b", + "from": "0xd3f2fc0ba0eb04116b26f4bf45fb49c140d71d19", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1f", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x11172bee154745", + "input": "0x", + "r": "0x47e5320352e5542f0073a0a1205511b37a7a4dfab663d9f0251a2aaeef04c06e", + "s": "0xf9bcd97b0134b4ad05cd37670367db98da411f32a464461520f8988e3e17bd2", + "v": "0x25", + "hash": "0xedeb19ea4364ba5eea48716e24c762bc2306b68249c672fb1565fd72b127a6dc", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4c", + "from": "0x9abf11845177f7446ac77206c75134c719630ae0", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1e", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x116f500b7bfd78", + "input": "0x", + "r": "0x48327c9ee9c52e8036989b46be7d9adb15506750a82dda9347d7258ac7ea3cb4", + "s": "0x576dfc60303f7a0ee75ede51c41691199e355b5ef5b55bec8a561e7e8c649f57", + "v": "0x25", + "hash": "0x9345a911086f1b19ccb9598490effff9d761f0d3192c7437a770a76ed5542f43", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4d", + "from": "0xe8dc2c08d11e6856a1a2179689ba4d8a8593cfbe", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x19", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x117ba424f39995", + "input": "0x", + "r": "0x75b40d0631cbb3916dd1ca51bc3cb31ed00a2d985d63617c340b63e8e92b8c55", + "s": "0x27029428d1b97d5e9053c0e76f344dfbf0c072ff467fbc8d0cb943ba018c730c", + "v": "0x25", + "hash": "0x6ffc69c6e612cc78b0f5945a963b79b9ac0fed7828d8a42d46174f4d9b878f3d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4e", + "from": "0x9a65d1aba40f3f83910891245787553be3fb3508", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x19", + "gasPrice": "0x38fba60", + "gas": "0x5208", + "to": "0x75c395be271a09c7e5f4dbda025e5680cfb3d915", + "value": "0x116ee1df497387", + "input": "0x", + "r": "0x38b35680d6be36cd6c4d870b8d3c6d9b23dd813d78681fabf81da03b4e04cf64", + "s": "0x9a11b037e815a23e3c75a9f1db9e38edf3329fc438598377ef2ce08ddc26cb9", + "v": "0x26", + "hash": "0x36cc294d864cb05d98e1d8a4d1989fe9b65130fe28cce0bfcf9631b1f7da1f56", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x4f", + "from": "0x190d0d107e8dd88c6e97f30f5122ae69effcced5", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x2a67c", + "gas": "0x207e2", + "maxFeePerGas": "0x73e5f30", + "maxPriorityFeePerGas": "0x6f0ae6", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000439b4cc1c405464060db5af91a21bca272ec5f690000000000000000000000000000000000000000000000000000000d2917cb00", + "r": "0xfdb1d08db99a5cd31a8ff7bcd74db7c0d21afd9c786ba561bee51e640ac20214", + "s": "0x37f1300b344ccb95f7ca465a1acf85e3504b780f92ebe070cf46d4e6e5ec8847", + "yParity": "0x1", + "v": "0x1", + "hash": "0x03485b36efbec08601041be349518fb0377dd987dd91166e6c9c17129b5c2e48", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x50", + "from": "0x7f604d597c15b2e2f60dc645844f68b1d781b752", + "gasPrice": "0x389ee15", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x18b1a", + "gas": "0x3876f", + "maxFeePerGas": "0x4261a4b", + "maxPriorityFeePerGas": "0x6c3ce0", + "to": "0x173272739bd7aa6e4e214714048a9fe699453059", + "value": "0x0", + "accessList": [], + "input": "0xcfc3257000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006c96de32cea08842dcc4058c14d3aaad7fa41dee00000000000000000000000000000000000000000000000000000000000076bc000000000000000000000000edaba024be4d87974d5ab11c6dd586963cccb0270000000000000000000000000000000000000000000000000000000000000e95d57c664b7fbda11e52120e2ec7c4e1e129151fa3524b6c5efce4e460d05f49070000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000187ad0000000000000000000000000000000000000000000000000000000000000028000000000000000000000000f301bec395546c22b426ca2909e1bc7d9bc6382f000000020f33fd400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "r": "0x7579b96a40a6361b925b91f342e2f98613726235b35b2bffea897e1c3edefab1", + "s": "0x153a1aa09182b892f2dc1b0236986fb37a479202a8f93335aef71b65dc4dc6b", + "yParity": "0x0", + "v": "0x0", + "hash": "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x51", + "from": "0x2858e8628327ab695bb751a328cfb3d5dfd762f4", + "gasPrice": "0x387200f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0xd6d8", + "maxFeePerGas": "0x3858701", + "maxPriorityFeePerGas": "0x3858701", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000008fa1d231580ff854db5513ae8f877a25dda9576000000000000000000000000000000000000000000000000000000000000018e", + "r": "0xafe96c6dc6084ded4087a71c87fd68a2d6f396664f1d748be14aec9a60caece7", + "s": "0x44ad620505ea0ab631b7f9ff5f1b90f96be2bd427a058571025ae8fcd9d31bf5", + "yParity": "0x0", + "v": "0x0", + "hash": "0x7f257282351f72ef1819867dc56181016f3188ebb27929f4d613f71be0144096", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x52", + "from": "0x19a33d5dec623449e97b960d6e4f3aebd03f87f0", + "gasPrice": "0x3858701", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0xd6d8", + "maxFeePerGas": "0x3858701", + "maxPriorityFeePerGas": "0x3858701", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000007bef16275a88bd9c3004dbd0b85da65b08705c2400000000000000000000000000000000000000000000000000000000000009b1", + "r": "0xba5c4d56f4ba2aef4ba19d44caffdc747f4ca13af51bb21c40f26ce39ec88659", + "s": "0x747dd57dde67c746c759a022017ef0aadae991ed14dffcac6ded4b121f4d9e4", + "yParity": "0x0", + "v": "0x0", + "hash": "0x9b4400e92448baecfc2b9d760cda56748baecc50d183bd2ad00c0c9232657174", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x53", + "from": "0xe59a6b7d2c83137cf78005bdd0ab8844badc3c6e", + "gasPrice": "0x3858701", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x23", + "gas": "0xd6d8", + "maxFeePerGas": "0x3858701", + "maxPriorityFeePerGas": "0x3858701", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000750ec35535925979488993ee5ebf5050a12539fa0000000000000000000000000000000000000000000000000000000000000992", + "r": "0xda7c49859e63f06a38c7c98d30c4b547f734aba9b981441c7514556f9b97b5c9", + "s": "0x4333a03d9118f96294bd14c58e80e45c7e074f8a5e6ea569938c70b2e222f783", + "yParity": "0x1", + "v": "0x1", + "hash": "0x74f57c4851c5c6e18414b7199fb9f59a0ff6db5d168f98fb138770d477997a24", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x54", + "from": "0x577153bc9fe6e42013e57b21e6e4e2084758cbc3", + "gasPrice": "0x3858701", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x5c", + "gas": "0x5208", + "maxFeePerGas": "0x3bef061", + "maxPriorityFeePerGas": "0x549014", + "to": "0xbdd15f27837294d76c2ffd59b33224edb65feaf9", + "value": "0xb0a4139a3b8000", + "accessList": [], + "input": "0x", + "r": "0x6cbd6ad35b196ea43e4079fc662f04b46a085433d9f1c325d7a4ca598e4d16eb", + "s": "0x23c0e32abaff5c4975f860a66254e89df22fe94ca92209074e683208a60f3fd", + "yParity": "0x0", + "v": "0x0", + "hash": "0xb61218053211b798def7acaa886f83e84747a0e7ff72003ee80d205e3c335a74", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x55", + "from": "0xd3090fe5fd1ec776c9324e6a51d904207e690e5c", + "gasPrice": "0x36f7343", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0xaa", + "gas": "0x11170", + "maxFeePerGas": "0x3bef061", + "maxPriorityFeePerGas": "0x549014", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000750ec35535925979488993ee5ebf5050a12539fa0000000000000000000000000000000000000000000000000000000088f58e45", + "r": "0x80851fa0d608546fce1566a4c71edd7a228c4975f49c6fc0f99fae040802cbfe", + "s": "0x31d324896e00aa535bfcbba5fe059ffd008d9d6777f449ff35aa26bb2964d24a", + "yParity": "0x1", + "v": "0x1", + "hash": "0xb98f9a9b6267161543f3f53d275132b61575de7b78b5b411489c99a7379192d6", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x56", + "from": "0x5771318e579e4c4ab504f99cfe72fd7ac765cbc3", + "gasPrice": "0x36f7343", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x9c19", + "gas": "0x308bf", + "maxFeePerGas": "0x6c00554", + "maxPriorityFeePerGas": "0x49d79a", + "to": "0x017aabf7f5170ef491bab9e08b61532e2e92efeb", + "value": "0x0", + "accessList": [], + "input": "0x0dcd7a6c000000000000000000000000428cf082d321d435ff0e1f8a994e01f976f19c11000000000000000000000000000000000000000000000000000000012a05f200000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000006996aadd000000000000000000000000000000000000000000000000000000000000078700000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041628b711751f22d54d1ca44c65d04c79c5de36b2d05c096156d7aa68ac4b4cae56d5a87d5bc5d35b7e29c2e832be19f46be634b7e0e38a94570d10391990e13e81c00000000000000000000000000000000000000000000000000000000000000", + "r": "0xd7bbc07716643e5c0483cac4d9c43451b564519e68e13e10b3f47f326526afed", + "s": "0xb1ef10e505c43bf3b68b0a313a31c32a7ff3104de17fc4d9d263e2fd2388818", + "yParity": "0x0", + "v": "0x0", + "hash": "0xbd8a5fd1deecf4f4ff7e4dd0d6a1fcce8b02c881c97b0b9a0f0d2fed13844bbb", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x57", + "from": "0x9f5c2ae82df9cf37297c5d2b7b6557317527444e", + "gasPrice": "0x364bac9", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x0", + "chainId": "0x1", + "nonce": "0x1c71", + "gasPrice": "0x3646f2f", + "gas": "0x297f3", + "to": "0x8888888199b2df864bf678259607d6d5ebb4e3ce", + "value": "0x0", + "input": "0xfaadb53b00000000000000000000000000000000000000000000000000000000004c4b4000000000000000000000000000000000000000000000000000000000000027111da14592027f2767288047b65e44251e8658db05191a61dc26e5ec83000942e6000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000006639656630363739643430373930393864623131343561333666363137343561633a3a31323230313266613863313037643539366339663165346432396432666139396230633732366135646561623830323765393735346236386536666436333334616538390000000000000000000000000000000000000000000000000000", + "r": "0xea89e085da992dc5515134e09ca4e1cc7635eb980f1e24133ac2e381107ca5fe", + "s": "0x6fdea7dc7e562ab74b19712c9cb83bd15a2f5b7c76477d330f3aab357cd23504", + "v": "0x26", + "hash": "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x58", + "from": "0x5c60f46432bdf037679194fa0f0ec6d5776000b5", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x448", + "gas": "0x267f2", + "maxFeePerGas": "0x3b9aca00", + "maxPriorityFeePerGas": "0xf4240", + "to": "0x1ca9a58b0a808d45d343745b2baf8c7bd9e860b2", + "value": "0x0", + "accessList": [], + "input": "0x6f074e32000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002ea0ab6fe29e4dfffcb643db6724cf8243f9cb14000000000000000000000000f1f1340efc02583469e8433a38b523be656438a600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000010d000000000000000000000000000000000000000000000000000000000000010d", + "r": "0x6374c60748b4816ef9a1ff76d806d0eaf9dd669e15ce2b9f3d91da48cef12158", + "s": "0x6b1da9acd6eb0979d173cc7dcb5a1f9288dbcf260b21723bc95e5b21f3e2405f", + "yParity": "0x1", + "v": "0x1", + "hash": "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x59", + "from": "0x4ed9a759d32b65689f5bcc7147aa0c8ce73212c6", + "gasPrice": "0x32a256f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x469", + "gas": "0x204eb", + "maxFeePerGas": "0x3b9aca00", + "maxPriorityFeePerGas": "0xf4240", + "to": "0x9bd92f433953ab0f67286f122df669659032528d", + "value": "0x0", + "accessList": [], + "input": "0x6f074e32000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006910477b9025f8a5b05836b7564b649f1eae1753000000000000000000000000c0d030649414558076c014cb7e1fb1aacc68675f00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000038559e0e4940000000000000000000000000000000000000000000000000000000000000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f4", + "r": "0xaea3f7b9ee384fa93b9973df7193eda25f19ec066d967a1146b17cbd6aaa2667", + "s": "0x4f34cd3607e73046f9623fe409b857fdf7ea5f6c2c1f42a4bb6f873af704ef1c", + "yParity": "0x1", + "v": "0x1", + "hash": "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5a", + "from": "0xcc3679122e2ce07b1a4366e259f754b38231d486", + "gasPrice": "0x32a256f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x17ca", + "gas": "0x92ba1", + "maxFeePerGas": "0x44b9106", + "maxPriorityFeePerGas": "0x493e0", + "to": "0x1cc767399ed6d51d3ff05293faaa61e89086bf4e", + "value": "0x0", + "accessList": [], + "input": "0xd47a1a270000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000e51046c777453db9f29c0fb6246f191f84572f380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004438432643300000000000000000000000000000000000000000000000000000000000000000000000000000000000000009d2723ccf157e71181b6dd36e0ce7d2cef852ba50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eb607dc1509bef74daff72ecf56bc08fbb22b2e90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c990c20b41ef24a76f89c253cc587bf75bf6fc1c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be15000000000000000000000000000000000000000000000000000000000000000000000000000000000000000029c90a9e31b4ae3aae486fab850bfc6c1dd0b78a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039467005ce4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019a02bd816a66319f3566ffa76b7f90f185687f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e7feb8be15000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084ed0073022f13b0a6d299bff07eb78480d78211000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443843264330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e51046c777453db9f29c0fb6246f191f84572f38000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000029c90a9e31b4ae3aae486fab850bfc6c1dd0b78a000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000084ed0073022f13b0a6d299bff07eb78480d78211000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000009d2723ccf157e71181b6dd36e0ce7d2cef852ba5000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000eb607dc1509bef74daff72ecf56bc08fbb22b2e9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000c990c20b41ef24a76f89c253cc587bf75bf6fc1c000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000019a02bd816a66319f3566ffa76b7f90f185687f0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8", + "r": "0xb4a64f7eaa9f32516a9b87b0b2d7cd9b65ee44d152c6f8d51dd2cc4d7c5c469c", + "s": "0x51150a5ef04079b1c4c1d93529437ceeb14894c3427fd696e079f509696e58c5", + "yParity": "0x1", + "v": "0x1", + "hash": "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5b", + "from": "0x54732c211ba61667ed2499536b8a6a08d7e25179", + "gasPrice": "0x31f770f", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x4d5e", + "gas": "0x97c1", + "maxFeePerGas": "0x5e7d892", + "maxPriorityFeePerGas": "0x186a0", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0x095ea7b300000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000e4b9ed119", + "r": "0x998595389096b79f1f75e87da757a63ff3d4dda543f640fd74dc6273f39ca27", + "s": "0x2328163dd6ec12d9903f37259e9be37409cbe568738f05a185422cecc6eac2fb", + "yParity": "0x1", + "v": "0x1", + "hash": "0x3ff6d37150b07e0cb95314796684ab8e81a81ae8aea92c63eb972e44e174bbe8", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5c", + "from": "0x8d3b38316f4fa5db1779ee372d1ddae465b55769", + "gasPrice": "0x31c69cf", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1db9", + "gas": "0x199ca", + "maxFeePerGas": "0x75fe693", + "maxPriorityFeePerGas": "0x25", + "to": "0xe4731d1d77cae73c340e47b6a10f0b34ad9c6b96", + "value": "0x0", + "accessList": [], + "input": "0x7111a994000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000600000000000000000000000006bc9a7af72a5dfc476222c9c059c54a1354cd6b000000000000000000000000b05bac7b555edff581dc8bd8962d09dce2d15109000000000000000000000000b05b68a2a968f7d97c8b6fa391d1a20ce2d15109000000000000000000000000d1998ed7aa05e4a805eb09d9c8858b360e7b23570000000000000000000000009fddc52d21f1de06dddfc946a3b9ce2f525e099d0000000000000000000000009fddc52d21f1de06dddfc946a3b9ce2f525e099d0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000007e9712bb440000000000000000000000000000000000000000000000000000007f849a32b10000000000000000000000000000000000000000000000000000006961d96bab800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001388", + "r": "0x11a80fcc14bc95c7f230260e4574a3e38a3cca830c712e5ce6f49941dabd4d0c", + "s": "0x3ede6a9561224d7adb32d3aac6f13716957b4127b2d44a1aef5f506717565da9", + "yParity": "0x1", + "v": "0x1", + "hash": "0xb442c74f4d1850efd73bf5199a01dab3d04c0c8e539459794dcea70d2c487e78", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5d", + "from": "0x90b99ff1b30202f0abd9cc55a76fb208dbe5e6a7", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x687c", + "gas": "0x14820", + "maxFeePerGas": "0x3d73be6", + "maxPriorityFeePerGas": "0x25", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000a6d2e62979839bc1344e9625d5f940d66c1df7ed000000000000000000000000000000000000000000000000000000000b0d9700", + "r": "0xaf40d829d614dd6753aa8fd5e11d7ea4024897a5fa6949f880dc9b9a8ebcc58b", + "s": "0x478d6878b272948f0ac820a1a52ea5b39e7639ade6a71cbe91a7694a8cc1d248", + "yParity": "0x0", + "v": "0x0", + "hash": "0x61844494548d526e7ba513e2892ea1c8ef8231a64cb23393e9e6fd5c43c5e3ef", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5e", + "from": "0xb4fcbddabe0d14e7a9a23d9d5350fcb44b05aecb", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1788b", + "gas": "0x14820", + "maxFeePerGas": "0x3d73be6", + "maxPriorityFeePerGas": "0x25", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000b37a581b5a96ebbfaca8ad43f8b212ccb982872400000000000000000000000000000000000000000000000000000000135f1b40", + "r": "0xf00975f5f3b115a0ab9eeed4da53095fccf1422510c7a8d7f358ff5ded2189f6", + "s": "0x2341f2f101496534526cc365943a879f2f176f2be80d050432992cca78f6a76d", + "yParity": "0x0", + "v": "0x0", + "hash": "0x45a34920a605f5f94845dad8fc48aacacda072f8ec70b754fd261e3f2346147e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x5f", + "from": "0x3fbd55bbfbb36f45167c9abe1396a4e5a192e8fb", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x6bc1", + "gas": "0xf7d0", + "maxFeePerGas": "0x3d73be6", + "maxPriorityFeePerGas": "0x25", + "to": "0x514910771af9ca656af840dff83e8264ecf986ca", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000009fbd6e00ceae25149c6f80114687a234c237f460000000000000000000000000000000000000000000000000c12dc63fa970000", + "r": "0xbbf6dd514ee9e20e166329d8bab3b699f6803628d16a1d48ec798e4dba2da271", + "s": "0x399089d5e57cbdaf25d156d6b27bf2bd736e8caabe8b1a7e9cde05d14956c532", + "yParity": "0x1", + "v": "0x1", + "hash": "0x30adf501e56200bb8711788aa1e02d55ea0fad39e18d40678d02ad9d8a9b9f8e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x60", + "from": "0xcc0061c5025e1173c6ab08d56af429e3ba3037fd", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0xb583", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000037be6a6849cec9ed4eb2ce11b9d4db16544b368b0000000000000000000000000000000000000000000000000000000000001d4c", + "r": "0xc9d4c860c1c64c538d04f6bca60e9b4c52783a51a9c041c5d9b98cbe8f6e2cc3", + "s": "0xdfe18d00a66e974a60a7e0913175d7892cae8d1f6229e10fb5fa0b7bf61b7d6", + "yParity": "0x0", + "v": "0x0", + "hash": "0x4e4256c2220a1b2a6a1f2e96c98fc7a661f4311a3f183149e081482fe9edfdd7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x61", + "from": "0x9fdd5f884208b16291046b0f63810739f2fe099d", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1", + "gas": "0xb1cc", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000c0a1e393590a06e74efda03acb6c9c9b2ee0f2b20000000000000000000000000000000000000000000000000000000000000cad", + "r": "0x52e050fd610b8bd87e11ea4e72402b8c0a189111198e669c702a2b25119c37c7", + "s": "0x42bb2c70e4c2f938cd930b4811ee2e399e48fa6642118d30631ea2ebf954af82", + "yParity": "0x1", + "v": "0x1", + "hash": "0xef98db7a4b5f3b42396dbd1313ef873bc64a091b219ca94a5b41d00a9eb28282", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x62", + "from": "0xe5b0485e6cb08184b7d62efd96144b359da88c5a", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1", + "gas": "0x5208", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0x0910156077ec2087e8f364d592366fddb8df9d85", + "value": "0x3b9aca00", + "accessList": [], + "input": "0x", + "r": "0xdb3e7473983cdfb1beeb479111800e2da6b5843c240063f66f10667707ff6264", + "s": "0x313d46eb07c79cff939081198e10efe05e6b1c62268de22a3282edac26e36ca3", + "yParity": "0x1", + "v": "0x1", + "hash": "0x684fb85759f3d45380f03db2660a91a15d6a33d6a0d78813b2a337f121c0faa2", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x63", + "from": "0x80d17511a1ac59c2f401f20795bead7f7187fc6e", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x6d", + "gas": "0x5208", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0xe129188380d48fa09a6a89ac91adc761afdc1612", + "value": "0x3b9aca00", + "accessList": [], + "input": "0x", + "r": "0x5bb15f08e62e80729820a92b26f7bd2f32441e9acc12a8a75dafb52bfbd42670", + "s": "0x102b21c1ed34e21c8f7dd225b2d50130d9ccfa6ddd81aec6da2bbdf3581d463", + "yParity": "0x1", + "v": "0x1", + "hash": "0x2f42ee078cd5df9b0036e8196bd999e08aa0c4e557aa4ea6396c460fd3672082", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x64", + "from": "0x43e41c28743d211a1733ae8606b05b8ece71d198", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1", + "gas": "0xb1cc", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000000910156077ec2087e8f364d592366fddb8df9d850000000000000000000000000000000000000000000000000000000000000af0", + "r": "0x19e05e9cabdd7855aacc671724fa23b353f5ef304e621189bdb3eb432d5f2276", + "s": "0x1a6f4df5cc0fd5dda52e19839b3ded44436b9d4a3b17bcb0595b0dc69767eab9", + "yParity": "0x0", + "v": "0x0", + "hash": "0x46340b786c458771424f3f6e307cc1d13c2bfe7b2a7e32c62a5ca74b0a8f4b58", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x65", + "from": "0x80d16a2490cb06020f659fb3be60740f7187fc6e", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x4", + "gas": "0xb2a5", + "maxFeePerGas": "0x3d5b568", + "maxPriorityFeePerGas": "0x25", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000004081ab2c1089c17b570e1abbb0ada64a5e17867c0000000000000000000000000000000000000000000000000000000000001388", + "r": "0x51734e73720f5cc1b5071e2425d6880364c4ec2a59ee0ffb9bcdff9d6ff4088b", + "s": "0x5a33a01077c5ee87690aabd7c9e42037fcd987298c121862aba19c2b3a5b8a7a", + "yParity": "0x0", + "v": "0x0", + "hash": "0x4ebd331e239628992c7e9ac22fd6c77a494801cb83f2dc3d7124e78a71bd2786", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x66", + "from": "0x6adcaed78ec78280eab274102f331e7af99923da", + "gasPrice": "0x31ae354", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x6642", + "gas": "0x4ab6f", + "maxFeePerGas": "0x8d97b01", + "maxPriorityFeePerGas": "0x1e", + "to": "0x06d82a3839b94344599d2c15eac68a518f2a69dc", + "value": "0x0", + "accessList": [], + "input": "0x8aaa8f3b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000046000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000c20000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000347b772c920b6c826cbfaebc4be05510fddd8986000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000bdfa6137fb2f84b09f10e51b155458a8eee34b32000000000000000000000000db0996930fb7b311e710e80b192c3013d36a8d35000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000b5dd64a381db3a99e3e16fe10cf2ec4ca18be1440000000000000000000000004fd5cf85b16a9b3e210a3f550aed9dbc10005ff80000000000000000000000009e352a33f030fa89de5cd874501a9be4f0723b990000000000000000000000008696e84ab5e78983f2456bcb5c199eea9648c8c20000000000000000000000004fcbe087605cb8b656e66339d6bc9889a8b303d3000000000000000000000000b9c42bfd2ac4599ad3ac46789cf70bfd1fa8ff7f000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e5610000000000000000000000005b5fd84bdf53df224f33abd7e9cc21a4ed9554470000000000000000000000007ec81ec8076dfbfc45be9704a0d8f7b940b46431000000000000000000000000b2cefde21267044443b9ae78e1c00868adbd065f000000000000000000000000eb62684ebd086509e32035e8d7633dd30450decf000000000000000000000000c86a31d896733784d33368f932711ef3e14945c500000000000000000000000052530f9612b41eb1b9aae10d7a4ebea69ef45111000000000000000000000000eaa962169c075bdd9daf71bc326837e0370b29ac0000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a000000000000000000000000ee424c1ae1f55232691d3b64634610f4de55e5610000000000000000000000001ab44e5943af227cd8bce8b6a8acd3ff44fa10cc0000000000000000000000006d98918a2001b1e9447151048a46b9cd6dd13f1200000000000000000000000057d7b62c7b877f315b2d0cac98c4775f5bd3cd0b0000000000000000000000004c1211b9b2acb8cf812eede09d3e993a095c32fd000000000000000000000000c0a1e393590a06e74efda03acb6c9c9b2ee0f2b2000000000000000000000000f1f92b8f780995b6df8f37de3bb9b59b7e1438a60000000000000000000000005390150b3ec8f9103f99e857faffa634b926b41a0000000000000000000000002bc6457374432452c60bf2ad26c4f07e49e0d6f5000000000000000000000000c66344647a5140df4c7427742320ae9230272e56000000000000000000000000a0ba601c986493416713b5423d30b2a390e55d730000000000000000000000009c1f7e5932a658fb137a99c640797128a2399ed8000000000000000000000000ca3f8945afa9223fc508707f57bb0f5172daafe4000000000000000000000000f26948911c22d3e6ec71233b633e3aca50b440b500000000000000000000000021e77be3dd7b8a6e583404c24f08e3af0356d717000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000c7199f3f610e8e517c0577fdad8d188ff01cb4fb000000000000000000000000361327b593e38f3d70f145792a0e6db93a03b2910000000000000000000000003b3372183613c746c06ef18001742793020955c0000000000000000000000000d528daac52ee640cb1438e13b1149026a9fc6c5b0000000000000000000000004e5d6c0d6ec0cb96ea36f78b3058d1134176b9e8000000000000000000000000f1eb4248c93491589dcdb9ae4d8849111d5174ad000000000000000000000000f8ff5b83f8f5fb422b7e59b897ddf72a857175510000000000000000000000005d53058aaa37235f82aaadd130c0b050679077c70000000000000000000000004506f312c9daf32a79124565df44462f9214ef35000000000000000000000000272f4e5c016a4c64c83b6ea39b40ca6a54b3392100000000000000000000000036cbe1ae2c6daaf52d39024ce5a1c2015aaf79520000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b4600000000000000000000000059bfaf367c45746b986262f0d46c252a66868ae00000000000000000000000001d423383ba77f0f3c06466f3457b7032a528cdeb000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b235700000000000000000000000015f6794430b78b9578d29aa71bd60ae2d23719730000000000000000000000009b1c4f0d641047ccf364514f82ecdf5995417aed000000000000000000000000f9439b28ab755dad68518aaa08010937d2e23fe50000000000000000000000001b9a33f67ab944041f099beb1cddeac25c01705d00000000000000000000000085d74c3630bc00033424b0ac0138da680501a61a000000000000000000000000e5b173049d84218c3ab793fd7cbd8f912da88c5a000000000000000000000000df9a55c7d99a29e46416e152dbde6c7ed0018a2b000000000000000000000000d1995940f2eeea1d13edf20f5904a2ed837b2357000000000000000000000000156a9e844ad0a84b3e1c4ff081f11d7174181ad80000000000000000000000002caf897509193ba8141e0ab1f5c410dbb0c67b460000000000000000000000008b87fb4af0595cf61bc9eaee1a3846b7e6079c3b00000000000000000000000069d1e9d3f28d32885e0986df2736383419dcbc0900000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad7200000000000000000000000040ad8e8085f8c052fae40f0afda247025f353ddb00000000000000000000000025734674b2387dfb4d2eb66dbcf387c09408ad72000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000010520c14000000000000000000000000000000000000000000000000000000022ecb25c00000000000000000000000000000000000000000000000000000000002a72725300000000000000000000000000000000000000000000001244d0827f5aa400000000000000000000000000000000000000000000000000005b97e9081d9400000000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000000000370378a70000000000000000000000000000000000000000000000000000000012b5f19600000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000000000000001848c3b30000000000000000000000000000000000000000000000000000470de4df8200000000000000000000000000000000000000000000000000000000000db9b1b0ab000000000000000000000000000000000000000000000000000000f53c5dae80000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000009ba48350000000000000000000000000000000000000000000000000000000001b81bd8c0000000000000000000000000000000000000000000000001f399b1438a1000000000000000000000000000000000000000000000000000000000001d238573800000000000000000000000000000000000000000000000000000000ba43b740000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000c16ac5400000000000000000000000000000000000000000000000000000000007cf5bf000000000000000000000000000000000000000000000000000000009ba4835000000000000000000000000000000000000000000000000000000001678acf0af0000000000000000000000000000000000000000000000000000000a84486abf00000000000000000000000000000000000000000000000000000001aca3b918000000000000000000000000000000000000000000000000000001d1a94a2000000000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000000000000000000000000000000002e90edd000000000000000000000000000000000000000000000000001bc16d674ec800000", + "r": "0xc98e8bb4aaad2178586d568f97b9d00d5b224e131b9fd3a7e2607b5afa76601e", + "s": "0x3cdab679e37af7d2cc4e22918141514418f832db803efce4d740c7174be401d8", + "yParity": "0x0", + "v": "0x0", + "hash": "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x67", + "from": "0x32f365adce14bc332cb1b899c2443c399d139839", + "gasPrice": "0x31ae34d", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x89d51", + "gas": "0x5208", + "maxFeePerGas": "0x5e65210", + "maxPriorityFeePerGas": "0x1e", + "to": "0xa989adc10ba10d207bea0356f9b829280cb9f6a2", + "value": "0x69b3bdb9ae08000", + "accessList": [], + "input": "0x", + "r": "0x3b500a0448a29617b577c854f6d72a061ed732b71dd36d362010e03971be834a", + "s": "0x15848eace2c1a03a0c79c9d69b6d94b6c755b699bd922536a8dfe233760264d9", + "yParity": "0x0", + "v": "0x0", + "hash": "0x1856ff57259b03840a1ef2a3d67fefc29c31dc4d096215ea3bcec2f57a407181", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x68", + "from": "0x9c19b0497997fe9e75862688a295168070456951", + "gasPrice": "0x31ae34d", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x89d52", + "gas": "0x5208", + "maxFeePerGas": "0x5e65210", + "maxPriorityFeePerGas": "0x1e", + "to": "0x6fb8140ba4f039fe61e7cd477d5150179b14d2bd", + "value": "0x36fcc67a1fbd4000", + "accessList": [], + "input": "0x", + "r": "0xfa85c8ef06e33eff12f33f314e3efdc85d03c531de9b18d6f1ea0198b1a051b2", + "s": "0x2458a6440cfae0b86a16deae7c6d24d4b46303b3e855f06b63b460f2628d5db4", + "yParity": "0x1", + "v": "0x1", + "hash": "0x11a574aeed9d4c0d6e42f75f8dacb3be92153b7ca96861c7bc9dad7d7e4c57f1", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x69", + "from": "0x9c19b0497997fe9e75862688a295168070456951", + "gasPrice": "0x31ae34d", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x5", + "gas": "0x14820", + "maxFeePerGas": "0x3d73bda", + "maxPriorityFeePerGas": "0x19", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000337ab67279af6e192ae98c71fcdc1564bc1d3fab0000000000000000000000000000000000000000000000000000000003969440", + "r": "0x6ed1d7ec4fda04dc4fa5f95d84ebf7c3737481889b2a752aff227dd653e2ddd1", + "s": "0x478210cf70da1aeb69cfab66db0edf8d050913a74f78803b03ab295d1368392b", + "yParity": "0x0", + "v": "0x0", + "hash": "0x37d7ee233456cee9def23925d108ddbcf2bb98c65fa227c7400b933e1ebd1f2e", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6a", + "from": "0x8811372839cb719bd4e2d9693fd11b9c898f72b1", + "gasPrice": "0x31ae348", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x10", + "gas": "0x14820", + "maxFeePerGas": "0x3d73bda", + "maxPriorityFeePerGas": "0x19", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb000000000000000000000000346a15bc419429e1452c0b53cf1174c9114d764e0000000000000000000000000000000000000000000000000000000023c34600", + "r": "0x7d6f2b207b5bddf0591b930d166d3c494df3dede26a21f762c0b3c051cfcd85", + "s": "0x6a06c4be88b6d90dd51b2993feb0662edc3674bb4b1856ba51f1f74deda23824", + "yParity": "0x0", + "v": "0x0", + "hash": "0xa53fe347e52ab37f9f678edd5a489a2946eb2d0aecc32a36211f11c15db9b968", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6b", + "from": "0xd39e369a4a161a34f7275d2cbe9a95a1fed88a1d", + "gasPrice": "0x31ae348", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22e", + "gas": "0x5208", + "maxFeePerGas": "0x3d73bda", + "maxPriorityFeePerGas": "0x19", + "to": "0x307576dd4f73f91bb8c4a2edb762938e8e067d31", + "value": "0xaf2f786db1ab10", + "accessList": [], + "input": "0x", + "r": "0x33321d2ff3cf1862f55ceed915c4a10ca072c17db124b2b10d0672bb968fdd07", + "s": "0xf10136166c526572d858db1ef2d3d3b6de8bc919d9dc8e55084844c40872af8", + "yParity": "0x0", + "v": "0x0", + "hash": "0x099e29652215012a30278af790e24cd2bb642829e635a483ac8be485d1967d98", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6c", + "from": "0x016e06c7772bbea7819819b339eacbaff5f7c786", + "gasPrice": "0x31ae348", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1", + "gas": "0x14820", + "maxFeePerGas": "0x3d73bda", + "maxPriorityFeePerGas": "0x19", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000003068aaa8e7e07693cf3066dd15f174f7afc30c4000000000000000000000000000000000000000000000000000000000062f45b9", + "r": "0x23ea1603ae666722120dca27e12c44361f4163799f14e3b2ed720d7f0b06c176", + "s": "0x614e7df3d5e03b87114bb07108f0914afed74a74ff68634a3015f098b8bd9e09", + "yParity": "0x0", + "v": "0x0", + "hash": "0x83b3b98b33642ba82c2b473919a1b9524d98f8b20eb5160f6fbd7efad4134681", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6d", + "from": "0x16f148015742be254dd62ce57f5f31c0151ba294", + "gasPrice": "0x31ae348", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x1705f3", + "gas": "0x249f0", + "maxFeePerGas": "0x746a528800", + "maxPriorityFeePerGas": "0x16", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000000191e427515594a62fd6af4ba4c02dc27d32f4520000000000000000000000000000000000000000000000000000001405ffdc00", + "r": "0xa5fc5f769d54b7aadd1f2b7d4d4774ecc5da8c22855dd50f21ae9dc9745f6ed7", + "s": "0x391b4652d548c8f2efc2d500bcbb335d435080e3e306c9d4ea0c58f6c37a4723", + "yParity": "0x1", + "v": "0x1", + "hash": "0x4c09063946da75589794a5b09f680f9870e4a1b04739b42e46e2fcb578b25ca7", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6e", + "from": "0x55fe002aeff02f77364de339a1292923a15844b8", + "gasPrice": "0x31ae345", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x764", + "gas": "0x9a7f", + "maxFeePerGas": "0x5e65201", + "maxPriorityFeePerGas": "0xf", + "to": "0x6e879d0ccc85085a709ebf5539224f53d0d396b0", + "value": "0x0", + "accessList": [], + "input": "0xa924e8810000000000000000000000003a43aec53490cb9fa922847385d82fe25d0e9de70000000000000000000000000000000000000000000000000ef6368afbd6b353", + "r": "0xe2c6467cc88efeb6e9fdb07a0f750050536de300a5052096915f8dc8fe76f86a", + "s": "0xd8c5f5629597ee8cf96bc09e225efcdd3ebfa445b9ba81a044774d7fb596b0f", + "yParity": "0x1", + "v": "0x1", + "hash": "0x904be733e1f9234ae49c98a6806921dbb4bcc6443aa25b7edc037624343c3f86", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x6f", + "from": "0x1571bd48c0bc598c440966568058e02f2373162f", + "gasPrice": "0x31ae33e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x20630", + "gas": "0x55066", + "maxFeePerGas": "0x5e65201", + "maxPriorityFeePerGas": "0xf", + "to": "0xc727eb69ccf89d5911042f21be25a193d67e2c23", + "value": "0x0", + "accessList": [], + "input": "0x13d06a4c0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000003b713413cf22bee658d88893c83377535155f4f2000000000000000000000000f2d96acee05581dee42bf450826b8136fc8ce6dc000000000000000000000000f809a14fbff0cab72005f4e43748f2666cfa9a5500000000000000000000000078e5fcb3cd644d3db71a6369949d6d627a5579dc000000000000000000000000fdfaa94d8dfeb41a105b55cf009fb60e5777dce2000000000000000000000000bdc0019b92f11b26fc074b582983d7127a2c49ed0000000000000000000000003b713413cf22bee658d88893c83377535155f4f2000000000000000000000000f2d96acee05581dee42bf450826b8136fc8ce6dc000000000000000000000000f809a14fbff0cab72005f4e43748f2666cfa9a5500000000000000000000000078e5fcb3cd644d3db71a6369949d6d627a5579dc000000000000000000000000fdfaa94d8dfeb41a105b55cf009fb60e5777dce2000000000000000000000000bdc0019b92f11b26fc074b582983d7127a2c49ed000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000019800000000000000000000000000000000000000000000000000000000000001b500000000000000000000000000000000000000000000000000000000000000c3000000000000000000000000000000000000000000000000000000000000008c00000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd45400000000000000000000000000000000000000000000000000000572432bd454", + "r": "0x77ecf3f2dad80de8425a5f21b6cf94fa0f2b2441bc3bf8e2eead97030c76b5ee", + "s": "0x2a6d2338a2218e471cd9006f92b1e0b2609c3a858c4995b85c2dab51aaebf382", + "yParity": "0x0", + "v": "0x0", + "hash": "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x70", + "from": "0xc0007d8c810bece9b3199bb65799145165f9437c", + "gasPrice": "0x31ae33e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x16af", + "gas": "0x25547", + "maxFeePerGas": "0x5e65201", + "maxPriorityFeePerGas": "0xf", + "to": "0x56001a55633cca1d6cc98e2dad04c572e954abda", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb0000000000000000000000001e7220f659faeec9306ea4cdfe781058e7b94a590000000000000000000000000000000000000000000000000000000019cf309f5bc596055ec0e4a86c48960436885e87e41ad6d768d923b6b2d57fb7bda00ee48c3303f7ec022752c404f5fde0a12b73b015b27925c2ca71b98a9105fcb2a3bfc6033323ca7836f8160cab0a354972882a109b5ae4d23e24380bfd1a1faf7ecf1fe4ad34e0b9ffb03017c621e0138365face09c89ca42991671c207c7a8065b6c3969cfecc0a25aa238d5882d4f2a492703559d52f15fca8840b0bbe2ecf6eabc31f89a2fc05f0656325c50f6096ea991b1f66515ea8a52f41a0ccff1650d03851907be25ab48b8c18dcd003483d49dc613e14db1d2f30750000000000000000000000008f5c6ba7815d0d40ed46a15cf38bd7d2a8f98419000000000000000000000000723204dfe65bdc836d183a05d7c8b1d8cfac586400000000000000000000000000000000000000000000043c33c1937564800000", + "r": "0xb756e5475dee7587d50c3caaa6234d59da149701d164167ac307c2f7a4e530e", + "s": "0x1b3a68c9f7c3bff7cd1bf12d9173fcce4768a19a403f314784e5861a496cab3f", + "yParity": "0x0", + "v": "0x0", + "hash": "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x71", + "from": "0x5bb06d84c7d2b9094edf129ad1bbfbca7d4edff5", + "gasPrice": "0x31ae33e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x0", + "gas": "0xcaca", + "maxFeePerGas": "0x5e65201", + "maxPriorityFeePerGas": "0xf", + "to": "0x455e53cbb86018ac2b8092fdcd39d8444affc3f6", + "value": "0x0", + "accessList": [], + "input": "0xa9059cbb00000000000000000000000078085cf18070f8ce10e41ca928196323aba3569a000000000000000000000000000000000000000000000041ed2c0c8042bbdd00", + "r": "0xe52767e88428f7b37be2508c5ad776f01e78cfddd8a75effa0768819fd0eb53d", + "s": "0x40952bdc100166e6880e61e788789d45d49106691254d67c969c7fc41a4f8578", + "yParity": "0x0", + "v": "0x0", + "hash": "0x4a6f3e4092705abc172433607929737f736253d627e6aff6b90d9b7d8b6fa226", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x72", + "from": "0xce1570823b3372b632c024a70784cdd250f3c677", + "gasPrice": "0x31ae33e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + }, + { + "type": "0x2", + "chainId": "0x1", + "nonce": "0x22d", + "gas": "0x89149", + "maxFeePerGas": "0x46cbd84", + "maxPriorityFeePerGas": "0xf", + "to": "0x6131b5fae19ea4f9d964eac0408e4408b66337b5", + "value": "0x0", + "accessList": [], + "input": "0xe21fd0e9000000000000000000000000000000000000000000000000000000000000002000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ac00000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000a00000000000000023850c28aaa65e50000000000000000023850c28aaa65e50000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000004181d580cd1540a092aee7ff0c957f84b598a483d5577a28cd0569d78d16c714e873990c512ce74bcb7333fe41bc27c52f91ac5804e098d7ad0163342256b764021c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000021be6526a21e0c000000000000000000254bb32ab32eb000000000000000000023850c28aaa65e50000000000000000000000000000091843a000000000000000000000000000000000000000000000980000000f42400000000000000000000000000000004f82e73edb06d29ff62c91ec8f5ff06571bdeb29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000698d70e200000000000000000000000000000000000000000000000000000000000008e0000000000000000000000000000000000000000000000000000000000000000161f598cd000000000000000031439a79a3535d69b65c3be384840282b4ea0aa70000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042800000000000000000253ec059d3f400000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000023850c28aaa65e500003b9d6e0900000000000000015455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000009c7ed68b00dc4f45243b07ce71a54a86e8f8fcbb0000000000000000000000000000000000000000000000000000000100eed0b5000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28000000000000000000000120455ad9500000000000000000112eaa457ee369e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000112eaa457ee369e38a494ef0000000000000002121b20a953a964a774d7fcf046643ceb87d53cc7000000000000000000000000000000000000000000000000000000000000008000000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000111111125421ca6dc452d289314280a0f8842a65000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000020d77be0155139d5a960154100000000000000000000000067336cec42645f55059eff241cb02ea5cc52ff860000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000009181f260000000000000000000000000000000000000000000000000112eaa457ee369e000000000000000000000000003b9f41e300698d70a86b63b0e2e2eff0cc6cb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000402537f0ff96813da12b31a7845539e9f446a202a7d2c454ae925478e47d185433edf7915fdd5a4f56694814f8637ecaaffffa1c39f13d452968fc4de82869d077000000000000000000000000000000000000000000000000000000000000001463242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3b9d6e0900000000000000025455c918e405a2831fbff8595c0aae35ee3db9d1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b00000000000000000000000000000000000000000000000000000001000276a4000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7800000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e3d1a4b2c47d9aa61261f5606136ef73e28042000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000b78886e4610531dc98d383c54d34284a0e83081400000000000000000000000000000000000000000000023850c28aaa65e50000000000000000000000000000000000000000000000000000000000000900fb4400000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000100000000000000000000000063242a4ea82847b20e506b63b0e2e2eff0cc6cb0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000023850c28aaa65e5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002767b22536f75726365223a22222c22416d6f756e74496e555344223a223135342e3230303834353831313231373336222c22416d6f756e744f7574555344223a223135322e3534313639373630353932343634222c22526566657272616c223a22222c22466c616773223a302c22416d6f756e744f7574223a22313532353835313230222c2254696d657374616d70223a313737303837373033352c22526f7574654944223a2236386638613733312d366635312d343536652d393233382d3731616364366663353233663a32353165643339312d366532352d343036612d396662382d616230396332326639653562222c22496e74656772697479496e666f223a7b224b65794944223a2231222c225369676e6174757265223a22465932487a57414c4b57456e4b31716e4a445466357a4938793232314b4f304664737854556b314f594d6e3345356c6965454672534d48585833366c597455476647792f7979636b4c56726b2b4249626f796a694c2b566577466b785878545a784f6c7074695a6839794e334f7648386a7a5a5047744c764770342f32506b4a4379594e434d48695444622b356a523866505355697945554f3749544f79484d7a576b6e4a675857613234787735756338487a6c4455656b7a336e56424b656e4d4a7954307548754253373869775936464f4d52563170617a4446396756664c3957515332366f5045785947725270593459636c6b434c472f44316663493470684d736e4163303146633366774f56415052557374745043385658724e5472564c446c4f686f6e315a3577782f45554e6d38322f505836443671794c78706861742b344538646b78584c3777644f34476145426a54513d3d227d7d00000000000000000000", + "r": "0xae8c335c2f7bc7a6ea28cf2c5a1e7c31d29c8e17120cfc327def7b01f8fb0d6", + "s": "0x6c7c0c6cc855d4ccf7587be1daa9d88f11df9b88cb15265d92173ba92d665ded", + "yParity": "0x1", + "v": "0x1", + "hash": "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae", + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "blockNumber": "0x174e842", + "transactionIndex": "0x73", + "from": "0xb78886e4610531dc98d383c54d34284a0e830814", + "gasPrice": "0x31ae33e", + "timestamp": "1970-01-01 00:00:00.000 UTC" + } + ], + "withdrawals": [ + { + "index": "0x70f970b", + "validatorIndex": "0x1e3b1e", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xffe2ff" + }, + { + "index": "0x70f970c", + "validatorIndex": "0x1e3b1f", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff4ec2" + }, + { + "index": "0x70f970d", + "validatorIndex": "0x1e3b20", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff973d" + }, + { + "index": "0x70f970e", + "validatorIndex": "0x1e3b21", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff4ad8" + }, + { + "index": "0x70f970f", + "validatorIndex": "0x1e3b22", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xfecb14" + }, + { + "index": "0x70f9710", + "validatorIndex": "0x1e3b23", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff997c" + }, + { + "index": "0x70f9711", + "validatorIndex": "0x1e3b24", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff78a8" + }, + { + "index": "0x70f9712", + "validatorIndex": "0x1e3b25", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xffebab" + }, + { + "index": "0x70f9713", + "validatorIndex": "0x1e3b26", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0x100315a" + }, + { + "index": "0x70f9714", + "validatorIndex": "0x1e3b27", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xff766e" + }, + { + "index": "0x70f9715", + "validatorIndex": "0x1e3b28", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xffca0d" + }, + { + "index": "0x70f9716", + "validatorIndex": "0x1e3b29", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0xffb9a5" + }, + { + "index": "0x70f9717", + "validatorIndex": "0x1e3b2a", + "address": "0xd7c612e7b9ed0260b80ab1ab76d63d57390de46e", + "amount": "0x3d9265b" + }, + { + "index": "0x70f9718", + "validatorIndex": "0x1e3b2b", + "address": "0x2b78035514401ed1592eb691b8673a93edf97470", + "amount": "0xff3b19" + }, + { + "index": "0x70f9719", + "validatorIndex": "0x1e3b2f", + "address": "0xaa432d06a103ca39cbe2931d1ffbeefa1d6e0a57", + "amount": "0xfffb0e" + }, + { + "index": "0x70f971a", + "validatorIndex": "0x1e3b34", + "address": "0x208c4ff00a0d0f8f318f626331c780ee7bac9960", + "amount": "0xff7c30" + } + ] +} diff --git a/sample-data/evm_get_internal_transaction.json b/sample-data/evm_get_internal_transaction.json new file mode 100644 index 0000000..c774e3a --- /dev/null +++ b/sample-data/evm_get_internal_transaction.json @@ -0,0 +1,531 @@ +{ + "hash": "0xbc083d7445f3805c9d2ef95a6c4b1f30e5d71ecbace1296e832a8ba831033fba", + "from": "0x9e368b4B8fB323f3BB9773CF6cd46bf781C6320a", + "gas": 300000, + "gasUsed": 152275, + "value": 0, + "type": "CALL", + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "input": "0x791ac9470000000000000000000000000000000000000000000000000001ba98073a22eb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e0e879c697b5f9dd15a101aec67f5f46e58df6bb00000000000000000000000000000000000000000000000000000000698d779f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d70df5ef947e9361191074920ebab122e4754785000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "calls": [ + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 268101, + "gasUsed": 68004, + "value": 0, + "type": "CALL", + "to": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "input": "0x23b872dd0000000000000000000000009e368b4b8fb323f3bb9773cf6cd46bf781c6320a000000000000000000000000e149cc9a83eeeba5b0932490576d89b5fcf380d90000000000000000000000000000000000000000000000000001ba98073a22eb", + "calls": [ + { + "from": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "gas": 2300, + "gasUsed": 2265, + "value": 0, + "type": "CALL", + "to": "0x9b06A7CaE08Fea5461bBD2f93250F3ca19CD2b4f", + "input": "0x" + } + ], + "decoded": { + "name": "transferFrom", + "signature": "transferFrom(address,address,uint256)", + "params": [ + { + "name": "_from", + "type": "address", + "value": "0x9e368b4B8fB323f3BB9773CF6cd46bf781C6320a" + }, + { + "name": "_to", + "type": "address", + "value": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + }, + { + "name": "_value", + "type": "uint256", + "value": 486637095756523 + } + ], + "args": { + "_from": "0x9e368b4B8fB323f3BB9773CF6cd46bf781C6320a", + "_to": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "_value": 486637095756523 + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "ea7f2359267ce3919e7f510043163317bdcfe870f5ed5625975e71e0658a4ba2", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "The Big Dog", + "symbol": "BigDog", + "decimals": 9 + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 196978, + "gasUsed": 2504, + "value": 0, + "type": "STATICCALL", + "to": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "input": "0x0902f1ac", + "decoded": { + "name": "getReserves", + "signature": "getReserves()", + "params": [], + "args": {} + }, + "contractInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "info": { + "isContract": true, + "fingerprint": "ea7f2359267ce3919e7f510043163317bdcfe870f5ed5625975e71e0658a4ba2", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "The Big Dog", + "symbol": "BigDog", + "decimals": 9 + } + } + } + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 193992, + "gasUsed": 554, + "value": 0, + "type": "STATICCALL", + "to": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "input": "0x70a08231000000000000000000000000e149cc9a83eeeba5b0932490576d89b5fcf380d9", + "decoded": { + "name": "balanceOf", + "signature": "balanceOf(address)", + "params": [ + { + "name": "_owner", + "type": "address", + "value": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + ], + "args": { + "_owner": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "ea7f2359267ce3919e7f510043163317bdcfe870f5ed5625975e71e0658a4ba2", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "The Big Dog", + "symbol": "BigDog", + "decimals": 9 + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 191901, + "gasUsed": 64873, + "value": 0, + "type": "CALL", + "to": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000e4b49407b513d8b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "calls": [ + { + "from": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "gas": 175737, + "gasUsed": 29962, + "value": 0, + "type": "CALL", + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000e4b49407b513d8b", + "decoded": { + "name": "transfer", + "signature": "transfer(address,uint256)", + "params": [ + { + "name": "dst", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + }, + { + "name": "wad", + "type": "uint256", + "value": "1029997481079946635" + } + ], + "args": { + "dst": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "wad": "1029997481079946635" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + { + "from": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "gas": 145622, + "gasUsed": 534, + "value": 0, + "type": "STATICCALL", + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "input": "0x70a08231000000000000000000000000e149cc9a83eeeba5b0932490576d89b5fcf380d9", + "decoded": { + "name": "balanceOf", + "signature": "balanceOf(address)", + "params": [ + { + "name": "", + "type": "address", + "value": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + ], + "args": { + "": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + { + "from": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9", + "gas": 144691, + "gasUsed": 554, + "value": 0, + "type": "STATICCALL", + "to": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "input": "0x70a08231000000000000000000000000e149cc9a83eeeba5b0932490576d89b5fcf380d9", + "decoded": { + "name": "balanceOf", + "signature": "balanceOf(address)", + "params": [ + { + "name": "_owner", + "type": "address", + "value": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + ], + "args": { + "_owner": "0xe149Cc9A83EEeba5b0932490576d89b5FcF380d9" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "ea7f2359267ce3919e7f510043163317bdcfe870f5ed5625975e71e0658a4ba2", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "The Big Dog", + "symbol": "BigDog", + "decimals": 9 + } + } + } + ], + "decoded": { + "name": "swap", + "signature": "swap(uint256,uint256,address,bytes)", + "params": [ + { + "name": "amount0Out", + "type": "uint256", + "value": "1029997481079946635" + }, + { + "name": "amount1Out", + "type": "uint256", + "value": 0 + }, + { + "name": "to", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + }, + { + "name": "data", + "type": "bytes", + "value": null + } + ], + "args": { + "amount0Out": "1029997481079946635", + "amount1Out": 0, + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "data": null + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "fc4d24b0a1d1e140b3c92273f79206712c4cc1ec10459f5653e79fff43bf98fb", + "contractType": { + "name": "TokenPair", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20 TokenPair", + "name": "Uniswap V2", + "symbol": "UNI-V2", + "decimals": 18, + "token0": { + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "info": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + "token1": { + "address": "0xd70dF5EF947E9361191074920EbAB122e4754785", + "info": { + "isContract": true, + "fingerprint": "ea7f2359267ce3919e7f510043163317bdcfe870f5ed5625975e71e0658a4ba2", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "The Big Dog", + "symbol": "BigDog", + "decimals": 9 + } + } + } + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 127580, + "gasUsed": 534, + "value": 0, + "type": "STATICCALL", + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", + "decoded": { + "name": "balanceOf", + "signature": "balanceOf(address)", + "params": [ + { + "name": "", + "type": "address", + "value": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + } + ], + "args": { + "": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 126630, + "gasUsed": 9223, + "value": 0, + "type": "CALL", + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000e4b49407b513d8b", + "calls": [ + { + "from": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas": 2300, + "gasUsed": 83, + "value": "1029997481079946635", + "type": "CALL", + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "input": "0x" + } + ], + "decoded": { + "name": "withdraw", + "signature": "withdraw(uint256)", + "params": [ + { + "name": "wad", + "type": "uint256", + "value": "1029997481079946635" + } + ], + "args": { + "wad": "1029997481079946635" + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "f4dfb661c6df10d69003c66b2ff395547a6306ff0b621e6daab91f864d51238a", + "contractName": "CanonicalWETH", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18 + } + } + }, + { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 108090, + "gasUsed": 0, + "value": "1029997481079946635", + "type": "CALL", + "to": "0xe0e879c697b5f9dd15A101aec67f5f46E58dF6bb", + "input": "0x" + } + ], + "decoded": { + "name": "swapExactTokensForETHSupportingFeeOnTransferTokens", + "signature": "swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[],address,uint256)", + "params": [ + { + "name": "amountIn", + "type": "uint256", + "value": 486637095756523 + }, + { + "name": "amountOutMin", + "type": "uint256", + "value": 0 + }, + { + "name": "path", + "type": "address[]", + "value": [ + "0xd70dF5EF947E9361191074920EbAB122e4754785", + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + ] + }, + { + "name": "to", + "type": "address", + "value": "0xe0e879c697b5f9dd15A101aec67f5f46E58dF6bb" + }, + { + "name": "deadline", + "type": "uint256", + "value": 1770878879 + } + ], + "args": { + "amountIn": 486637095756523, + "amountOutMin": 0, + "path": [ + "0xd70dF5EF947E9361191074920EbAB122e4754785", + "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + ], + "to": "0xe0e879c697b5f9dd15A101aec67f5f46E58dF6bb", + "deadline": 1770878879 + } + }, + "contractInfo": { + "isContract": true, + "fingerprint": "570a0769f3ba8907f6f565c05a1d71998b23adf076c712a4e0989a83f2c70dc3", + "contractType": { + "name": null + } + } +} diff --git a/sample-data/evm_get_slim_block.json b/sample-data/evm_get_slim_block.json new file mode 100644 index 0000000..1c59703 --- /dev/null +++ b/sample-data/evm_get_slim_block.json @@ -0,0 +1,243 @@ +{ + "timestamp": "2026-02-12 06:17:23.000 UTC", + "number": 24438850, + "hash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "parentHash": "0xe96154a6f9708ff81260c548d5932eda1abe6ddb2370d12dd2bee2c25df8a33d", + "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", + "miner": "0xb364E75b1189DcbBF7f0C856456c1ba8e4d6481b", + "stateRoot": "0x6d3339b26fbf9f81c92dd06d780b7976eb161ee97230e4dcff361ecd9354e6ba", + "transactionsRoot": "0x0b5206e766dc6831c83279b7269b06776d1d43d0fc9bdc5bc3e3e02c6fc74bf1", + "receiptsRoot": "0x1faa3c9d4cebd6746bf6c2c2856901db1ddb7466f6b2e1ce22d4b183957f16c0", + "logsBloom": "0x816a724835a4210182288d00c13012921153a6c50aaa42d281e979082259e827935860063288242a0313d2fce643711cc71099088c862410186c64e0932908422223069100e80009ea7a620fb4fc50eec84f1cab54cf0b2c25001b5ef5bc04134a1033cc0a158d3d098398620812e9012212252252b25c181188e299808f74e20016082b9a190516ca5a10621214402a01012c7b5108802b044f855090f5882b0fda9a671891605f002034ea31841aa0dd2d49698648d788016d8ecc012120e32245d9eb953b02254e4f924c27f8dd8f5235b56264151e9354ab959b91a4a0c653107e30d81a0c1624c3ba2207d52c409460c49815040840637060c164052251", + "difficulty": 0, + "gasLimit": 60000000, + "gasUsed": 8957017, + "baseFeePerGas": 52093743, + "extraData": "0x4e65746865726d696e642076312e33352e32", + "nonce": "0x0000000000000000", + "totalDifficulty": 0, + "size": 48154, + "uncles": [], + "transactionCount": 116, + "transactions": [ + "0x39efdaadf2063d7c11041f7cc4713855d4956633941b44b14a5964d127ae6cab", + "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "0xc9ae216dddd2b375bf444df6359ef0f9c4dd5fa24162398ac95be9c70954ce90", + "0xa2a5f20e833f4538e34f7a759954003b592aeb80541c0b739ac14c61bfa95d65", + "0x779ec0bab813610cdb5d6ea9c9d96a3609fff8021f721cfb043ea83dfcde1805", + "0x9642342b015107719d4490ae115b3a5a8837383e5c795ae4d4afcb55f196fa3c", + "0x56c5b984af08baeb640aaf15cb2a055a382711be815fea1e6f47ec4ee20e5fe4", + "0x144f292993a215737ccfe40a69b74fd962fd477bfeb089ed663547c01e31f24b", + "0x0a8386973fb0845aca6e3b59eb64b0c7c5013be801873ee4803399d7e0129ca1", + "0x7c87a48fbd3bbed89701fee15556f1a1c818837be8361661942a770cc6109a60", + "0xb6fed375ad0e4d3b59f3996066314cae8c43bb1c7f5e68e08fa245d4b56839f0", + "0xdc3f714267a72c4247d9b3606f85a0b226fcaea59d7a0d418a9695276cf0576c", + "0x68de59089ba66af59842a71762575c3ace5eb839be6eb8658862930f80a86e2e", + "0x88a8f9a4b422be14116f02644d55bce823bb030c460d5ff0bf812c4a978e97c3", + "0xf67af77cf0c19e3850d7324a579f0dfb1f56d2020f8cf32203c22c823a9a46f5", + "0xbcf02c87200286085d3baccbc5720827dcb0190517a87b53d54b62bb7739dbc0", + "0xe733f12fc20d54d38b25444157e9ac6390acf78cc9dfc589779880473fab4b6c", + "0x64a9e4fe7e4d21de28818fb0d78a0b63148545e8675ba48b7b960b736e5f9626", + "0xae359239f74e2ac683234f14b0a163bbe2988c857d23dcf5b8458f03805030ea", + "0x8721a389baf16d67831baff2b0f421b0e369e0ea4c48fd7f7692531522e3e79d", + "0x77b744aa5113e95d6a783684e3290473117e38a824b6a521b820cf98b4720a63", + "0x0d9c9ea504e6a244542f5dee5ea54647a45be99747e82b1178124a30247af36a", + "0x705af1df39dd70a618ff57fa05d5bcb35a28f81d55c01606995bc0fb1ad28007", + "0x0f720e57bde54d372d992f34982b3930d5ae9cc1bf0383a1b98c730d0fcde184", + "0x22242c5d5dc76967ba95d618dfd94d723d7249af1e5ceb4e9a3b38d0821cb6b5", + "0x7a1a83347bb3c6c0e8668fe7feb6285392374dd50a93c74c0deb17d03e305493", + "0x382bd9152989dfd6f3a7d9b15c61aa9f53df3a03ac0c724948cfb05beef8a70a", + "0xd2651c662c2ea6edc0c761b0a9ead9a4f44e6b39d61564d9827f1656616cd1dd", + "0xa5a94f8b4b820474e0e44d7a5d2aa4a3b53e547c2e3e4d05ad47f05f40935234", + "0x6e0c6cd8cf126702b60140ac7a287de1b9832d647e8eb4552384390df8307e95", + "0x08f9d6e82d8d4d7194341435d0495c6eebaceb6c6eff732e8038ed6c3706267d", + "0x809b302e68704e651034c9a9b8e30f8f0d1f52fd8f252e31064f855a2ccf302f", + "0xa13c39066b500e766749ac4e0f0f597a64ce0c0da00aa4f31941c7d8a64b29f7", + "0xd22f1f953df2fbad50eafcc1821f7b35981319c8fe71bd3d2c60dbcc3bec5160", + "0x898fa6447ccaa2bea34d131b1047c78aabbb91b56632333e75b49330d773e376", + "0x929ca40040739dd0c65f563b316e6c11647608c52fc2c982919a2e47ffc45ab3", + "0x671bbfa74349c9eccecca2be90576fc590997fc6ca2c6c53379b26d45710c002", + "0xf70c0266a9deebed39320a53f1cff3e750d0fc2278ab112393ac66593d475a00", + "0x058b160b889f0629d0245a9682adf27e207cb57ce9938f2b679c54685952089e", + "0x886e9176b254fed956d90e15e105f75e7b1309d8c0c389d8253e0b24aaca7781", + "0xb46ae91449e1227f6eb704ac7686d245ff3b101b5f3babc7ad0bf877eb2957b8", + "0x14149ee8d87d7d62e4cd6b543422be63eb9eb7df01f5a1d533096bd12f28ef52", + "0x2a719209d392de590ced073af884258bf178a9f74d04ca56f1dcd17d1d392728", + "0x29a00b68476fad8c3137216b23218c2b0fa6b528fe4169902bf91e8a95b45b74", + "0x46e961ef734d008887caae4af6b1ebeb053e8868365fcfece298e7766251f163", + "0xd079794a3eedb24454c762ab2b7a16a4f9efde4ce1a386795f3775f02ab33c0a", + "0xe3a89fe8178aa2dc2599a5601dff659bd6b36f69506e7aa46bf0554fb7ec5df6", + "0x790b44fcfb4358cf60a73f7fb2f2c5dc93dc1713c8b57ba8544c5d2ada3190c3", + "0xbfa03c49d1c22e4562b4cb91717842c05f17f850e326696f60b9c04fe4d75a75", + "0x1f71fd2bdc5d70f4c8618c81a37ae82117ea17a42b15a0fa98af49f0674050fc", + "0x86646277582269746f0313237cc37ec8d27e09e8413e32109a8b4999b360e3d1", + "0xe3a69929fbd93f6b81736a01c0332f5d8308dbf4c8f91ca68009822931382d7b", + "0x9e1215b2e13d3f8696052516f829aca2186029b83263e2f55a8b21c4c40e3c44", + "0xd4c12653d61b65bdf3934bac8637de992ab3ca3e54360163c2efc70c3e448e92", + "0x848d5e2e92e3549637a63e75a0592551c4ea9b0c9c6a4aa4e4158818318361c1", + "0xd2af355b9b9aa9c6dba7037b9a0506e0fd66c06de5110424cc61fb21e9a2dd2d", + "0x18919e7eb9ce08c2ef1d6f73501746a9fd1b9bf5697ac8520c75362bfe0158e0", + "0xd1636fd72a6b24f9fa541cb4568d95c14257657ea1f980db8e86e00e009104b5", + "0x10f1f7122b3a31ac55b0b1f5d000909d7c7722fa6b6939e41398a6b47c568add", + "0x6f2f33018f3d50d0fc031e603d12806173d7358d00c6350a15ab8def7cf4c3af", + "0xa944a2fc34cf202d8feec18941a12dbc53c018396758550ccd32778080585ab7", + "0x377f8f0bb843ac8b34e6d123c2e6ae2aa8886dc7588cdafbc28beee6fb37e5a7", + "0x19f20b32c5c3fee91e40e5e96ef33e59ab20cbaf23da50eccf0c3aa39b05a368", + "0x57abb26eb7009673a33276a95a37852c875feec09ae6e71ae597d6d88a88f72c", + "0xd10e079b1943c3e0567df0005f3b87a6547cba761dd44c80bf28f246a7240592", + "0x4d2ed5820fc773e0ed6d2e9262da55882b844e3503e3bf1765ee43179f855ca1", + "0xc30c039441503db82fafcf088094e5f3fbb53223e3f5415b9fb3ae39ef0fa2ce", + "0x280664d8417387e4af423422e17296cff783b7779dcab0f930b350704430fbb2", + "0x069924326ba0624edf1d22f3645c8bf5f166b5b831f1d037e2540ede6ca3262a", + "0x1f6690931551839ae83639f5e9a34fdb4b27bbbab3f15814bc03c1caaf327520", + "0x5fc560b5acc6a87194012c0289a038e7faa3040cb8c33b6a406dcfc79f25bc07", + "0xf38747a4b84bf72470bdf48cada0330bbaca198fec9afb364b2fae915936af52", + "0x9ee2cb06833fa575e92bc2200b78eae045e773336aaa52f9aeae51b792c959a2", + "0xe84940733b0943c831513eafb857208cd3389392f784831339a4004945ed4cd5", + "0x9c5736d3c225007b542a6c1e58d30976398a655fd50e02a24d72ce720ac8087c", + "0xf0e9363787a16b98daf3bd99062b963ba98e1f21ed49315673845634519aa1f4", + "0xedeb19ea4364ba5eea48716e24c762bc2306b68249c672fb1565fd72b127a6dc", + "0x9345a911086f1b19ccb9598490effff9d761f0d3192c7437a770a76ed5542f43", + "0x6ffc69c6e612cc78b0f5945a963b79b9ac0fed7828d8a42d46174f4d9b878f3d", + "0x36cc294d864cb05d98e1d8a4d1989fe9b65130fe28cce0bfcf9631b1f7da1f56", + "0x03485b36efbec08601041be349518fb0377dd987dd91166e6c9c17129b5c2e48", + "0x929e3ae4e1bd3152942dd1b537984e540b3952c7ab77b910ce7a3fa2bfd49304", + "0x7f257282351f72ef1819867dc56181016f3188ebb27929f4d613f71be0144096", + "0x9b4400e92448baecfc2b9d760cda56748baecc50d183bd2ad00c0c9232657174", + "0x74f57c4851c5c6e18414b7199fb9f59a0ff6db5d168f98fb138770d477997a24", + "0xb61218053211b798def7acaa886f83e84747a0e7ff72003ee80d205e3c335a74", + "0xb98f9a9b6267161543f3f53d275132b61575de7b78b5b411489c99a7379192d6", + "0xbd8a5fd1deecf4f4ff7e4dd0d6a1fcce8b02c881c97b0b9a0f0d2fed13844bbb", + "0x16096644bc61d56be6bd27f6b9b71c2d94c1f84a8fd9920b7a49ef1357f6a315", + "0xfdd6559ed42f7b3a4d9a9a6cc19e1f9c72b08c5c2323285b399a99ce97f41b1e", + "0xa6bf1f5f966bb9b4ab169af117f088a1549d5048ee70bd52d2ab9214feccc38d", + "0xe62a9c0d48adca586e559b690628610f15a209bcfbb82690ad227b792ca33aae", + "0x3ff6d37150b07e0cb95314796684ab8e81a81ae8aea92c63eb972e44e174bbe8", + "0xb442c74f4d1850efd73bf5199a01dab3d04c0c8e539459794dcea70d2c487e78", + "0x61844494548d526e7ba513e2892ea1c8ef8231a64cb23393e9e6fd5c43c5e3ef", + "0x45a34920a605f5f94845dad8fc48aacacda072f8ec70b754fd261e3f2346147e", + "0x30adf501e56200bb8711788aa1e02d55ea0fad39e18d40678d02ad9d8a9b9f8e", + "0x4e4256c2220a1b2a6a1f2e96c98fc7a661f4311a3f183149e081482fe9edfdd7", + "0xef98db7a4b5f3b42396dbd1313ef873bc64a091b219ca94a5b41d00a9eb28282", + "0x684fb85759f3d45380f03db2660a91a15d6a33d6a0d78813b2a337f121c0faa2", + "0x2f42ee078cd5df9b0036e8196bd999e08aa0c4e557aa4ea6396c460fd3672082", + "0x46340b786c458771424f3f6e307cc1d13c2bfe7b2a7e32c62a5ca74b0a8f4b58", + "0x4ebd331e239628992c7e9ac22fd6c77a494801cb83f2dc3d7124e78a71bd2786", + "0xc57555baab2bed71c12f4e9404c6174f9743153a08e6059d51777f9d6e66180e", + "0x1856ff57259b03840a1ef2a3d67fefc29c31dc4d096215ea3bcec2f57a407181", + "0x11a574aeed9d4c0d6e42f75f8dacb3be92153b7ca96861c7bc9dad7d7e4c57f1", + "0x37d7ee233456cee9def23925d108ddbcf2bb98c65fa227c7400b933e1ebd1f2e", + "0xa53fe347e52ab37f9f678edd5a489a2946eb2d0aecc32a36211f11c15db9b968", + "0x099e29652215012a30278af790e24cd2bb642829e635a483ac8be485d1967d98", + "0x83b3b98b33642ba82c2b473919a1b9524d98f8b20eb5160f6fbd7efad4134681", + "0x4c09063946da75589794a5b09f680f9870e4a1b04739b42e46e2fcb578b25ca7", + "0x904be733e1f9234ae49c98a6806921dbb4bcc6443aa25b7edc037624343c3f86", + "0x720f2488f28fea088685d06da1f2463c2b7084f28c63837e30aeaa88c7518175", + "0xa9ac5cb84bed98f8243af279d947a261c4113ebe9258ec3a2b35f1ebea20263a", + "0x4a6f3e4092705abc172433607929737f736253d627e6aff6b90d9b7d8b6fa226", + "0xa076ec393c05b2105f7ded36d44248e260eb3a7e865f78a8464db953791db3ae" + ], + "blobGasUsed": 655360, + "excessBlobGas": 174484179, + "mixHash": "0xd4dc4281319360371317723c9c4e841c5a3a170f1f50292e31046652e36832e9", + "parentBeaconBlockRoot": "0x544ea15eedfbfa219139d96d795de3283e2fc2b492735f3ffa8c13b52173f67a", + "withdrawals": [ + { + "index": 118462219, + "validatorIndex": 118462219, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16769791 + }, + { + "index": 118462220, + "validatorIndex": 118462220, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16731842 + }, + { + "index": 118462221, + "validatorIndex": 118462221, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16750397 + }, + { + "index": 118462222, + "validatorIndex": 118462222, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16730840 + }, + { + "index": 118462223, + "validatorIndex": 118462223, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16698132 + }, + { + "index": 118462224, + "validatorIndex": 118462224, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16750972 + }, + { + "index": 118462225, + "validatorIndex": 118462225, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16742568 + }, + { + "index": 118462226, + "validatorIndex": 118462226, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16772011 + }, + { + "index": 118462227, + "validatorIndex": 118462227, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16789850 + }, + { + "index": 118462228, + "validatorIndex": 118462228, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16741998 + }, + { + "index": 118462229, + "validatorIndex": 118462229, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16763405 + }, + { + "index": 118462230, + "validatorIndex": 118462230, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 16759205 + }, + { + "index": 118462231, + "validatorIndex": 118462231, + "address": "0xd7C612E7b9ed0260b80Ab1aB76D63d57390De46e", + "amount": 64562779 + }, + { + "index": 118462232, + "validatorIndex": 118462232, + "address": "0x2B78035514401eD1592Eb691b8673a93Edf97470", + "amount": 16726809 + }, + { + "index": 118462233, + "validatorIndex": 118462233, + "address": "0xAA432D06a103ca39cBE2931D1FFbEefA1d6e0A57", + "amount": 16775950 + }, + { + "index": 118462234, + "validatorIndex": 118462234, + "address": "0x208C4FF00a0d0F8f318f626331C780eE7BAC9960", + "amount": 16743472 + } + ], + "withdrawalsRoot": "0x57e780df4c5af981766bdbae47ca1e9bd353740c7c3e3dae7676dbdccd7efe65" +} diff --git a/sample-data/evm_get_transaction.json b/sample-data/evm_get_transaction.json new file mode 100644 index 0000000..b93d410 --- /dev/null +++ b/sample-data/evm_get_transaction.json @@ -0,0 +1,202 @@ +{ + "transaction": { + "hash": "0x09a87748f2531ae4d04c985884ec34619a62c1f96a4966804582394cc59b44cd", + "from": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6", + "to": "0x60E4d786628Fea6478F785A6d7e704777c86a7c6", + "gas": 142588, + "gasPrice": 2284503746, + "nonce": 156, + "value": 0, + "v": "0x0", + "r": "0xa63414c117c4cdb2c71c32776281bd36469ec1903e73a1fa4232cb63b3d0eddc", + "s": "0x7a2a97ec8e7bfd849f87b101defe7ac03ac63cd2661e891b546c2536b7c2d17f", + "maxFeePerGas": 2402276707, + "maxPriorityFeePerGas": 2000000000, + "blockHash": "0x9581501a7bcfaf164b418e135fcc91601ce0dbbebd17bc1f410e3dfc67146716", + "blockNumber": 24435507, + "transactionIndex": 122, + "status": "success", + "contractAddress": null, + "cumulativeGasUsed": 22874655, + "gasUsed": 84982, + "fromInfo": { + "isContract": false + }, + "toInfo": { + "isContract": true, + "fingerprint": "8747190d7a0cad8a0d72e938d5016550cb26a63c464ece437ac7be97be776f76", + "contractType": { + "name": "NFT", + "metadata": true, + "baseUri": false, + "enumeration": true, + "tokenUri": true, + "receive": ["ERC721"], + "standards": ["ERC721"] + }, + "properties": { + "type": "ERC721", + "name": "MutantApeYachtClub", + "symbol": "MAYC", + "totalSupply": "19558" + } + }, + "call": { + "name": "transferFrom", + "signature": "transferFrom(address,address,uint256)", + "params": [ + { + "name": "_from", + "type": "address", + "value": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6" + }, + { + "name": "_to", + "type": "address", + "value": "0xa41887170Fd5d1591095398F15d89b8c55bA8416" + }, + { + "name": "_value", + "type": "uint256", + "value": 9488 + } + ], + "args": { + "_from": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6", + "_to": "0xa41887170Fd5d1591095398F15d89b8c55bA8416", + "_value": 9488 + }, + "extra": { + "tokenUri": "https://boredapeyachtclub.com/api/mutants/9488" + } + }, + "timestamp": "2026-02-11 19:05:59.000 UTC" + }, + "logEvents": [ + { + "removed": false, + "logIndex": 421, + "blockNumber": 24435507, + "blockHash": "0x9581501a7bcfaf164b418e135fcc91601ce0dbbebd17bc1f410e3dfc67146716", + "transactionHash": "0x09a87748f2531ae4d04c985884ec34619a62c1f96a4966804582394cc59b44cd", + "transactionIndex": 122, + "address": "0x60E4d786628Fea6478F785A6d7e704777c86a7c6", + "data": "0x", + "topics": [ + "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "0x0000000000000000000000002175a9b41b65767aed00ad1137932cbbdcf041b6", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000002510" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "8747190d7a0cad8a0d72e938d5016550cb26a63c464ece437ac7be97be776f76", + "contractType": { + "name": "NFT", + "metadata": true, + "baseUri": false, + "enumeration": true, + "tokenUri": true, + "receive": ["ERC721"], + "standards": ["ERC721"] + }, + "properties": { + "type": "ERC721", + "name": "MutantApeYachtClub", + "symbol": "MAYC", + "totalSupply": "19558" + } + }, + "event": { + "name": "Approval", + "signature": "Approval(address,address,uint256)", + "params": [ + { + "name": "_owner", + "type": "address", + "value": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6" + }, + { + "name": "_approved", + "type": "address", + "value": "0x0000000000000000000000000000000000000000" + }, + { + "name": "_tokenId", + "type": "uint256", + "value": 9488 + } + ], + "args": { + "_owner": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6", + "_approved": "0x0000000000000000000000000000000000000000", + "_tokenId": 9488 + } + } + }, + { + "removed": false, + "logIndex": 422, + "blockNumber": 24435507, + "blockHash": "0x9581501a7bcfaf164b418e135fcc91601ce0dbbebd17bc1f410e3dfc67146716", + "transactionHash": "0x09a87748f2531ae4d04c985884ec34619a62c1f96a4966804582394cc59b44cd", + "transactionIndex": 122, + "address": "0x60E4d786628Fea6478F785A6d7e704777c86a7c6", + "data": "0x", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x0000000000000000000000002175a9b41b65767aed00ad1137932cbbdcf041b6", + "0x000000000000000000000000a41887170fd5d1591095398f15d89b8c55ba8416", + "0x0000000000000000000000000000000000000000000000000000000000002510" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "8747190d7a0cad8a0d72e938d5016550cb26a63c464ece437ac7be97be776f76", + "contractType": { + "name": "NFT", + "metadata": true, + "baseUri": false, + "enumeration": true, + "tokenUri": true, + "receive": ["ERC721"], + "standards": ["ERC721"] + }, + "properties": { + "type": "ERC721", + "name": "MutantApeYachtClub", + "symbol": "MAYC", + "totalSupply": "19558" + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "_from", + "type": "address", + "value": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6" + }, + { + "name": "_to", + "type": "address", + "value": "0xa41887170Fd5d1591095398F15d89b8c55bA8416" + }, + { + "name": "_tokenId", + "type": "uint256", + "value": 9488 + } + ], + "args": { + "_from": "0x2175A9B41B65767aeD00AD1137932CbbdCf041b6", + "_to": "0xa41887170Fd5d1591095398F15d89b8c55bA8416", + "_tokenId": 9488 + }, + "extra": { + "tokenUri": "https://boredapeyachtclub.com/api/mutants/9488" + } + } + } + ] +} diff --git a/sample-data/evm_get_transaction_receipt.json b/sample-data/evm_get_transaction_receipt.json new file mode 100644 index 0000000..82a0e9b --- /dev/null +++ b/sample-data/evm_get_transaction_receipt.json @@ -0,0 +1,58 @@ +[ + { + "removed": false, + "logIndex": 0, + "blockNumber": 24438850, + "blockHash": "0xb9f86bb2532cfcfc3118422a1fc129d29bcfeef1e989b08df3629da7a7bba97f", + "transactionHash": "0x64335a80bef3b34a53017cb9752b0104fda8ba3536fa9f2370219cf7835c92bd", + "transactionIndex": 1, + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "data": "0x000000000000000000000000000000000000000000000000000000002e2819e0", + "topics": [ + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x00000000000000000000000063c5c270acdcea542789dcfb2af73f9811acf5fd", + "0x000000000000000000000000e17eff36d88df136529764b2517e9c8cc6113f4f" + ], + "addressInfo": { + "isContract": true, + "fingerprint": "7d717e88029bfbaa2e4accf1744212137ebf1208b3ee4c73f7d47fdbdb4e2f70", + "contractName": "usdt", + "contractType": { + "name": "Token", + "standards": ["ERC20"] + }, + "properties": { + "type": "ERC20", + "name": "Tether USD", + "symbol": "USDT", + "decimals": 6 + } + }, + "event": { + "name": "Transfer", + "signature": "Transfer(address,address,uint256)", + "params": [ + { + "name": "from", + "type": "address", + "value": "0x63c5c270aCDcea542789dcfB2af73f9811aCf5fD" + }, + { + "name": "to", + "type": "address", + "value": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F" + }, + { + "name": "value", + "type": "uint256", + "value": 774380000 + } + ], + "args": { + "from": "0x63c5c270aCDcea542789dcfB2af73f9811aCf5fD", + "to": "0xe17eFf36D88DF136529764B2517e9C8Cc6113F4F", + "value": 774380000 + } + } + } +] diff --git a/sample-data/get_fee_history.json b/sample-data/get_fee_history.json new file mode 100644 index 0000000..0c5ce32 --- /dev/null +++ b/sample-data/get_fee_history.json @@ -0,0 +1,13 @@ +{ + "oldestBlock": 24438979, + "baseFeePerGas": [ + 51806234, 48335045, 49633606, 53780502, 52794767, 47745373, 53579038, + 52416518, 50048719, 47693236, 45114724 + ], + "gasUsedRatio": [ + 0.23198676666666668, 0.6074633166666666, 0.8342007166666666, + 0.42668453333333334, 0.11743218333333333, 0.98873135, 0.4132107666666667, + 0.31930888243399286, 0.31174474615750886, 0.2837418666666667 + ], + "reward": [[], [], [], [], [], [], [], [], [], []] +} diff --git a/src/index.ts b/src/index.ts index 32058a4..bc17cc5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,9 @@ import { FastMCP } from '@missionsquad/fastmcp' import { registerEvmTools } from './tools.js' +import { routeConsoleStdoutToStderr } from './stdio-safe-console.js' + +routeConsoleStdoutToStderr() const server = new FastMCP({ name: 'mcp-evm', diff --git a/src/schemas.ts b/src/schemas.ts index ed90ec5..8443a34 100644 --- a/src/schemas.ts +++ b/src/schemas.ts @@ -1,66 +1,105 @@ import { z } from 'zod' export const DecodeFunctionCallSchema = z.object({ - input: z.string(), - address: z.string().optional(), + input: z + .string() + .describe('Hex calldata to decode (for example, transaction input data).'), + address: z + .string() + .optional() + .describe('Optional contract address to improve ABI matching for decoding.'), }) export const ContractInfoSchema = z.object({ - address: z.string(), + address: z.string().describe('Contract address to classify and inspect.'), }) export const GetBlockSchema = z.object({ blockNumber: z.number(), - decode: z.boolean().default(true), + decode: z + .boolean() + .default(true) + .describe('When true, return decoded transactions and log events.'), }) export const GetSlimBlockSchema = z.object({ blockNumber: z.number(), - raw: z.boolean().default(true), + raw: z + .boolean() + .default(true) + .describe('When true, return raw RPC-shaped block fields.'), }) export const GetSlimBlockByHashSchema = z.object({ - hash: z.string(), - raw: z.boolean().default(true), + hash: z.string().describe('Block hash.'), + raw: z + .boolean() + .default(true) + .describe('When true, return raw RPC-shaped block fields.'), }) export const GetFullBlockSchema = z.object({ blockNumber: z.number(), - decode: z.boolean().default(true), + decode: z + .boolean() + .default(true) + .describe('When true, return decoded transactions and log events.'), }) export const GetPendingTransactionsSchema = z.object({ - decode: z.boolean().default(false), + decode: z + .boolean() + .default(false) + .describe('When true, decode pending transaction call data when possible.'), }) export const GetPendingTransactionSchema = z.object({ - hash: z.string(), - decode: z.boolean().default(true), + hash: z.string().describe('Transaction hash.'), + decode: z + .boolean() + .default(true) + .describe('When true, decode pending transaction call data when possible.'), }) export const GetTransactionSchema = z.object({ - hash: z.string(), - decode: z.boolean().default(true), + hash: z.string().describe('Transaction hash.'), + decode: z + .boolean() + .default(true) + .describe('When true, return decoded transaction and decoded log events.'), }) export const GetTransactionReceiptSchema = z.object({ - hash: z.string(), - decode: z.boolean().default(true), + hash: z.string().describe('Transaction hash.'), + decode: z + .boolean() + .default(true) + .describe('When true, return decoded log events instead of raw receipt shape.'), }) export const GetInternalTransactionSchema = z.object({ - hash: z.string(), - decode: z.boolean().default(true), + hash: z.string().describe('Transaction hash.'), + decode: z + .boolean() + .default(true) + .describe('When true, decode trace call data where possible.'), }) export const GetInternalTransactionsByBlockSchema = z.object({ blockNumber: z.number(), - decode: z.boolean().default(true), + decode: z + .boolean() + .default(true) + .describe('When true, decode trace call data where possible.'), }) export const GetFeeHistorySchema = z.object({ - blockCount: z.number(), - blockTarget: z.number(), + blockCount: z + .number() + .describe('Number of recent blocks to include in the fee history window.'), + blockTarget: z + .number() + .describe('Reference block number (for example latest block number).'), }) export const GetLatestBlockNumberSchema = z.object({}) diff --git a/src/stdio-safe-console.ts b/src/stdio-safe-console.ts new file mode 100644 index 0000000..2992b15 --- /dev/null +++ b/src/stdio-safe-console.ts @@ -0,0 +1,29 @@ +import { format, inspect, type InspectOptions } from 'node:util' + +function writeLineToStderr(line: string): void { + process.stderr.write(`${line}\n`) +} + +function writeArgsToStderr(...args: unknown[]): void { + writeLineToStderr(format(...args)) +} + +/** + * MCP stdio transport requires stdout to contain JSON-RPC messages only. + * Redirect console methods that normally write to stdout so dependency logs + * cannot corrupt protocol frames. + */ +export function routeConsoleStdoutToStderr(): void { + console.log = (...args: unknown[]): void => { + writeArgsToStderr(...args) + } + console.info = (...args: unknown[]): void => { + writeArgsToStderr(...args) + } + console.debug = (...args: unknown[]): void => { + writeArgsToStderr(...args) + } + console.dir = (item: unknown, options?: InspectOptions): void => { + writeLineToStderr(inspect(item, options)) + } +} diff --git a/src/tools.ts b/src/tools.ts index ce059da..1d28cfc 100644 --- a/src/tools.ts +++ b/src/tools.ts @@ -90,20 +90,20 @@ const decoderTools = [ parameters: GetFullBlockSchema, run: async (decoder, args) => decoder.getFullBlock(args.blockNumber, args.decode), }), - defineTool({ - methodName: 'getPendingTransactions', - name: 'evm_get_pending_transactions', - description: 'Get pending transactions (default decode=false).', - parameters: GetPendingTransactionsSchema, - run: async (decoder, args) => decoder.getPendingTransactions(args.decode), - }), - defineTool({ - methodName: 'getPendingTransaction', - name: 'evm_get_pending_transaction', - description: 'Get one pending transaction by hash.', - parameters: GetPendingTransactionSchema, - run: async (decoder, args) => decoder.getPendingTransaction(args.hash, args.decode), - }), + // defineTool({ + // methodName: 'getPendingTransactions', + // name: 'evm_get_pending_transactions', + // description: 'Get pending transactions (default decode=false).', + // parameters: GetPendingTransactionsSchema, + // run: async (decoder, args) => decoder.getPendingTransactions(args.decode), + // }), + // defineTool({ + // methodName: 'getPendingTransaction', + // name: 'evm_get_pending_transaction', + // description: 'Get one pending transaction by hash.', + // parameters: GetPendingTransactionSchema, + // run: async (decoder, args) => decoder.getPendingTransaction(args.hash, args.decode), + // }), defineTool({ methodName: 'getTransaction', name: 'evm_get_transaction', diff --git a/test/method-coverage.test.ts b/test/method-coverage.test.ts index 5fa8608..576d5f2 100644 --- a/test/method-coverage.test.ts +++ b/test/method-coverage.test.ts @@ -1,29 +1,29 @@ import { describe, expect, it } from 'vitest' import { EVM_DECODER_PUBLIC_METHODS, EVM_TOOL_NAMES } from '../src/tools.js' +const EXPECTED_PUBLIC_METHODS = [ + 'decodeFunctionCall', + 'decodeFunctionCallV2', + 'contractInfo', + 'getBlock', + 'getSlimBlock', + 'getSlimBlockByHash', + 'getFullBlock', + 'getTransaction', + 'getTransactionReceipt', + 'getInternalTransaction', + 'getInternalTransactionsByBlock', + 'getFeeHistory', + 'getLatestBlockNumber', +] as const + describe('evmdecoder public method coverage', () => { it('includes the supported public methods', () => { - expect(EVM_DECODER_PUBLIC_METHODS).toEqual([ - 'decodeFunctionCall', - 'decodeFunctionCallV2', - 'contractInfo', - 'getBlock', - 'getSlimBlock', - 'getSlimBlockByHash', - 'getFullBlock', - 'getPendingTransactions', - 'getPendingTransaction', - 'getTransaction', - 'getTransactionReceipt', - 'getInternalTransaction', - 'getInternalTransactionsByBlock', - 'getFeeHistory', - 'getLatestBlockNumber', - ]) + expect(EVM_DECODER_PUBLIC_METHODS).toEqual(EXPECTED_PUBLIC_METHODS) }) it('registers one MCP tool per method', () => { - expect(EVM_TOOL_NAMES.length).toBe(15) - expect(new Set(EVM_TOOL_NAMES).size).toBe(15) + expect(EVM_TOOL_NAMES.length).toBe(EXPECTED_PUBLIC_METHODS.length) + expect(new Set(EVM_TOOL_NAMES).size).toBe(EXPECTED_PUBLIC_METHODS.length) }) })