| BLOCK_NUMBER | NUMBER | BLOCK_NUMBER column |
| 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. |
| TX_TYPE | TEXT | The type of the transaction. Values will be one of “blockmetadatatransaction”,“statecheckpointtransaction”,“user_transaction”. |
| SENDER | TEXT | Sender is the address of the originator account for a transaction. A transaction must be signed by the originator. |
| PAYLOAD_FUNCTION | TEXT | The function that is being called in the transaction payload. |
| 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. |
| EVENT_TYPE | TEXT | The full three-part descriptive type from event. The event type consists of the eventaddress :: eventmodule :: event_resource. |
| EVENT_ADDRESS | TEXT | The first segment of the event type |
| EVENT_MODULE | TEXT | The second segment of the event type |
| EVENT_RESOURCE | TEXT | The third segment of the event type |
| EVENT_DATA | VARIANT | The “data” object within this event. |
| ACCOUNT_ADDRESS | TEXT | The top level address for this event. |
| CREATION_NUMBER | NUMBER | Ceation number corresponding to the event stream originating from the given account. |
| SEQUENCE_NUMBER | NUMBER | The sequence number for an account indicates the number of transactions that have been submitted and committed on chain from that account. It is incremented every time a transaction sent from that account is executed or aborted and stored in the blockchain. |
| FACT_EVENTS_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. |