Tables
AcredToken_Burn_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_burner | STRING | Account address that burned the tokens. Hex-encoded string with 0x prefix. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
in_reason | STRING | Enumerated code indicating the cause or category of the operation or state change. Non-negative integer value representing different reason types defined by the protocol. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.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_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
in_valueLocked | STRING | Amount 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. |
Sample Data
Sample Data
| data | in_to | in_value | event_type | event_index | block_height | in_valueLocked | block_timestamp | sequence_number | transaction_hash | event_guid_account_address | event_guid_creation_number |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {“to”:“0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b”,“value”:“10000000000”,“valueLocked”:“0”} | 0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b | 10000000000 | 0x13816cd4562c9cf260a0471615451253ab96cca6d6adf746969c52c78480f06a::ds_token::Issue | 1 | 283616142 | 0 | 2025-01-29T22:14:31.031Z | 0 | 0x372e3a41583718180f4d2cb4c6112c954921113db6bf122e1d1a41d98011ae48 | 0x0 | 0 |
| {“to”:“0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b”,“value”:“9791073712”,“valueLocked”:“0”} | 0x5aba5dd7021e53e8ee3aab8e0759ff3a634cb52c83c149dbea812c064f5c1b4b | 9791073712 | 0x13816cd4562c9cf260a0471615451253ab96cca6d6adf746969c52c78480f06a::ds_token::Issue | 1 | 333616452 | 0 | 2025-04-30T14:52:45.198Z | 0 | 0xe1f84f03ca9f2de984078871f1708bc59929b3d847577202a1da6ba24b9999b8 | 0x0 | 0 |
Example Query
Example Query
Query with partition filter