Table Details
| Property | Value |
|---|---|
| Table Name | bitcoin.assets.rune_claims |
| Table Status | Production-Ready |
| Unique Key | block_timestamp::date, block_number, transaction_hash, rune_id |
| Clustering Key(s) | block_timestamp::date |
| Search Optimization | block_number, transaction_hash, rune_id |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| rune_id | VARCHAR(134217728) | Canonical identifier for a Rune, formatted as : (e.g. 840000:3). |
| transaction_hash | VARCHAR(134217728) | Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain. |
| transaction_index | NUMBER(38,0) | Zero-based position of the transaction within its block. The first transaction in a block has index 0. |
| block_number | NUMBER(38,0) | Sequential number of the block that contains this record. Starts at 0 (genesis block) and increments by 1 for each new block. |
| block_hash | VARCHAR(66) | Cryptographic hash of the block header that contains this record. Uniquely identifies a block. |
| block_timestamp | TIMESTAMP_NTZ(0) | Timestamp (UTC) of the block that contains this record. |
| _stg_rune_claimed_updated_at | TIMESTAMP_NTZ(6) | Internal staging timestamp recording when the rune claim record was last updated in the staging layer. |
| raw_amount | VARCHAR(134217728) | Token amount in the smallest indivisible unit (not decimal-adjusted). Same concept as amount_raw — the column is named raw_amount in models that follow the raw_ prefix convention. |
| amount | FLOAT | Token amount normalized by the token’s decimal precision (amount_raw / 10^decimals). This is the human-readable value (e.g. 1.5 USDC rather than 1500000). |
| divisibility | NUMBER(38,0) | Number of decimal places for this Rune token (0–38). Determines the smallest transferable unit. |
| spaced_rune | VARCHAR(134217728) | Human-readable Rune name with spacers inserted at configured positions (e.g. UNCOMMON•GOODS). |
| symbol | VARCHAR(134217728) | Ticker symbol of this token or asset. Short alias for token_symbol used in tables that preserve the original blockchain field naming convention. |
| rune_number | NUMBER(38,0) | Sequential integer assigned to this Rune in the order it was etched, starting from 0. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |