> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Rune Transfers

### Table Details

| Property            | Value                                                                             |
| ------------------- | --------------------------------------------------------------------------------- |
| Table Name          | `bitcoin.assets.rune_transfers`                                                   |
| Table Status        | Production-Ready                                                                  |
| Unique Key          | `block_timestamp::date`, `block_number`, `transaction_hash`, `utxo_id`, `rune_id` |
| Clustering Key(s)   | `block_timestamp::date`                                                           |
| Search Optimization | `block_number`, `transaction_hash`, `utxo_id`, `rune_id`                          |

### Table Columns

| Column Name                           | Data Type          | Description                                                                                                                                                                               |
| ------------------------------------- | ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| rune\_id                              | VARCHAR(134217728) | Canonical identifier for a Rune, formatted as : (e.g. 840000:3).                                                                                                                          |
| utxo\_id                              | VARCHAR(134217728) | The unique identifier of this UTXO (transaction\_hash#output\_index).                                                                                                                     |
| 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\_transferred\_updated\_at | TIMESTAMP\_NTZ(6)  | Internal staging timestamp recording when the rune transfer 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.                                                                                                     |
| addresses                             | VARCHAR(134217728) | Array of addresses associated with this UTXO input or output. Multi-sig outputs may have more than one.                                                                                   |
| address0                              | VARCHAR(130)       | First address in the addresses array; convenience column for the primary address associated with this input or output.                                                                    |
| \_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.                                                                                                                             |
