| BLOCK_NUMBER | NUMBER | Also known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. |
| VERSION | NUMBER | The version also know as the height of the transactions that have been executed on the Movement blockchain. The first transaction in the blockchain has a version of 0. The version number is incremented by 1 for each transaction that is executed on the blockchain. |
| SUCCESS | BOOLEAN | The boolean value indicating whether the transaction was successful or not. |
| EVENT_INDEX | NUMBER | Unique identifier for the event. This is a monotonically increasing integer that is incremented for each event. This is useful for determining the order of changes. |
| CREATION_NUMBER | NUMBER | Ceation number corresponding to the event stream originating from the given account. |
| TRANSFER_EVENT | TEXT | The type of transfer event. Value will either be ‘WithdrawEvent’ or ‘DepositEvent’ |
| ACCOUNT_ADDRESS | TEXT | The top level address for this event. |
| AMOUNT | NUMBER | The non-decimal adjusted amount of a token. For example, if a token has 18 decimals, then the amount of 1 token is 10^18. |
| TOKEN_ADDRESS | TEXT | The full address of the token. This string contains the account,module, and resource. |
| IS_FUNGIBLE | BOOLEAN | Boolean indicating whether the transfer was conducted using the legacy coin transfer mechanism (a simpler, original method for transferring coins) or the fungible_asset module (a newer, more flexible system for managing fungible assets). |
| STORE_ADDRESS | TEXT | Address of the fungible store |
| 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. |