Tables
FungibleAsset_Deposit_event
Fungible asset deposit events on Aptos blockchain, capturing inbound token transfers to store addresses with amounts and transaction metadata. Used for tracking asset flows, wallet funding activity, and token movement patterns across the Aptos ecosystem.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 | 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 | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“359017074364”,“store”:“0xab53f965096b3d784e335f42dafe434d3f202d887242284cc1e8ae2ef005b781”} | 0xab53f965096b3d784e335f42dafe434d3f202d887242284cc1e8ae2ef005b781 | 359017074364 | 0x1::fungible_asset::Deposit | 7 | 215919670 | 2024-08-20T00:00:26.652Z | 0 | 0xf0391d7b0aed277f9b25403697d05fcecc052f4357becd5cfa91ec906d761905 | 0x0 | 0 |
| {“amount”:“465576185449”,“store”:“0x1eaaa826d59ce42eb1a7c8b19e10168d7e9e7104df2ce1c77f857fd6abdd337e”} | 0x1eaaa826d59ce42eb1a7c8b19e10168d7e9e7104df2ce1c77f857fd6abdd337e | 465576185449 | 0x1::fungible_asset::Deposit | 7 | 215919671 | 2024-08-20T00:00:26.838Z | 0 | 0xae4daea7cc1f48e226b1c185ea858550a0f6c16d17a45c6fb04583bdbf9d859b | 0x0 | 0 |
| {“amount”:“391292686643”,“store”:“0x51bc6c8bec641c4fa84fdb0cd15b232adb2574fcfbf430230ed74655b839ed8e”} | 0x51bc6c8bec641c4fa84fdb0cd15b232adb2574fcfbf430230ed74655b839ed8e | 391292686643 | 0x1::fungible_asset::Deposit | 7 | 215919671 | 2024-08-20T00:00:26.838Z | 0 | 0x9dc85efbfb83b5ebe85252823e1980407b59420710f104a5294e505bf2253058 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter
FungibleAsset_Withdraw_event
Withdrawal events for fungible assets on Aptos blockchain, capturing token removals from specific storage addresses with withdrawal amounts and store identifiers. Used for tracking asset outflows and analyzing token movement patterns across accounts.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 | 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 | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|
| {“amount”:“1”,“store”:“0x9b8424288ddbfc83bf9f2b71cb22589d07794accb9c877846b9225db656aa515”} | 0x9b8424288ddbfc83bf9f2b71cb22589d07794accb9c877846b9225db656aa515 | 1 | 0x1::fungible_asset::Withdraw | 0 | 265679938 | 2024-12-16T22:08:57.389Z | 0 | 0xaa66f0974df10daf09cf463a8014753f24dbaecdf357e1e5ac8d901ee67aafef | 0x0 | 0 |
| {“amount”:“1”,“store”:“0x60832bc617a1ad410f5cf0f5abad80bc488d7757e003f2d27ad36b02b3d4415c”} | 0x60832bc617a1ad410f5cf0f5abad80bc488d7757e003f2d27ad36b02b3d4415c | 1 | 0x1::fungible_asset::Withdraw | 0 | 265471177 | 2024-12-16T09:46:35.777Z | 0 | 0xd739114f9ccfa63aa5e06d551032ab987f2b007ac16ae305360f6cf8c2c5b131 | 0x0 | 0 |
| {“amount”:“1”,“store”:“0x44059bdb102e7c40adb4347c5896617f97ff17c74d12e7deb78e8b3c363537c7”} | 0x44059bdb102e7c40adb4347c5896617f97ff17c74d12e7deb78e8b3c363537c7 | 1 | 0x1::fungible_asset::Withdraw | 0 | 265374154 | 2024-12-16T04:01:23.593Z | 0 | 0x109d02eee657a2b229207a85713b9804786f2c2a51b5c178685347038923f27f | 0x0 | 0 |
Example Query
Example Query
Query with partition filter