Tables
blocks
Block header data containing sequential numbering, cryptographic hashes linking to parent blocks, timestamps, and consensus metadata. Primary source for blockchain state verification and chain navigation.Columns
Columns
| Column | Type | Description |
|---|---|---|
timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone. |
number | INT64 | Sequential block number indicating the position of the block in the blockchain. Increments by 1 for each new block in the chain. |
block_hash | STRING | Unique identifier for the block. 66-character hex string including 0x prefix. |
transaction_count | INT64 | Number of transactions included in the block. |
sequencer_address | STRING | Address of the sequencer that produced this block on Starknet. Value of 0x0 indicates early blocks before sequencer addresses were tracked. |
parent_hash | STRING | Hash of the parent block in the blockchain. 66-character hex string including 0x prefix. |
new_root | STRING | Merkle root hash of the state tree after executing all transactions in this block. Hex-encoded hash representing the state commitment finalized on Ethereum L1. |
status | STRING | Success indicator for the operation. Boolean value where true indicates successful execution and false indicates failure. |
Sample Data
Sample Data
| number | status | new_root | timestamp | block_hash | parent_hash | sequencer_address | transaction_count |
|---|---|---|---|---|---|---|---|
| 248 | ACCEPTED_ON_L1 | 0x787d66c91f8f7420b5d96914a93479210a61962d5a2055488b8e6be905e0d44 | 2021-12-07T02:51:23.000Z | 0x5eafc29a1997e1e11548275b9efecdc4498d20f1d1de212af387348b7245ff4 | 0xeb25d0d3c2458a1de306e37c52b4ba481ef32310bf479d5b4023b4ba999cb6 | 0x0 | 13 |
| 250 | ACCEPTED_ON_L1 | 0x34438d95178f449b5e8c178d610cd3699789d3c832efe04975a8ea0a647b07 | 2021-12-07T06:51:42.000Z | 0x20e0d813e9e90cdc6269e1cd3611fbb3083e825693f1af4c92f9f40857c32a3 | 0x3c02b94d5326616aaa283d2ae340525359a78611c4963c58df5cb3118cb429c | 0x0 | 14 |
| 247 | ACCEPTED_ON_L1 | 0xd25f249a202f608f14c6bd618e9e29238a290059c1c6a87bf590eccd904c48 | 2021-12-07T00:51:20.000Z | 0xeb25d0d3c2458a1de306e37c52b4ba481ef32310bf479d5b4023b4ba999cb6 | 0x49c2dfd47a1fc935ab29afa63b371e5e2ec4844422535cda927d747dce01dd9 | 0x0 | 14 |
Example Query
Example Query
Query with partition filter
events
Blockchain state change notifications emitted by runtime modules during transaction execution and block processing. Contains event metadata (pallet, method, index), encoded parameters, block context, and optional extrinsic linkage for analyzing on-chain activity across Substrate-based chains.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, microsecond precision. |
block_number | INT64 | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_index | INT64 | Sequential position of the event within its containing block. Zero-indexed integer indicating the order in which events occurred during block processing. |
from_address | STRING | Address that initiated the transaction or internal operation. Hex-encoded, 0x-prefixed, 42-character string. |
signature | STRING | # Canonical Column Description: signature |
data | ARRAY<STRING> | ABI-encoded event or transaction data. Hex-encoded string including 0x prefix. |
| keys | ARRAY<STRING> | Topic identifiers for the emitted event, with the first element representing the event signature hash. Starknet events use keccak256-hashed selectors stored as felt values in hexadecimal format, typically containing one or more indexable parameters. |
| block_hash | STRING | Unique identifier for the block. 66-character hex string including 0x prefix. |Sample Data
Sample Data
| data | keys | signature | block_hash | event_index | block_number | from_address | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| [“0x2c96f”,“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x20c49ba5e353f80000000000000000”,“0x3e8”,“0x0”,“0x134c6e0”,“0x1”,“0x1342aa0”,“0x1”] | [“0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f”] | 0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f | 0x7a9543faa4e190e40720769802724a223297bc2e8bfb4edd33554470a039e47 | 3 | 345939 | 0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067 | 2023-10-23T00:00:29.000Z | 0x68623cf778049adc129a7535392651ed6af027c46aaa67cab9417908c521bd8 |
| [“0x2c970”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8”,“0x20c49ba5e353f80000000000000000”,“0x3e8”,“0x0”,“0x5208”,“0x1”,“0x4a38”,“0x0”] | [“0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f”] | 0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f | 0x74305361147f681f33638492e1d6eeb9d19efad8b30dc5f3efea9ec64f1cb00 | 3 | 345941 | 0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067 | 2023-10-23T00:02:47.000Z | 0x219b2aad864c64a5db0c06bdb50d4630693e24007885852910c4640efbd6996 |
| [“0x2c971”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8”,“0x20c49ba5e353f80000000000000000”,“0x3e8”,“0x0”,“0x5208”,“0x1”,“0x4a38”,“0x0”] | [“0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f”] | 0x2a9157ea1542bfe11220258bf15d8aa02d791e7f94426446ec85b94159929f | 0x5d332f20dcbb47e50458f44da4424198488ddeae2824611dc3d978e59da96b7 | 3 | 345944 | 0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067 | 2023-10-23T00:05:36.000Z | 0x30d2f76e904bbc56a28ddcbfe9bf3a9fa70f6df8eed588c4569ef0c195ae0c1 |
Example Query
Example Query
Query with partition filter
traces
Individual transaction execution steps recording internal operations, including contract calls, value transfers, and gas consumption. Used for analyzing complex transaction flows and debugging smart contract interactions.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, microsecond precision. |
block_number | INT64 | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
transaction_revert_reason | STRING | Error message explaining why the entire transaction failed, if applicable. Null when transaction executed successfully. |
transaction_type | STRING | EIP-2718 transaction type indicator. Integer value representing the transaction format: 0 for legacy, 1 for EIP-2930 access list, 2 for EIP-1559 fee market, 3 for EIP-4844 blob transactions. |
call_path | STRING | Hierarchical identifier showing the position of this trace within the transaction’s execution tree. Uses underscore-separated integers (e.g., “0_1_2”) where each number represents the call index at that depth level. |
depth | INT64 | Hierarchical position of this function call within the transaction’s execution tree, starting at 0 for top-level calls. Increments by 1 for each nested subcall, enabling reconstruction of the complete call stack. |
call_type | STRING | Type of contract call executed in this trace. Can be CALL (external invocation), DELEGATE (delegate call preserving sender context), or other Starknet-specific call types. |
from_address | STRING | Address that initiated the transaction or internal operation. Hex-encoded, 0x-prefixed, 42-character string. |
to_address | STRING | Address receiving the transaction or internal operation. Hex-encoded, 0x-prefixed, 42-character string. |
class_hash | STRING | Contract class identifier representing the implementation code for this call. Hex-encoded hash value that determines the executable logic, particularly relevant for DELEGATE calls where execution uses a different class than the contract’s default. |
entry_point_selector | STRING | Selector hash identifying which contract function was called in this trace. Hex-encoded identifier derived from the function name using Starknet’s hash function. |
entry_point_type | STRING | Entry point type of the function call, indicating whether it was invoked as an EXTERNAL function (directly callable) or through another mechanism. Typically EXTERNAL for user-initiated contract interactions on Starknet. |
input | ARRAY<STRING> | Calldata or transaction payload sent with the call or transaction. Hex-encoded string starting with 0x, containing the function signature and encoded parameters for smart contract interactions. |
output | ARRAY<STRING> | Return data from the smart contract execution or call. Hex-encoded string starting with 0x, containing the function’s return value in ABI-encoded format. |
events | JSON | Array of events emitted during this function call, including token transfers, state changes, and other contract-specific logs. Each event contains keys (topic identifiers), data (indexed and unindexed parameters), and an order field indicating emission sequence within the transaction. |
messages | JSON | L2-to-L1 messages emitted during trace execution, containing data sent from Starknet contracts to Ethereum. JSON array of message objects, typically empty for most transactions. |
execution_resources | JSON | JSON object containing computational resources consumed by the trace execution, including Cairo steps, builtin applications (pedersen, range_check, bitwise, ec_op), and memory holes. Values vary by operation complexity, from simple reads (~46 steps) to complex swaps (~11,000+ steps). |
trace_revert_reason | STRING | Error message explaining why this specific trace execution reverted, distinct from transaction-level failures. Null when the trace executed successfully without reverting. |
Sample Data
Sample Data
| depth | input | events | output | messages | call_path | call_type | class_hash | to_address | block_number | from_address | block_timestamp | entry_point_type | transaction_hash | transaction_type | execution_resources | trace_revert_reason | entry_point_selector | transaction_revert_reason |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | [“0x2”,“0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8”,“0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c”,“0x0”,“0x3”,“0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023”,“0x3276861cf5e05d6daf8f352cabb47df623eb10c383ab742fcc7abea94d5c5cc”,“0x3”,“0x9”,“0xc”,“0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023”,“0x1e848000”,“0x0”,“0x1e848000”,“0x0”,“0x1e9863cb”,“0x0”,“0x2”,“0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x1383eb2872e594ffda60114a8a6a151505a083629f9eead70bb082bcd3f213e”,“0x667ee5ed”] | [] | [“0x6”,“0x1”,“0x2”,“0x1e848000”,“0x0”,“0x1e9fc679”,“0x0”] | [] | 0_0 | DELEGATE | 0x5dec330eebf36c8672b60db4a718d44762d3ae6d1333e553197acb47ee5a062 | 0x1383eb2872e594ffda60114a8a6a151505a083629f9eead70bb082bcd3f213e | 347918 | 0x0 | 2023-10-23T14:22:28.000Z | EXTERNAL | 0x23886aa92460eb401534fec50164691220fe664e134e1a00e2946d2eb2ce717 | INVOKE | {“memory_holes”:639,“pedersen_builtin_applications”:22,“range_check_builtin_applications”:734,“steps”:10331} | 0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad | ||
| 0 | [“0x2”,“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”,“0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c”,“0x0”,“0x3”,“0x7ebd0e95dfc4411045f9424d45a0f132d3e40642c38fdfe0febacf78cc95e76”,“0x2c0f7bf2d6cf5304c29171bf493feb222fef84bdaf17805a6574b0c2e8bcc87”,“0x3”,“0x9”,“0xc”,“0x7ebd0e95dfc4411045f9424d45a0f132d3e40642c38fdfe0febacf78cc95e76”,“0x71afd498d0000”,“0x0”,“0x71afd498d0000”,“0x0”,“0x3289d6”,“0x0”,“0x2”,“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x190dc01f94507c74873db0a8fcdb7b2deb2be850a682929084d1b85b47d2513”,“0x6538bfd4”] | [] | [“0x6”,“0x1”,“0x2”,“0x71afd498d0000”,“0x0”,“0x338c98”,“0x0”] | [] | 0 | CALL | 0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e | 0x190dc01f94507c74873db0a8fcdb7b2deb2be850a682929084d1b85b47d2513 | 346858 | 0x0 | 2023-10-23T07:12:30.000Z | EXTERNAL | 0x3a0a0b073df3c4e6d354eab74d92e564fddcc1fcb1ed2f0be9010b4fa47d811 | INVOKE | {“bitwise_builtin_applications”:3,“memory_holes”:300,“pedersen_builtin_applications”:40,“range_check_builtin_applications”:855,“steps”:11419} | 0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad | ||
| 0 | [“0x2”,“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”,“0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c”,“0x3”,“0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1”,“0x478092bd54b924”,“0x0”,“0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1”,“0x2c0f7bf2d6cf5304c29171bf493feb222fef84bdaf17805a6574b0c2e8bcc87”,“0x9”,“0x478092bd54b924”,“0x0”,“0x207afb0”,“0x0”,“0x2”,“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”,“0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8”,“0x1012b812c836b253860839d0ceb6ddc48c31fc634e5be876efeaabd24354e84”,“0x6538b387”] | [{“data”:[“0x2”,“0x1”,“0x1”,“0x5”,“0x2”,“0x478092bd54b924”,“0x0”,“0x2082472”,“0x0”],“keys”:[“0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1”,“0x77067610cd022b65b0b3495afa8475a39224fdae4f4f54cf135f3c4749fb45d”],“order”:5}] | [“0x2”,“0x1”,“0x1”,“0x5”,“0x2”,“0x478092bd54b924”,“0x0”,“0x2082472”,“0x0”] | [] | 0 | CALL | 0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003 | 0x1012b812c836b253860839d0ceb6ddc48c31fc634e5be876efeaabd24354e84 | 346685 | 0x0 | 2023-10-23T06:20:04.000Z | EXTERNAL | 0x77067610cd022b65b0b3495afa8475a39224fdae4f4f54cf135f3c4749fb45d | INVOKE | {“bitwise_builtin_applications”:3,“memory_holes”:253,“pedersen_builtin_applications”:40,“range_check_builtin_applications”:652,“steps”:11329} | 0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad |
Example Query
Example Query
Query with partition filter
traces_summary
Transaction execution summaries from StarkNet Layer 2, including computational resource consumption (ECDSA signatures, Pedersen hashes, memory usage), state changes, and contract deployments. Used for analyzing transaction costs, Cairo VM resource utilization, and network state transitions.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, microsecond precision. |
block_number | INT64 | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
tx_execution_resources | STRING | JSON-encoded object containing StarkNet transaction execution resource consumption metrics including builtin applications (ECDSA, Pedersen, range checks), memory holes, and Layer 1 data availability gas costs. Always present for executed transactions with varying resource usage patterns. |
state_diff | STRING | JSON-encoded object capturing storage slot changes, nonce updates, and balance modifications resulting from this transaction’s execution. Null when the transaction produced no state changes. |
deployed_contracts | STRING | JSON-encoded array of contract addresses deployed during this transaction. Null when no contracts were deployed in the transaction. |
declared_classes | STRING | Classes declared in this transaction on StarkNet. Null when no class declarations occurred in the transaction. |
Sample Data
Sample Data
| state_diff | block_number | block_timestamp | declared_classes | transaction_hash | deployed_contracts | tx_execution_resources |
|---|---|---|---|---|---|---|
| null | 16271 | 2022-12-09T00:08:08.000Z | null | 0x581d2aaf48f1f91e87f11c748783cf3c65959c2828a4728cf41318821cefdea | null | {“data_availability”:{“l1_data_gas”:0,“l1_gas”:0},“ecdsa_builtin_applications”:1,“memory_holes”:147,“pedersen_builtin_applications”:22,“range_check_builtin_applications”:73,“steps”:2292} |
| null | 16271 | 2022-12-09T00:08:08.000Z | null | 0x5c208aa1c14a2ce3bb653ba9500cd65529f8757ec5b4d1c4b99c1149d617b53 | null | {“data_availability”:{“l1_data_gas”:0,“l1_gas”:0},“ecdsa_builtin_applications”:1,“memory_holes”:701,“pedersen_builtin_applications”:27,“range_check_builtin_applications”:761,“steps”:11309} |
| null | 16271 | 2022-12-09T00:08:08.000Z | null | 0x3942465e8b3d84e2acec9ebf4a0a0802a1e345530ee144d819bd6c351a8be0c | null | {“data_availability”:{“l1_data_gas”:0,“l1_gas”:0},“ecdsa_builtin_applications”:1,“memory_holes”:56,“pedersen_builtin_applications”:6,“range_check_builtin_applications”:27,“steps”:1241} |
Example Query
Example Query
Query with partition filter
transactions
Transaction records containing signed operations that modify blockchain state. Primary source for tracking value transfers, contract interactions, and account state changes across the network.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, microsecond precision. |
block_number | INT64 | Sequential number of the block in the blockchain. Starts at 0 for the genesis block and increments by 1 for each subsequent block. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
transaction_index | INT64 | Position of the transaction within its containing block. Zero-indexed integer indicating the sequential order of transactions in the block. |
sender_address | STRING | Account address that initiated and signed this transaction on Starknet. Hex-encoded string representing the originating wallet or contract. |
contract_address | STRING | Contract address being deployed or interacted with in deploy and library call transaction types. Null for invoke transactions which interact via sender_address instead. |
max_fee | BIGNUMERIC | Maximum transaction fee permitted for execution. Denominated in the smallest unit of the native token. |
nonce | INT64 | Sequential counter for transactions or operations from an account. Increments by 1 for each new transaction to prevent replay attacks and ensure transaction ordering. |
block_hash | STRING | Unique identifier for the block. 66-character hex string including 0x prefix. |
class_hash | STRING | Hash of the contract class being deployed or declared in this transaction. Null for invoke transactions that call existing contracts. |
compiled_class_hash | STRING | Compiled class hash for DECLARE transactions defining contract implementations. Null for other transaction types like INVOKE or DEPLOY. |
transaction_type | STRING | EIP-2718 transaction type indicator. Integer value representing the transaction format: 0 for legacy, 1 for EIP-2930 access list, 2 for EIP-1559 fee market, 3 for EIP-4844 blob transactions. |
receipt_actual_fee | BIGNUMERIC | Actual transaction fee paid in the smallest denomination of the fee unit. Denominated in wei (10^-18 ETH) when receipt_actual_fee_unit is WEI. |
receipt_actual_fee_unit | STRING | Denomination unit for the actual transaction fee paid. Typically ‘WEI’ for Starknet transactions, representing the smallest unit of the native token. |
receipt_contract_address | STRING | Contract address created by the transaction when deploying a new smart contract. Hex-encoded, 0x-prefixed, 42-character string. Null for all non-deployment transactions. |
receipt_execution_status | STRING | Transaction execution outcome on Starknet. Values are SUCCEEDED for successful transactions or REVERTED for failed executions. |
receipt_finality_status | STRING | Finality status of the transaction on Starknet L2 (ACCEPTED_ON_L2 or ACCEPTED_ON_L1). Indicates whether the block has been accepted on Layer 2 only or confirmed on Ethereum Layer 1. |
receipt_revert_reason | STRING | Error message explaining why a transaction was reverted on Starknet. Null when transaction executed successfully; contains contract-level error details otherwise. |
receipt_type | STRING | Transaction encoding format identifier from EIP-2718. Integer value indicating the transaction type returned in the receipt. |
receipt_events | ARRAY<STRUCT<data ARRAY<STRING>, from_address STRING, keys ARRAY<STRING>>> | Events emitted during transaction execution, containing structured data about state changes. Nested record type holding arrays of event data, keys, and source contract addresses. |
signature | ARRAY<STRING> | # Canonical Column Description: signature |
version | INT64 | Sequential version number of the transaction or block structure indicating the format specification. Integer value representing the data structure version used for encoding and validation. |
| entry_point_selector | STRING | Entry point selector hash that identifies the specific function being called in a Starknet contract. Null for most transaction types, populated only for direct contract invocations. |
| contract_address_salt | STRING | Deterministic salt value used when deploying contracts via the DEPLOY transaction type on Starknet. Null for non-deployment transactions like INVOKE or DECLARE. |
| calldata | ARRAY<STRING> | Array of function parameters encoded as felt values. Contains the input data passed to the contract function being invoked in this transaction. |
| constructor_calldata | ARRAY<STRING> | Array of constructor arguments used when deploying a new contract on Starknet. Populated only for DEPLOY and DEPLOY_ACCOUNT transaction types, otherwise empty. |Sample Data
Sample Data
| nonce | max_fee | version | calldata | signature | block_hash | class_hash | block_number | receipt_type | receipt_events | sender_address | block_timestamp | contract_address | transaction_hash | transaction_type | transaction_index | receipt_actual_fee | compiled_class_hash | constructor_calldata | entry_point_selector | contract_address_salt | receipt_revert_reason | receipt_actual_fee_unit | receipt_finality_status | receipt_contract_address | receipt_execution_status |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 625 | 10854247090041 | 1 | [“0xa”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x16b”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x170”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x174”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x178”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x17f”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x367”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x37e”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x378”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x388”,“0x1”,“0xa4”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0x6”,“0x5265636569766544656c6976657279”,“0x4”,“0x9”,“0x39c”,“0x1”,“0xa4”] | [“0x6ba05b06679165770d32359b681664ca680e777ad7d048de3e5ebd6b09aa5f1”,“0x384cf7bec26d263feaeea92e0fc3d2fd215c31cdfe09e9282a0bae41e708a8f”] | 0x46daa4b2a242850973e72891622419d52e4e0c2944b592f66afc186052a0c8b | 652981 | INVOKE | [{“data”:[“0x2”,“0x1970005”,“0x1”,“0x8”,“0x1”,“0x219283500”,“0x1914efc40”,“0x15382100”,“0x56dbd50c0”,“0x5”,“0x2c”,“0x2dc6c0”,“0x46”,“0x2dc6c0”,“0x65”,“0x7a120”,“0x45”,“0x2625a0”,“0x85”,“0x6”,“0x4”,“0xf0”,“0xa0”,“0xf4”,“0x28”,“0xf3”,“0x3c”,“0xeb”,“0x50”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x16b0009”,“0x2”,“0x5”,“0x6c”,“0x0”,“0x5”,“0x197”,“0x1”,“0x667df931”,“0x1”,“0x85”,“0x6”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6c”,“0x0”,“0x1”,“0x85”,“0x6”,“0x5”,“0x197”,“0x1”,“0x9”,“0x16b”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x1970005”,“0x1”,“0x8”,“0x1”,“0x223a5c100”,“0x67c289c40”,“0xaba9500”,“0x82e3b0c0”,“0x6”,“0x2c”,“0x2dc6c0”,“0x46”,“0x2dc6c0”,“0x65”,“0x7a120”,“0x45”,“0x2625a0”,“0x85”,“0x6”,“0xeb”,“0x50”,“0x3”,“0xf0”,“0xa0”,“0xf4”,“0x28”,“0xf3”,“0x3c”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x1700009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x197”,“0x1”,“0x667df9d7”,“0x1”,“0xeb”,“0x50”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xeb”,“0x50”,“0x5”,“0x197”,“0x1”,“0x9”,“0x170”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x1970005”,“0x1”,“0x8”,“0x1”,“0x2286a7500”,“0x6f081c440”,“0x5f5e100”,“0xe8a88c0”,“0x7”,“0x2c”,“0x2dc6c0”,“0x46”,“0x2dc6c0”,“0x65”,“0x7a120”,“0x45”,“0x2625a0”,“0x85”,“0x6”,“0xeb”,“0x50”,“0xf0”,“0xa0”,“0x2”,“0xf3”,“0x3c”,“0xf4”,“0x28”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x1740009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x197”,“0x1”,“0x667df9d7”,“0x1”,“0xf0”,“0xa0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xf0”,“0xa0”,“0x5”,“0x197”,“0x1”,“0x9”,“0x174”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x1970005”,“0x1”,“0x8”,“0x1”,“0x22bfdfc00”,“0x6fe18c540”,“0x2625a00”,“0xf387c0”,“0x8”,“0x2c”,“0x2dc6c0”,“0x46”,“0x2dc6c0”,“0x65”,“0x7a120”,“0x45”,“0x2625a0”,“0x85”,“0x6”,“0xeb”,“0x50”,“0xf0”,“0xa0”,“0xf3”,“0x3c”,“0x1”,“0xf4”,“0x28”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x1780009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x197”,“0x1”,“0x667df9d7”,“0x1”,“0xf3”,“0x3c”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xf3”,“0x3c”,“0x5”,“0x197”,“0x1”,“0x9”,“0x178”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x1970005”,“0x1”,“0x8”,“0x1”,“0x22e605600”,“0x6ff0c4d00”,“0x0”,“0x0”,“0x9”,“0x2c”,“0x2dc6c0”,“0x46”,“0x2dc6c0”,“0x65”,“0x7a120”,“0x45”,“0x2625a0”,“0x85”,“0x6”,“0xeb”,“0x50”,“0xf0”,“0xa0”,“0xf3”,“0x3c”,“0xf4”,“0x28”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x17f0009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x197”,“0x1”,“0x667df9d7”,“0x1”,“0xf4”,“0x28”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xf4”,“0x28”,“0x5”,“0x197”,“0x1”,“0x9”,“0x17f”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x20c0005”,“0x1”,“0x3”,“0x1”,“0x419ff510”,“0x3f52f074”,“0x4323800”,“0xdca394e0”,“0x5”,“0x68”,“0x2”,“0x46”,“0x30d40”,“0x45”,“0x493e0”,“0x2c”,“0x927c0”,“0xf0”,“0x2”,“0x4”,“0xf4”,“0x4”,“0xf3”,“0x10”,“0xed”,“0xc”,“0xee”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x3670009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x20c”,“0x1”,“0x667dfd13”,“0x1”,“0xf0”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xf0”,“0x2”,“0x5”,“0x20c”,“0x1”,“0x9”,“0x367”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x20c0005”,“0x1”,“0x3”,“0x1”,“0x420dd210”,“0x40b917f4”,“0x3c45b00”,“0xdb3d6d60”,“0x6”,“0x68”,“0x2”,“0x46”,“0x30d40”,“0x45”,“0x493e0”,“0x2c”,“0x927c0”,“0xf0”,“0x2”,“0xee”,“0x2”,“0x3”,“0xf4”,“0x4”,“0xf3”,“0x10”,“0xed”,“0xc”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x37e0009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x20c”,“0x1”,“0x667dfd13”,“0x1”,“0xee”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xee”,“0x2”,“0x5”,“0x20c”,“0x1”,“0x9”,“0x37e”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x2100005”,“0x1”,“0x3”,“0x1”,“0x419ff510”,“0x3f52f074”,“0x4323800”,“0xdca394e0”,“0x5”,“0x68”,“0x2”,“0x46”,“0x30d40”,“0x45”,“0x493e0”,“0x2c”,“0x927c0”,“0xf0”,“0x2”,“0x4”,“0xf4”,“0x4”,“0xf3”,“0x10”,“0xed”,“0xc”,“0xee”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x3780009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x210”,“0x1”,“0x667dfd35”,“0x1”,“0xf0”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xf0”,“0x2”,“0x5”,“0x210”,“0x1”,“0x9”,“0x378”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x2100005”,“0x1”,“0x3”,“0x1”,“0x420dd210”,“0x40b917f4”,“0x3c45b00”,“0xdb3d6d60”,“0x6”,“0x68”,“0x2”,“0x46”,“0x30d40”,“0x45”,“0x493e0”,“0x2c”,“0x927c0”,“0xf0”,“0x2”,“0xee”,“0x2”,“0x3”,“0xf4”,“0x4”,“0xf3”,“0x10”,“0xed”,“0xc”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x3880009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x210”,“0x1”,“0x667dfd35”,“0x1”,“0xee”,“0x2”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xee”,“0x2”,“0x5”,“0x210”,“0x1”,“0x9”,“0x388”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0x20c0005”,“0x1”,“0x3”,“0x1”,“0x44a10010”,“0x1183e6ef4”,“0x1312d00”,“0x3b81660”,“0x7”,“0x68”,“0x2”,“0x46”,“0x30d40”,“0x45”,“0x493e0”,“0x2c”,“0x927c0”,“0xf0”,“0x2”,“0xee”,“0x2”,“0xed”,“0xc”,“0x2”,“0xf4”,“0x4”,“0xf3”,“0x10”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x39c0009”,“0x2”,“0x5”,“0x6d”,“0x0”,“0x5”,“0x20c”,“0x1”,“0x667dfe13”,“0x1”,“0xed”,“0xc”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x44656c6976657279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x5”,“0x6d”,“0x0”,“0x1”,“0xed”,“0xc”,“0x5”,“0x20c”,“0x1”,“0x9”,“0x39c”,“0x1”,“0xa4”,“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”],“keys”:[“0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0xa”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”,“0x1”,“0x0”],“keys”:[“0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1”,“0xac0fce058a5d2a7416b43646b71fdde779109a93eaa1ca4b3c2cc5ca92662”],“from_address”:“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”},{“data”:[“0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad”,“0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8”,“0x359e665a829”,“0x0”],“keys”:[“0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9”],“from_address”:“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”}] | 0x290217ee1b05debca3a34103dbaa479a72c102e14197ed8e3adf7eebc0437ad | 2024-06-28T00:04:41.000Z | 0xac0fce058a5d2a7416b43646b71fdde779109a93eaa1ca4b3c2cc5ca92662 | INVOKE | 190 | 3684652394537 | [] | WEI | ACCEPTED_ON_L2 | SUCCEEDED | |||||||
| 72833 | 600000000000000 | 1 | [“0x1”,“0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d”,“0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e”,“0x3”,“0x227b3421cf657e56d3ffcbf5006264f1c22bcc07e950bb2f5b7e9638e9c5c77”,“0x40e8d220b7139d4400”,“0x0”] | [“0x1d70a80c55fa33bd1fabc6965b58fc66beac2aa1f0cd5d3c15406311b3edfde”,“0x24b32a7ea9578a22919447101b08ecec2ec41fda6c2f6a71af1573a5cbb4e89”] | 0x46daa4b2a242850973e72891622419d52e4e0c2944b592f66afc186052a0c8b | 652981 | INVOKE | [{“data”:[“0x213c67ed78bc280887234fe5ed5e77272465317978ae86c25a71531d9332a2d”,“0x227b3421cf657e56d3ffcbf5006264f1c22bcc07e950bb2f5b7e9638e9c5c77”,“0x40e8d220b7139d4400”,“0x0”],“keys”:[“0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9”],“from_address”:“0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d”},{“data”:[“0x1”,“0x1”,“0x1”],“keys”:[“0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1”,“0xd47b8c7703ba4a5d35781a356ef610ac6d54149f237570187c3f31683ef1e”],“from_address”:“0x213c67ed78bc280887234fe5ed5e77272465317978ae86c25a71531d9332a2d”},{“data”:[“0x213c67ed78bc280887234fe5ed5e77272465317978ae86c25a71531d9332a2d”,“0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8”,“0x16cad06025”,“0x0”],“keys”:[“0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9”],“from_address”:“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”}] | 0x213c67ed78bc280887234fe5ed5e77272465317978ae86c25a71531d9332a2d | 2024-06-28T00:04:41.000Z | 0xd47b8c7703ba4a5d35781a356ef610ac6d54149f237570187c3f31683ef1e | INVOKE | 227 | 97891934245 | [] | WEI | ACCEPTED_ON_L2 | SUCCEEDED | |||||||
| 159 | 2229014727920 | 1 | [“0x1”,“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”,“0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126”,“0xd”,“0x45786368616e676543726577”,“0xb”,“0x1”,“0xb35”,“0x3”,“0x610a”,“0x610b”,“0x610c”,“0x1”,“0x0”,“0x2”,“0x689”,“0x78d”] | [“0x1690fa7448e9649a97313cd2c4f7c2a80bf558dbaab152869272348a9c251d7”,“0x626da428978f0f36c86e5d0a44c0a2bb5aa6dead9c5b9d8e395c17e06bb83ff”] | 0x46daa4b2a242850973e72891622419d52e4e0c2944b592f66afc186052a0c8b | 652981 | INVOKE | [{“data”:[“0x0”,“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”,“0xc8d”,“0x0”],“keys”:[“0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9”],“from_address”:“0x7280a807c8b79379bec87919433b7b836b93a92e6d71b24ee99f4ffe33dd337”},{“data”:[“0x1”,“0xc8d0001”,“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x43726577”,“0x1”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xc8d0001”,“0x6”,“0x13”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x4c6f636174696f6e”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xc8d0001”,“0x1”,“0x3”,“0x0”,“0x1”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x53686970”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x2”,“0xc8d0001”,“0x1”,“0xb”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x496e76656e746f7279”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x6890002”,“0x1”,“0xc8d”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x436f6e74726f6c”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x78d0002”,“0x1”,“0xc8d”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x436f6e74726f6c”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xc8d0001”,“0x6”,“0x13”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x4c6f636174696f6e”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xb350001”,“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”,“0x3”,“0x610a”,“0x610b”,“0x610c”,“0x667d64a1”,“0x667dfcfb”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x43726577”,“0x1”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xc8d0001”,“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”,“0x2”,“0x689”,“0x78d”,“0x667d78a5”,“0x667dfcfb”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”,“0x0”],“keys”:[“0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef”,“0x43726577”,“0x1”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0xb35”,“0x5”,“0x610a”,“0x610b”,“0x610c”,“0x689”,“0x78d”,“0x3”,“0x610a”,“0x610b”,“0x610c”,“0x1”,“0xc8d”,“0x0”,“0x2”,“0x689”,“0x78d”,“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”],“keys”:[“0x11179a9c5e4311bfde19c5306ff4358bf284a55d5069e8187cb6129c9b47a2a”],“from_address”:“0x422d33a3638dcc4c62e72e1d6942cd31eb643ef596ccac2351e0e21f6cd4bf4”},{“data”:[“0x1”,“0x1”,“0x0”],“keys”:[“0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1”,“0xbc05136d2b700000c0657334bb155882dee8184483a6771752a2066e930f8d”],“from_address”:“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”},{“data”:[“0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561”,“0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8”,“0xb56d1e7cbb”,“0x0”],“keys”:[“0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9”],“from_address”:“0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7”}] | 0x59a67b550ac4543a0afddf2fe4e20f0e54d498e4b9f701f527ae22e32e36561 | 2024-06-28T00:04:41.000Z | 0xbc05136d2b700000c0657334bb155882dee8184483a6771752a2066e930f8d | INVOKE | 13 | 779219795131 | [] | WEI | ACCEPTED_ON_L2 | SUCCEEDED |
Example Query
Example Query
Query with partition filter