Skip to main content

Tables

AcredToken_Burn_event

No description available.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_heightINT64Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block.
sequence_numberSTRINGSequential 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_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
event_typeSTRINGFully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons.
event_indexINT64Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction.
event_guid_account_addressSTRINGAccount address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix.
event_guid_creation_numberINT64Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address.
dataJSONRaw 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_burnerSTRINGAccount address that burned the tokens. Hex-encoded string with 0x prefix.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_reasonSTRINGEnumerated code indicating the cause or category of the operation or state change. Non-negative integer value representing different reason types defined by the protocol.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.apollo_v1_aptos.AcredToken_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AcredToken_Issue_event

AcredToken issuance events on Aptos blockchain tracking token minting operations, including recipient address, issued amount, and locked value for each mint transaction. Useful for analyzing token supply changes and distribution patterns for the AcredToken protocol.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_heightINT64Sequential number identifying the position of the block in the blockchain. Positive integer incremented by one for each new block.
sequence_numberSTRINGSequential 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_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
event_typeSTRINGFully qualified type identifier for the smart contract event. Module address, module name, and event name separated by double colons.
event_indexINT64Sequential position of the event within its containing transaction. Zero-indexed integer starting from 0 for the first event in each transaction.
event_guid_account_addressSTRINGAccount address component of the event’s globally unique identifier. Hex-encoded string with 0x prefix.
event_guid_creation_numberINT64Creation number component of the event’s globally unique identifier. Non-negative integer that distinguishes different event streams within the same account address.
dataJSONRaw 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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_valueLockedSTRINGAmount of tokens that are locked or restricted from immediate transfer at the time of issuance. Value is a string-encoded integer, typically “0” indicating no locked tokens in the issue event.
datain_toin_valueevent_typeevent_indexblock_heightin_valueLockedblock_timestampsequence_numbertransaction_hashevent_guid_account_addressevent_guid_creation_number
{“to”:“0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b”,“value”:“10000000000”,“valueLocked”:“0”}0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b100000000000x13816cd4562c9cf260a0471615451253ab96cca6d6adf746969c52c78480f06a::ds_token::Issue128361614202025-01-29T22:14:31.031Z00x372e3a41583718180f4d2cb4c6112c954921113db6bf122e1d1a41d98011ae480x00
{“to”:“0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b”,“value”:“9791073712”,“valueLocked”:“0”}0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b97910737120x13816cd4562c9cf260a0471615451253ab96cca6d6adf746969c52c78480f06a::ds_token::Issue133361645202025-04-30T14:52:45.198Z00xe1f84f03ca9f2de984078871f1708bc59929b3d847577202a1da6ba24b9999b80x00
Query with partition filter
SELECT *
FROM `tt-contracts.apollo_v1_aptos.AcredToken_Issue_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100