Table Details
| Property | Value |
|---|---|
| Table Name | oasys.assets.erc1155_balances |
| Table Status | Production-Ready |
| Unique Key | unique_id |
| Clustering Key(s) | block_timestamp::date, token_address |
| Search Optimization | address, block_number, token_id |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| address | VARCHAR(42) | The wallet address holding the tokens |
| token_address | VARCHAR(42) | Contract address of the token |
| token_name | VARCHAR(16777216) | Name of the token |
| token_symbol | VARCHAR(16777216) | Symbol of the token |
| token_id | VARCHAR(16777216) | Unique identifier for the specific token within the collection (e.g., for ERC721 or ERC1155) |
| raw_balance | FLOAT | Token balance, unnormalized |
| raw_balance_str | VARCHAR(16777216) | Token balance as string to retain precision |
| balance | FLOAT | Token balance, normalized |
| balance_str | VARCHAR(16777216) | Token balance as string to retain precision |
| transaction_hash | VARCHAR(66) | Hash of the transaction that last modified the balance |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block |
| block_number | NUMBER(38,0) | Number of the block |
| block_hash | VARCHAR(66) | Hash of the block |
| unique_id | VARCHAR(16777216) | Unique identifier of the balances entry |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created |