Skip to main content

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_stakeTokenSTRINGContract 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_stakeTokenAmountSTRINGQuantity of stake tokens deposited by the user in the smallest unit (wei). Represented as a string to preserve precision for large token amounts.
in_shareAmountSTRINGQuantity of shares minted or redeemed in the protocol operation. Integer value representing the share amount in smallest unit (wei).
addressremovedlog_indexin_accountblock_numberin_stakeTokenin_shareAmountblock_timestamptransaction_hashin_stakeTokenAmount
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse10xc998eb9631eff829c149a300fe2848b301a3553023302460x00000000000000000000000000000000000000002728475708404690202024-06-04T18:40:19.000Z0x2f47538977fcb936645a952239cc8f0a17aa250b0f30e605ea5a9569faaef720273000000000000000
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse160x564c09ca810113a3ff7182706bbdd77fc99338b723294930x00000000000000000000000000000000000000001317463984915407552024-06-04T16:34:49.000Z0xc8074cc06f0cd0c07b7c13feaee4beefd64234a9119f229e821337afda45723e131820000000000000
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse40xaba7514803e5a1b743f7768256e5227ed5b35aea23273440xbdad407f77f44f7da6684b416b1951eca461fb078257393652609098503732024-06-04T10:36:39.000Z0xd98b5b863e44c8a4c44037cd5fc76b968a7b192e1c5ce4e21bc675a62762f166807043446000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.DepositManagerV2_Deposit_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_stakeTokenSTRINGContract 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_checkpointIndexSTRINGSequential identifier for the withdrawal checkpoint being finalized in the DepositManagerV2 contract. Numeric string value starting from 0, incremented for each new checkpoint period.
in_accumulatedStakeTokenAmountSTRINGCumulative 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_accumulatedShareAmountSTRINGCumulative 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_accumulatedEquivalentAssetAmountSTRINGCumulative 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.
addressremovedlog_indexblock_numberin_stakeTokenblock_timestamptransaction_hashin_checkpointIndexin_accumulatedShareAmountin_accumulatedStakeTokenAmountin_accumulatedEquivalentAssetAmount
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse123528590x00000000000000000000000000000000000000002024-06-07T09:29:09.000Z0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d591574579202909878274255748290600000000000057482906000000000000
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse223528590xec901da9c68e90798bbbb74c11406a32a70652c32024-06-07T09:29:09.000Z0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d591369378425755634063777363209497000000000000369529342247800000000
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse323528590xbdad407f77f44f7da6684b416b1951eca461fb072024-06-07T09:29:09.000Z0x2a00f5020253109e1c68b655470d3522f7ee7345342f69a6c389d1fde5792d591913051267254834784725898915036889100000000000091557428851057000000000
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.DepositManagerV2_FinalizeWithdrawCheckpoint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DepositManagerV2_Refund_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.DepositManagerV2_Refund_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DepositManagerV2_UpdateTokenStatus_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_stakeTokenSTRINGContract 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_minDepositAmountSTRING-
in_depositPausedBOOL-
in_feeReceiverSTRING-
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.DepositManagerV2_UpdateTokenStatus_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_stakeTokenSTRINGContract 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_withdrawReceiverSTRINGWallet 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_stakeTokenAmountSTRINGAmount 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_checkpointIndexSTRINGCheckpoint identifier associated with the withdrawal event. Represented as a sequential string integer starting from ‘0’.
addressremovedlog_indexblock_numberin_stakeTokenblock_timestamptransaction_hashin_checkpointIndexin_stakeTokenAmountin_withdrawReceiver
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse423169920xec901da9c68e90798bbbb74c11406a32a70652c32024-06-03T05:51:19.000Z0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b913632094970000000000000x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse223169920x00000000000000000000000000000000000000002024-06-03T05:51:19.000Z0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b91574829060000000000000x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8
0x3acb6c0169a37885230852ed0ecf5126bbe8be8afalse623169920xbdad407f77f44f7da6684b416b1951eca461fb072024-06-03T05:51:19.000Z0xe55bda45bb86f9f913460d1037814fedf1433c8cf88340dc9efff8d8bac490b91891503688910000000000000x46963adb2e45b327ad24ae2c3dd28a8e3d4e90d8
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.DepositManagerV2_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Manager_Refund_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.Manager_Refund_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_mTokenSTRINGContract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_acceptTokenInfoARRAY<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_withdrawQueueSTRINGContract 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.
addressremovedin_mTokenlog_indexblock_numberblock_timestampin_withdrawQueuetransaction_hashin_acceptTokenInfo
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0x649d4524897ce85a864dc2a2d5a11adb3044f44a1221685682024-05-17T01:33:59.000Z0x00000000000000000000000000000000000000000x7be8563b4ef38f145eb9341e0d453cf5f4a54252a53f07196f08ec059c81e7b9[]
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0xaccbc418a994a27a75644d8d591afc22faba594e5921685702024-05-17T01:34:19.000Z0x00000000000000000000000000000000000000000xaf752558d971e376f5e0fd4b13497cb253c698e792ee90ad3d43ee2d458b4ada[]
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0x1468177dbcb2a772f3d182d2f1358d442b5530891821685722024-05-17T01:34:39.000Z0x00000000000000000000000000000000000000000x51c02cdfce654bcc8bd1410393ca39e760d8ac7b79c74ff72175bcdda0f2ae53[]
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.Manager_RegisterChannel_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_operatorSTRINGAddress authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.
in_shareReceiverSTRINGAddress that receives staking shares (mToken) from this staking operation. Hex-encoded, 0x-prefixed 40-character Ethereum address.
in_chainidSTRINGChain identifier for the source blockchain of the staking operation. Numeric string format (e.g., ‘56’ for BNB Chain, ‘1’ for Ethereum mainnet).
in_mTokenSTRINGContract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_stakeTokenSTRINGContract 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_assetAmountSTRINGAmount of asset tokens involved in the operation. Integer value representing token quantity in smallest unit.
in_shareAmountSTRINGQuantity of shares minted or redeemed in the protocol operation. Integer value representing the share amount in smallest unit (wei).
in_refundSTRINGRefund 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_refundReceiverSTRINGAddress designated to receive any refunded tokens from the staking operation. Typically the zero address when no refund is expected or issued.
in_guidSTRINGGlobally unique identifier for the LayerZero cross-chain message. 66-character hex string including 0x prefix.
addressin_guidremovedin_mTokenin_refundlog_indexin_chainidin_operatorblock_numberin_stakeTokenin_assetAmountin_shareAmountblock_timestampin_shareReceivertransaction_hashin_refundReceiver
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee40x35eefb86927f3f4a31bca4d2db83103b71656bd768608a869f54b6127f223646false0x1468177dbcb2a772f3d182d2f1358d442b55308902560x8ff636868fec5ad39b7afbcfde2ca9e60d5ff87022836450x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c38000000000000000379830665825140262024-05-30T09:13:29.000Z0x76ceb24688ddd49137bc12b084598c4619d486510x3b43413819efa86c16c2b926a67c7564e0ef8ec035115181bd6315c75990ab220x0000000000000000000000000000000000000000
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee40x29411e6354a394a7c45575157a1eca376a58ac53d94ebbc926319278af466a85false0x1468177dbcb2a772f3d182d2f1358d442b55308907560x8ff636868fec5ad39b7afbcfde2ca9e60d5ff87022855890x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c983357800000000000098291959978511872202024-05-30T14:37:29.000Z0x1b65733bb3c8e5296858f1eb8cdd098aba7126860xeb364ccac69acc28645980109a57c29e73ee1c0eff100b9c4ffd177bd75d9e5b0x0000000000000000000000000000000000000000
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee40xf8f6055eadef9245d761c0d350cdb5ab37d04d283acda998cc28e3c9571112d2false0x1468177dbcb2a772f3d182d2f1358d442b55308904560x8ff636868fec5ad39b7afbcfde2ca9e60d5ff87022832650x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c1190000000000000001189484483086976242024-05-30T08:10:09.000Z0xdefddcc067f990e8ee8a2b4c79c8050872b9b4140xd2a14d9cb76ff60cd9fbe24282c8f97fb24adb8f98d315390a108a7e2f57b7070x0000000000000000000000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.Manager_Stake_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_mTokenSTRINGContract address of the mToken (market token) in a lending protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_chainIdSTRINGBlockchain 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_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_stakePausedBOOLBoolean 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_withdrawPausedBOOLIndicates 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_minDepositAmountSTRINGMinimum 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).
addressremovedin_tokenin_mTokenlog_indexin_chainIdblock_numberin_stakePausedblock_timestamptransaction_hashin_withdrawPausedin_minDepositAmount
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0x2260fac5e5542a773aa44fbcfedf7c193bc2c5990x1468177dbcb2a772f3d182d2f1358d442b5530892612168954false2024-05-17T02:38:19.000Z0x0f1f26cceee2c0abe0d8f406e343218d6a5cfbbc1b77e9e9e5cf22e1dfa21b2etrue0
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0x2260fac5e5542a773aa44fbcfedf7c193bc2c5990x1468177dbcb2a772f3d182d2f1358d442b5530893912168794false2024-05-17T02:11:39.000Z0xe84603ef9fdea222b46de17903f759c31579e7ca7679a66f75eb7bf3ccca9500true1000000
0xc0d14a4dc2f91cf0ea761e16474d6e46fa986ee4false0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c0x1468177dbcb2a772f3d182d2f1358d442b5530898562168799false2024-05-17T02:12:29.000Z0x4d1a11837cda524e69a3f9f4a696645e93b4b5a3f80349f955fd3d8290eebf56true10000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.manta_v1_manta.Manager_TokenStatusChange_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100