aleo.core Table: fact_transfers Type: Base Table
Records of all wallet to wallet transfers on Aleo.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_ID | NUMBER | The block height the block was recorded at. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which the block began. |
| TX_ID | TEXT | The unique identifier for the transaction. |
| TX_SUCCEEDED | BOOLEAN | The boolean status of the transaction. If the transaction was successful, this value will be true. If the transaction was unsuccessful, this value will be false. |
| TRANSITION_ID | TEXT | |
| INDEX | NUMBER | |
| TRANSFER_TYPE | TEXT | The type of transfer, namely public or private. |
| SENDER | TEXT | Address that tokens are transferred from. |
| RECEIVER | TEXT | Address that tokens are transferred to. |
| AMOUNT | FLOAT | Number of tokens transferred. |
| IS_NATIVE | BOOLEAN | Whether the transfer is a native transfer (credits.aleo) or a non-native transfer (token_registry.aleo). |
| TOKEN_ADDRESS | TEXT | Token address of the transfer. |
| FACT_TRANSFERS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |
| _INVOCATION_ID | TEXT |