Tables
DepositManagerV2_Deposit_event
Deposit events from Manta Network’s DepositManagerV2 staking contract, recording user accounts depositing stake tokens in exchange for protocol shares. Used for analyzing staking activity, tracking token flows, and calculating share-to-token exchange rates over time.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_account | STRING | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_stakeToken | STRING | Contract address of the token being staked or deposited. Hex-encoded, 0x-prefixed, 42-character string, or the zero address (0x0000000000000000000000000000000000000000) for native token operations. |
in_stakeTokenAmount | STRING | Quantity of stake tokens deposited by the user in the smallest unit (wei). Represented as a string to preserve precision for large token amounts. |
in_shareAmount | STRING | Quantity of shares minted or redeemed in the protocol operation. Integer value representing the share amount in smallest unit (wei). |
Sample Data
Sample Data
| address | removed | log_index | in_account | block_number | in_stakeToken | in_shareAmount | block_timestamp | transaction_hash | in_stakeTokenAmount |
|---|---|---|---|---|---|---|---|---|---|
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 1 | 0xc998eb9631eff829c149a300fe2848b301a35530 | 2330246 | 0x0000000000000000000000000000000000000000 | 272847570840469020 | 2024-06-04T18:40:19.000Z | 0x2f47538977fcb936645a952239cc8f0a17aa250b0f30e605ea5a9569faaef720 | 273000000000000000 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 16 | 0x564c09ca810113a3ff7182706bbdd77fc99338b7 | 2329493 | 0x0000000000000000000000000000000000000000 | 131746398491540755 | 2024-06-04T16:34:49.000Z | 0xc8074cc06f0cd0c07b7c13feaee4beefd64234a9119f229e821337afda45723e | 131820000000000000 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 4 | 0xaba7514803e5a1b743f7768256e5227ed5b35aea | 2327344 | 0xbdad407f77f44f7da6684b416b1951eca461fb07 | 825739365260909850373 | 2024-06-04T10:36:39.000Z | 0xd98b5b863e44c8a4c44037cd5fc76b968a7b192e1c5ce4e21bc675a62762f166 | 807043446000000000000 |
Example Query
Example Query
Query with partition filter
DepositManagerV2_FinalizeWithdrawCheckpoint_event
Withdrawal checkpoint finalization events from Manta’s DepositManagerV2 contract, tracking accumulated stake token amounts, shares, and equivalent asset values at each checkpoint index. Used for analyzing withdrawal processing and stake token conversions across different asset types.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_stakeToken | STRING | Contract address of the token being staked or deposited. Hex-encoded, 0x-prefixed, 42-character string, or the zero address (0x0000000000000000000000000000000000000000) for native token operations. |
in_checkpointIndex | STRING | Sequential identifier for the withdrawal checkpoint being finalized in the DepositManagerV2 contract. Numeric string value starting from 0, incremented for each new checkpoint period. |
in_accumulatedStakeTokenAmount | STRING | Cumulative amount of stake tokens withdrawn up to and including this checkpoint, denominated in the token’s smallest unit (wei). Represents the running total of actual stake token balances processed for withdrawal. |
in_accumulatedShareAmount | STRING | Cumulative amount of shares recorded at this withdrawal checkpoint, denominated in the smallest unit (wei). Represents the running total of share-based claims across all withdrawals processed up to this checkpoint index. |
in_accumulatedEquivalentAssetAmount | STRING | Cumulative asset-equivalent value recorded at this withdrawal checkpoint, denominated in the base asset unit with 18 decimal precision. Represents the total normalized asset amount across all withdrawals up to this checkpoint index. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_stakeToken | block_timestamp | transaction_hash | in_checkpointIndex | in_accumulatedShareAmount | in_accumulatedStakeTokenAmount | in_accumulatedEquivalentAssetAmount |
|---|---|---|---|---|---|---|---|---|---|---|
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 1 | 2352859 | 0x0000000000000000000000000000000000000000 | 2024-06-07T09:29:09.000Z | 0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d59 | 1 | 57457920290987827425 | 57482906000000000000 | 57482906000000000000 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 2 | 2352859 | 0xec901da9c68e90798bbbb74c11406a32a70652c3 | 2024-06-07T09:29:09.000Z | 0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d59 | 1 | 369378425755634063777 | 363209497000000000000 | 369529342247800000000 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 3 | 2352859 | 0xbdad407f77f44f7da6684b416b1951eca461fb07 | 2024-06-07T09:29:09.000Z | 0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d59 | 1 | 91305126725483478472589 | 89150368891000000000000 | 91557428851057000000000 |
Example Query
Example Query
Query with partition filter
DepositManagerV2_Refund_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_account | STRING | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
DepositManagerV2_UpdateTokenStatus_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_stakeToken | STRING | Contract address of the token being staked or deposited. Hex-encoded, 0x-prefixed, 42-character string, or the zero address (0x0000000000000000000000000000000000000000) for native token operations. |
in_minDepositAmount | STRING | - |
in_depositPaused | BOOL | - |
in_feeReceiver | STRING | - |
in_fee | STRING | Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
DepositManagerV2_Withdraw_event
Withdrawal events from Manta Network’s DepositManagerV2 contract capturing unstaked token amounts, recipient addresses, and checkpoint indices. Useful for tracking staking withdrawals across different token types including native tokens (zero address) and ERC-20 stake tokens.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_stakeToken | STRING | Contract address of the token being staked or deposited. Hex-encoded, 0x-prefixed, 42-character string, or the zero address (0x0000000000000000000000000000000000000000) for native token operations. |
in_withdrawReceiver | STRING | Wallet address designated to receive the withdrawn stake tokens from the DepositManagerV2 contract. Hex-encoded, 0x-prefixed 40-character EVM address that receives the unstaked token amount. |
in_stakeTokenAmount | STRING | Amount of staked tokens being withdrawn, denominated in the smallest unit of the token (wei-equivalent). String-formatted to preserve precision for large token amounts with 18+ decimal places. |
in_checkpointIndex | STRING | Checkpoint identifier associated with the withdrawal event. Represented as a sequential string integer starting from ‘0’. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_stakeToken | block_timestamp | transaction_hash | in_checkpointIndex | in_stakeTokenAmount | in_withdrawReceiver |
|---|---|---|---|---|---|---|---|---|---|
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 4 | 2316992 | 0xec901da9c68e90798bbbb74c11406a32a70652c3 | 2024-06-03T05:51:19.000Z | 0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b9 | 1 | 363209497000000000000 | 0x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 2 | 2316992 | 0x0000000000000000000000000000000000000000 | 2024-06-03T05:51:19.000Z | 0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b9 | 1 | 57482906000000000000 | 0x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8 |
| 0x3acb6c0169a37885230852ed0ecf5126bbe8be8a | false | 6 | 2316992 | 0xbdad407f77f44f7da6684b416b1951eca461fb07 | 2024-06-03T05:51:19.000Z | 0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b9 | 1 | 89150368891000000000000 | 0x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8 |
Example Query
Example Query
Query with partition filter
Manager_Refund_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_account | STRING | Account address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
Manager_RegisterChannel_event
Channel registration events from Manta’s Manager contract tracking mToken deployments and their associated withdrawal queue addresses. Used for monitoring new token channel activations and protocol expansion on Manta Network.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_mToken | STRING | Contract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_acceptTokenInfo | ARRAY<STRUCT<addr STRING, chainId STRING, decimals INT64, minDepositAmount STRING, tokenReceiverInfos ARRAY<STRUCT<addr STRING, ratio STRING>>>> | Nested record containing information about tokens accepted by the registered channel. Empty in most samples, suggesting optional token acceptance criteria or configurations. |
in_withdrawQueue | STRING | Contract address of the withdrawal queue associated with the registered channel on Manta. Currently set to the zero address (0x00..00) in all samples, indicating no active withdrawal queue is configured. |
Sample Data
Sample Data
| address | removed | in_mToken | log_index | block_number | block_timestamp | in_withdrawQueue | transaction_hash | in_acceptTokenInfo |
|---|---|---|---|---|---|---|---|---|
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0x649d4524897ce85a864dc2a2d5a11adb3044f44a | 12 | 2168568 | 2024-05-17T01:33:59.000Z | 0x0000000000000000000000000000000000000000 | 0x7be8563b4ef38f145eb9341e0d453cf5f4a54252a53f07196f08ec059c81e7b9 | [] |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0xaccbc418a994a27a75644d8d591afc22faba594e | 59 | 2168570 | 2024-05-17T01:34:19.000Z | 0x0000000000000000000000000000000000000000 | 0xaf752558d971e376f5e0fd4b13497cb253c698e792ee90ad3d43ee2d458b4ada | [] |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 18 | 2168572 | 2024-05-17T01:34:39.000Z | 0x0000000000000000000000000000000000000000 | 0x51c02cdfce654bcc8bd1410393ca39e760d8ac7b79c74ff72175bcdda0f2ae53 | [] |
Example Query
Example Query
Query with partition filter
Manager_Stake_event
Manager staking events from Manta protocol tracking cross-chain asset deposits where users stake tokens (BNB Chain, Ethereum) to receive yield-bearing mToken shares. Records include deposited asset amounts, minted share quantities, operator addresses, and cross-chain identifiers for analyzing staking activity and share-to-asset conversion rates.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_operator | STRING | Address authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string. |
in_shareReceiver | STRING | Address that receives staking shares (mToken) from this staking operation. Hex-encoded, 0x-prefixed 40-character Ethereum address. |
in_chainid | STRING | Chain identifier for the source blockchain of the staking operation. Numeric string format (e.g., ‘56’ for BNB Chain, ‘1’ for Ethereum mainnet). |
in_mToken | STRING | Contract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_stakeToken | STRING | Contract address of the token being staked or deposited. Hex-encoded, 0x-prefixed, 42-character string, or the zero address (0x0000000000000000000000000000000000000000) for native token operations. |
in_assetAmount | STRING | Amount of asset tokens involved in the operation. Integer value representing token quantity in smallest unit. |
in_shareAmount | STRING | Quantity of shares minted or redeemed in the protocol operation. Integer value representing the share amount in smallest unit (wei). |
in_refund | STRING | Refund amount returned to the user if the stake operation could not be fully executed. Typically zero in successful stakes, with non-zero values indicating partial execution or failure. |
in_refundReceiver | STRING | Address designated to receive any refunded tokens from the staking operation. Typically the zero address when no refund is expected or issued. |
in_guid | STRING | Globally unique identifier for the LayerZero cross-chain message. 66-character hex string including 0x prefix. |
Sample Data
Sample Data
| address | in_guid | removed | in_mToken | in_refund | log_index | in_chainid | in_operator | block_number | in_stakeToken | in_assetAmount | in_shareAmount | block_timestamp | in_shareReceiver | transaction_hash | in_refundReceiver |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | 0x35eefb86927f3f4a31bca4d2db83103b71656bd768608a869f54b6127f223646 | false | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 0 | 2 | 56 | 0x8ff636868fec5ad39b7afbcfde2ca9e60d5ff870 | 2283645 | 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c | 38000000000000000 | 37983066582514026 | 2024-05-30T09:13:29.000Z | 0x76ceb24688ddd49137bc12b084598c4619d48651 | 0x3b43413819efa86c16c2b926a67c7564e0ef8ec035115181bd6315c75990ab22 | 0x0000000000000000000000000000000000000000 |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | 0x29411e6354a394a7c45575157a1eca376a58ac53d94ebbc926319278af466a85 | false | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 0 | 7 | 56 | 0x8ff636868fec5ad39b7afbcfde2ca9e60d5ff870 | 2285589 | 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c | 9833578000000000000 | 9829195997851187220 | 2024-05-30T14:37:29.000Z | 0x1b65733bb3c8e5296858f1eb8cdd098aba712686 | 0xeb364ccac69acc28645980109a57c29e73ee1c0eff100b9c4ffd177bd75d9e5b | 0x0000000000000000000000000000000000000000 |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | 0xf8f6055eadef9245d761c0d350cdb5ab37d04d283acda998cc28e3c9571112d2 | false | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 0 | 4 | 56 | 0x8ff636868fec5ad39b7afbcfde2ca9e60d5ff870 | 2283265 | 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c | 119000000000000000 | 118948448308697624 | 2024-05-30T08:10:09.000Z | 0xdefddcc067f990e8ee8a2b4c79c8050872b9b414 | 0xd2a14d9cb76ff60cd9fbe24282c8f97fb24adb8f98d315390a108a7e2f57b707 | 0x0000000000000000000000000000000000000000 |
Example Query
Example Query
Query with partition filter
Manager_TokenStatusChange_event
Token configuration change events from Manta protocol’s Manager contract tracking staking/withdrawal pause states, minimum deposit thresholds, and mToken mappings across chains. Used for monitoring protocol parameter updates and cross-chain token deployment status.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_mToken | STRING | Contract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_chainId | STRING | Blockchain network identifier for the destination or target chain in a cross-chain operation. Numeric string representing the chain ID as defined in EIP-155. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_stakePaused | BOOL | Boolean flag indicating whether staking operations are paused for the specified token on the given chain. When true, users cannot deposit or stake the token into the protocol. |
in_withdrawPaused | BOOL | Indicates whether withdrawals are paused for the specified token on the given chain. When true, users cannot withdraw their staked tokens until the protocol re-enables withdrawals. |
in_minDepositAmount | STRING | Minimum deposit amount required for staking the specified token, denominated in the token’s smallest unit (wei for EVM tokens). Often set to zero when disabled, or values like 1000000 (1 USDC) or 100000000000000000000 (100 tokens with 18 decimals). |
Sample Data
Sample Data
| address | removed | in_token | in_mToken | log_index | in_chainId | block_number | in_stakePaused | block_timestamp | transaction_hash | in_withdrawPaused | in_minDepositAmount |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 26 | 1 | 2168954 | false | 2024-05-17T02:38:19.000Z | 0x0f1f26cceee2c0abe0d8f406e343218d6a5cfbbc1b77e9e9e5cf22e1dfa21b2e | true | 0 |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599 | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 39 | 1 | 2168794 | false | 2024-05-17T02:11:39.000Z | 0xe84603ef9fdea222b46de17903f759c31579e7ca7679a66f75eb7bf3ccca9500 | true | 1000000 |
| 0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4 | false | 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c | 0x1468177dbcb2a772f3d182d2f1358d442b553089 | 8 | 56 | 2168799 | false | 2024-05-17T02:12:29.000Z | 0x4d1a11837cda524e69a3f9f4a696645e93b4b5a3f80349f955fd3d8290eebf56 | true | 10000000000000000 |
Example Query
Example Query
Query with partition filter