Tables
stablecoin_Deposit_event
Deposit events from Circle’s stablecoin contract on Aptos, tracking inbound transfers with amount, store address, and owner account. Used for analyzing stablecoin inflows, user deposit patterns, and liquidity provisioning activity.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_store_owner | STRING | Aptos account address that owns the token store receiving the deposit. Hex-encoded, 0x-prefixed 64-character string representing the account on Aptos blockchain. |
in_store | STRING | Fungible asset store identifier where the asset is held. Hex-encoded, 0x-prefixed, 66-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
| data | in_store | in_amount | event_type | event_index | block_height | in_store_owner | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“66846”,“store”:“0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589”,“store_owner”:“0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054”} | 0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589 | 66846 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Deposit | 34 | 298907200 | 0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054 | 2025-03-04T21:53:41.897Z | 0 | 0xbc24d93bc2aabcde5f266ba95784c5abeb0026a85a3c612e2b8c3f41695aa533 | 0x0 | 0 |
| {“amount”:“10663”,“store”:“0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589”,“store_owner”:“0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054”} | 0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589 | 10663 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Deposit | 36 | 298701728 | 0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054 | 2025-03-04T11:08:38.700Z | 0 | 0x03be18b644476a774b0575c2117e566557c37b514005329d12ae24a397a0ea12 | 0x0 | 0 |
| {“amount”:“750843”,“store”:“0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589”,“store_owner”:“0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054”} | 0x110f494d562356cf63061a933fee9a62a229a54ba4823233be9538cf3ba68589 | 750843 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Deposit | 37 | 298824776 | 0xf5f30d40dab76516fc060fac9503a5610b7d4dd8a83a57612cded382fe32e054 | 2025-03-04T17:30:15.776Z | 0 | 0x53735096588b9e4828fa6971da212e8fff42e642dd6f5489dc9427baef91aabf | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
stablecoin_Withdraw_event
Circle stablecoin withdrawal events from Aptos blockchain, capturing when users withdraw tokens from their store with withdrawal amounts, store addresses, and owner accounts. Useful for tracking stablecoin redemption activity and user flow analysis.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_store_owner | STRING | Aptos account address that owns the store from which the stablecoin withdrawal occurred. Hex-encoded, 0x-prefixed 64-character string representing the owner’s address on Aptos. |
in_store | STRING | Fungible asset store identifier where the asset is held. Hex-encoded, 0x-prefixed, 66-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
| data | in_store | in_amount | event_type | event_index | block_height | in_store_owner | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“4861”,“store”:“0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892”,“store_owner”:“0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e”} | 0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892 | 4861 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Withdraw | 24 | 374264138 | 0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e | 2025-06-30T11:45:33.243Z | 0 | 0x999bbce173b87399455ad3132e45d8d2f073a6880ffaa467ef7a166291471dcf | 0x0 | 0 |
| {“amount”:“4925”,“store”:“0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892”,“store_owner”:“0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e”} | 0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892 | 4925 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Withdraw | 27 | 374503614 | 0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e | 2025-06-30T20:10:51.631Z | 0 | 0xd8c24285f078ad1382c3bb18dd24d266c75a61e847b857e3ee6ee2841b058323 | 0x0 | 0 |
| {“amount”:“4869”,“store”:“0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892”,“store_owner”:“0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e”} | 0x1542025d2043a05eaf64d3e20f736d5ab5840ce272d99d7fa8b94a4f7488892 | 4869 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::stablecoin::Withdraw | 27 | 374256237 | 0x983fe110ab9a83bd43da49260d064017af8527826957e7ebd057ba50a7b2458e | 2025-06-30T11:29:02.859Z | 0 | 0x9888900ed28accc19cb098c2038bc0b66383717b93c4cdd6cb84a800848fbc0b | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_DepositForBurn_event
Circle Cross-Chain Transfer Protocol (CCTP) burn events on Aptos tracking USDC burns initiating cross-chain transfers to destination domains (Ethereum domain 3, Avalanche domain 6). Contains depositor accounts, burn amounts, destination recipients, and nonce values for analyzing cross-chain USDC flow patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_nonce | STRING | Unique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros. |
in_burn_token | STRING | Contract address of the token being burned on Aptos as part of the cross-chain transfer. Hex-encoded, 0x-prefixed 64-character Aptos address format. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_depositor | STRING | Address of the user who initiated the deposit or cross-chain transfer. Hex-encoded, 0x-prefixed, 42-character string. |
in_mint_recipient | STRING | Address of the account designated to receive the minted tokens on the destination chain. |
in_destination_domain | STRING | Numeric identifier for the destination blockchain domain in a cross-chain message transfer. String representation of a domain ID that maps to a specific blockchain network within the CCTP protocol. |
in_destination_token_messenger | STRING | Address of the TokenMessenger contract on the destination chain that will handle the minting. Hex-encoded, 0x-prefixed 40-character string for EVM-compatible chains. |
in_destination_caller | STRING | Address authorized to invoke the cross-chain message on the destination chain. Hex-encoded, 0x-prefixed address or zero/null when no caller restriction is specified. |
Sample Data
Sample Data
| data | in_nonce | in_amount | event_type | event_index | block_height | in_depositor | in_burn_token | block_timestamp | sequence_number | transaction_hash | in_mint_recipient | in_destination_caller | in_destination_domain | event_guid_account_address | event_guid_creation_number | in_destination_token_messenger |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“12648356”,“burn_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“depositor”:“0xdc34d2e5b1f1d39806977d59604275cfe58778099e8ce6ebe34260043ab90e0f”,“destination_caller”:“0x0”,“destination_domain”:6,“destination_token_messenger”:“0x1682ae6375c4e4a97e4b583bc394c861a46d8962”,“mint_recipient”:“0x217442b17eb0dad82b55d966ac407f12fb8d10e”,“nonce”:“2183”} | 2183 | 12648356 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::DepositForBurn | 4 | 304124945 | 0xdc34d2e5b1f1d39806977d59604275cfe58778099e8ce6ebe34260043ab90e0f | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-03-15T13:06:36.033Z | 0 | 0xdbba25c0ab29eb8985abde010c26d9303ac421eb57ab21dd90cfd7e0ec05f8b0 | 0x217442b17eb0dad82b55d966ac407f12fb8d10e | 0x0 | 6 | 0x0 | 0 | 0x1682ae6375c4e4a97e4b583bc394c861a46d8962 |
| {“amount”:“55606832”,“burn_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“depositor”:“0x9bfe61e00487dcea0e543148b50bc1eb04f3759b52862184d20148ddd4f828f8”,“destination_caller”:“0x0”,“destination_domain”:6,“destination_token_messenger”:“0x1682ae6375c4e4a97e4b583bc394c861a46d8962”,“mint_recipient”:“0xfff641725fde1102ed1a7aec3ebb2dcac33482ee”,“nonce”:“2192”} | 2192 | 55606832 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::DepositForBurn | 4 | 304238632 | 0x9bfe61e00487dcea0e543148b50bc1eb04f3759b52862184d20148ddd4f828f8 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-03-15T17:50:49.969Z | 0 | 0xcf4c2e77837fcf45a42cb7765962348e5627ef9bc89975b38e2de408ab791910 | 0xfff641725fde1102ed1a7aec3ebb2dcac33482ee | 0x0 | 6 | 0x0 | 0 | 0x1682ae6375c4e4a97e4b583bc394c861a46d8962 |
| {“amount”:“48761027”,“burn_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“depositor”:“0xbbce3696a9c69ea403871a02c73da0297792f90305aef3608628c958285d9972”,“destination_caller”:“0x0”,“destination_domain”:6,“destination_token_messenger”:“0x1682ae6375c4e4a97e4b583bc394c861a46d8962”,“mint_recipient”:“0x905b2ddfb3b0e82f14fe80018ff0b9c3d8757f8e”,“nonce”:“2193”} | 2193 | 48761027 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::DepositForBurn | 4 | 304240111 | 0xbbce3696a9c69ea403871a02c73da0297792f90305aef3608628c958285d9972 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-03-15T17:54:29.434Z | 0 | 0x29db49edd4991c086451dd5e4b10c9c5ff3b009f77de39c66142065b60b1f3d2 | 0x905b2ddfb3b0e82f14fe80018ff0b9c3d8757f8e | 0x0 | 6 | 0x0 | 0 | 0x1682ae6375c4e4a97e4b583bc394c861a46d8962 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_MintAndWithdraw_event
Circle CCTP (Cross-Chain Transfer Protocol) token mint and withdrawal events on Aptos, recording USDC transfers bridged from other chains. Used for analyzing cross-chain stablecoin flows and recipient activity on Aptos.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_mint_recipient | STRING | Address of the account designated to receive the minted tokens on the destination chain. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_mint_token | STRING | Token address on Aptos being minted and withdrawn to the recipient. Hex-encoded, 0x-prefixed 64-character string representing the fungible asset identifier. |
Sample Data
Sample Data
| data | in_amount | event_type | event_index | block_height | in_mint_token | block_timestamp | sequence_number | transaction_hash | in_mint_recipient | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“4399560”,“mint_recipient”:“0x1478b8456c469a3acb0b30d4a271bc1cb06c3a256c0df1fd937f027bcb787dfa”,“mint_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 4399560 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::MintAndWithdraw | 3 | 410933346 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-08-20T10:29:02.966Z | 0 | 0xb0361b305b41afe9fdc0888feb7a0acd6d4f769c58b4fa4d514575857de0e836 | 0x1478b8456c469a3acb0b30d4a271bc1cb06c3a256c0df1fd937f027bcb787dfa | 0x0 | 0 |
| {“amount”:“4308425692”,“mint_recipient”:“0x18ad00465f710bdbb91e1beacbd469d7a5fbae0b4f5c9a3667bdc233f5f3823b”,“mint_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 4308425692 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::MintAndWithdraw | 3 | 410825263 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-08-20T07:19:29.109Z | 0 | 0x6d7131c3bba28b8c4b90ac453708387d7a5cc17aa7f44535ac4e7a1854dc1e05 | 0x18ad00465f710bdbb91e1beacbd469d7a5fbae0b4f5c9a3667bdc233f5f3823b | 0x0 | 0 |
| {“amount”:“15590000”,“mint_recipient”:“0x1bcc35f213aa4c504beeb6919a3c752c40d94fa153cd4a4434d89e7ffa03962b”,“mint_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 15590000 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::MintAndWithdraw | 3 | 411348848 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2025-08-20T22:21:28.903Z | 0 | 0x43345904f45e73bf4eef49ba1ecb6ff365357854b01affa7d70b576cad0f5dcc | 0x1bcc35f213aa4c504beeb6919a3c752c40d94fa153cd4a4434d89e7ffa03962b | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_RemoteTokenMessengerAdded_event
Configuration events recording when Circle’s Cross-Chain Transfer Protocol (CCTP) adds remote token messenger contracts on Aptos, mapping domain identifiers to messenger addresses across supported blockchains. Used for tracking CCTP bridge network expansion and cross-chain messaging infrastructure setup.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_domain | STRING | Circle Cross-Chain Transfer Protocol (CCTP) domain identifier for the remote chain being registered. Numeric identifier where each value represents a specific blockchain (e.g., 0 for Ethereum, 1 for Avalanche) in Circle’s cross-chain messaging system. |
in_token_messenger | STRING | Account address of the TokenMessenger contract managing cross-chain token transfers. Base58-encoded public key for Solana, hex-encoded address with 0x prefix for Aptos. |
Sample Data
Sample Data
| data | in_domain | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_token_messenger | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“domain”:5,“token_messenger”:“0xa65fc943419a5ad590042fd67c9791fd015acf53a54cc823edb8ff81b9ed722e”} | 5 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::RemoteTokenMessengerAdded | 0 | 263982533 | 2024-12-12T18:51:24.772Z | 0 | 0xf15e3f62ef9de6dc91658fe8b77055dcc4dbfd8e688bea25737c2e0266b346cd | 0xa65fc943419a5ad590042fd67c9791fd015acf53a54cc823edb8ff81b9ed722e | 0x0 | 0 |
| {“domain”:6,“token_messenger”:“0x1682ae6375c4e4a97e4b583bc394c861a46d8962”} | 6 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::RemoteTokenMessengerAdded | 0 | 263982445 | 2024-12-12T18:51:07.054Z | 0 | 0xf0e42917e5ee7a98d756649abaf507e8b644220904d762489701135bdcfedd63 | 0x1682ae6375c4e4a97e4b583bc394c861a46d8962 | 0x0 | 0 |
| {“domain”:4,“token_messenger”:“0x57d4eaf1091577a6b7d121202afbd2808134f117”} | 4 | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_messenger::RemoteTokenMessengerAdded | 0 | 263982522 | 2024-12-12T18:51:22.254Z | 0 | 0x5ae120fddd9b49fbad47c82a8749f78f7c38fab6bdd441b6b423a81e0a479f32 | 0x57d4eaf1091577a6b7d121202afbd2808134f117 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_RemoteTokenMessengerRemoved_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_domain | STRING | - |
in_token_messenger | STRING | Account address of the TokenMessenger contract managing cross-chain token transfers. Base58-encoded public key for Solana, hex-encoded address with 0x prefix for Aptos. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_SetBurnLimitPerMessage_event
Configuration change events for maximum token burn amounts per message in Circle’s Cross-Chain Transfer Protocol (CCTP) on Aptos. Tracks administrative updates to burn limits for bridged tokens, useful for monitoring protocol parameter changes and risk controls.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_burn_limit_per_message | STRING | Maximum amount of tokens that can be burned in a single cross-chain message operation, specified in base token units. This value varies by configuration and can be set to zero to disable burning temporarily. |
Sample Data
Sample Data
| data | in_token | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_burn_limit_per_message | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“burn_limit_per_message”:“100000000”,“token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::SetBurnLimitPerMessage | 0 | 274787517 | 2025-01-08T19:13:24.679Z | 0 | 0x66811d2389360932463f1670584fa86cf5f73a8ffe389ec81397aa7bc62b6b8d | 100000000 | 0x0 | 0 |
| {“burn_limit_per_message”:“0”,“token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::SetBurnLimitPerMessage | 0 | 263982401 | 2024-12-12T18:50:58.127Z | 0 | 0x8dcc0137efc67ee642e34395ced23670d1085bc468f31101b7e262e70d934d1e | 0 | 0x0 | 0 |
| {“burn_limit_per_message”:“1000000”,“token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”} | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::SetBurnLimitPerMessage | 0 | 264377261 | 2024-12-13T17:49:32.660Z | 0 | 0x3f88e8a41af1d6d4b586185ab567495d86b066c28ecaf1ed12d837f439dfdab1 | 1000000 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_SetTokenController_event
Administrative events recording token controller address updates in Circle’s USDC bridge on Aptos. Tracks governance changes to the controller role responsible for managing cross-chain token minting and burning permissions.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_token_controller | STRING | Address of the token controller being set in this configuration event. Hex-encoded Aptos address that manages token minting and burning permissions for Circle’s cross-chain transfer protocol. |
Sample Data
Sample Data
| data | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | in_token_controller | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|
| {“token_controller”:“0xa04ef8c1dc0c44eafd6f333f5414ed818471cee4cdfeef9837984a7b001e7413”} | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::SetTokenController | 0 | 263982387 | 2024-12-12T18:50:55.191Z | 0 | 0xc38e55788cf2af6c02bfe83b15df293e6ee43b41b3caf4895d9ac0354494dcbf | 0xa04ef8c1dc0c44eafd6f333f5414ed818471cee4cdfeef9837984a7b001e7413 | 0x0 | 0 |
| {“token_controller”:“0xda26bbccf4914b97bfb4b4014b20ecd0f26e9cc7bd92b6270e585c5a3fab6519”} | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::SetTokenController | 0 | 264375522 | 2024-12-13T17:43:23.095Z | 0 | 0x91fc8b9b03a9c1bb6a7b7a9b58be04976bad8edec675dc75b6af9a173a132d0f | 0xda26bbccf4914b97bfb4b4014b20ecd0f26e9cc7bd92b6270e585c5a3fab6519 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_TokenPairLinked_event
Circle Cross-Chain Transfer Protocol (CCTP) token pair linking events on Aptos, mapping local token addresses to remote domain tokens across chains. Used to track USDC token configurations and cross-chain bridge relationships established through Circle’s TokenMessenger contracts.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_local_token | STRING | Token address on the local blockchain being burned or linked in the cross-chain transfer. Base58-encoded address for Solana, hex-encoded address with 0x prefix for Aptos. |
in_remote_domain | STRING | Circle Cross-Chain Transfer Protocol (CCTP) domain identifier for the remote chain where the linked token resides. Numeric identifier mapping to specific blockchain networks in Circle’s cross-chain messaging system. |
in_remote_token | STRING | Token address on the remote chain that is linked to the local Aptos token for cross-chain transfers. Hex-encoded, typically 0x-prefixed, varies in length by destination chain (40-character for EVM chains, 64-character for non-EVM chains). |
Sample Data
Sample Data
| data | event_type | event_index | block_height | in_local_token | block_timestamp | in_remote_token | sequence_number | in_remote_domain | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“local_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“remote_domain”:7,“remote_token”:“0x3c499c542cef5e3811e1192ce70d8cc03d5c3359”} | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::TokenPairLinked | 0 | 263982504 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2024-12-12T18:51:18.700Z | 0x3c499c542cef5e3811e1192ce70d8cc03d5c3359 | 0 | 7 | 0xbe36ba23d6441c6a03736c979d99a1cbd6772d97058c4cb8806807e2627f01a4 | 0x0 | 0 |
| {“local_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“remote_domain”:6,“remote_token”:“0x833589fcd6edb6e08f4c7c32d4f71b54bda02913”} | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::TokenPairLinked | 0 | 263982495 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2024-12-12T18:51:16.994Z | 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 | 0 | 6 | 0x915e0d0b1410021a16c4fdd9fd366628283356031b4274608491461e9c9b2b5c | 0x0 | 0 |
| {“local_token”:“0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b”,“remote_domain”:5,“remote_token”:“0xc6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61”} | 0x9bce6734f7b63e835108e3bd8c36743d4709fe435f44791918801d0989640a9d::token_controller::TokenPairLinked | 0 | 263982539 | 0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b | 2024-12-12T18:51:26.004Z | 0xc6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61 | 0 | 5 | 0xfa384f376358619a24e3ec14a22575369ad31922058c656aae2b2ead1ceb57fe | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
TokenMessengerMinter_TokenPairUnlinked_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_local_token | STRING | Token address on the local blockchain being burned or linked in the cross-chain transfer. Base58-encoded address for Solana, hex-encoded address with 0x prefix for Aptos. |
in_remote_domain | STRING | - |
in_remote_token | STRING | - |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
treasury_Burn_event
Circle USDC token burn events on Aptos blockchain capturing permanent token removal from circulation with burner addresses and amounts. Used for analyzing USDC supply changes and treasury operations on Aptos.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_burner | STRING | Account address that burned the tokens. Hex-encoded string with 0x prefix. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
| data | in_amount | in_burner | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“361081120000”,“burner”:“0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1”} | 361081120000 | 0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Burn | 2 | 301808265 | 2025-03-11T03:03:15.595Z | 0 | 0x427611a8037c2466e4e5412fa5e2e69c644f0a8720931fe76f324f4823d4492e | 0x0 | 0 |
| {“amount”:“406568530000”,“burner”:“0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1”} | 406568530000 | 0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Burn | 2 | 301946989 | 2025-03-11T10:00:16.178Z | 0 | 0x388958bc09fac3f9301eab548def08dcf71e30df1ada6aa66135ea43b739317c | 0x0 | 0 |
| {“amount”:“450000000000”,“burner”:“0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1”} | 450000000000 | 0x56d36758dc656c5928769175c6c560a5bb860bd7cf97a20a7d8c63cf4fbe53e1 | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Burn | 2 | 301825164 | 2025-03-11T03:54:20.340Z | 0 | 0x6c54ff74650f831d91c0840c4a1de80bb42707825508bc4dd7ff72a7ccfa44f5 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
treasury_Mint_event
Circle USDC stablecoin mint events on Aptos blockchain, capturing token issuance by authorized minter addresses with amounts and timestamps. Used for tracking USDC supply expansion and treasury operations.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_height | INT64 | Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block. |
sequence_number | STRING | Sequential identifier for an event within its event stream. Non-negative integer string that uniquely orders events sharing the same GUID (account address and creation number combination). |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
event_type | STRING | Fully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons. |
event_index | INT64 | Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction. |
event_guid_account_address | STRING | Account address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix. |
event_guid_creation_number | INT64 | Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address. |
data | JSON | Raw event data payload containing structured parameters and values specific to each event type. JSON object with field names and values representing the complete event emission data. |
in_minter | STRING | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
| data | in_amount | in_minter | event_type | event_index | block_height | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“10000”,“minter”:“0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d”} | 10000 | 0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Mint | 0 | 433660326 | 2025-09-17T12:49:23.086Z | 0 | 0x2368918a27504208c2d8c037b0e9f4540fb184a6782e26b6b7c314935cf1a6a0 | 0x0 | 0 |
| {“amount”:“10000”,“minter”:“0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d”} | 10000 | 0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Mint | 0 | 433817751 | 2025-09-17T17:39:34.304Z | 0 | 0xc3350602075afbb70afcadd5d3e95884a2f6399d39e213f864f239747866483f | 0x0 | 0 |
| {“amount”:“10000”,“minter”:“0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d”} | 10000 | 0x9e6702a472080ea3caaf6ba9dfaa6effad2290a9ba9adaacd5af5c618e42782d | 0xe5c5befe31ce06bc1f2fd31210988aac08af6d821b039935557a6f14c03471be::treasury::Mint | 0 | 433866468 | 2025-09-17T19:09:00.694Z | 0 | 0xe4d29e3feddb32c1a63c3acd15af464ecefda8e28262afe6aead80076f18828e | 0x0 | 0 |
Example Query
Example Query
Query with partition filter