flow.core Table: fact_account_storage Type: Base Table
This table contains account storage data as of the last block each day. Please note that the table
will only update once a day.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_HEIGHT | NUMBER | The block height of the last block for the day at which storage was fetched. |
| ACCOUNT_ADDRESS | TEXT | The address of the account for which storage was fetched. |
| BLOCK_DATE | DATE | The date for which storage was fetched at the last block of the day. |
| ENCODED_DATA | TEXT | The encoded data of the account storage. |
| DECODED_DATA | VARIANT | The decoded data of the account storage. |
| STORAGE_USED | NUMBER | The storage used by the account. |
| STORAGE_CAPACITY | NUMBER | The storage capacity of the account. |
| FACT_ACCOUNT_STORAGE_ID | TEXT | The surrogate key for the account storage. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp of that the row was inserted. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp of that the row was last modified. |