> ## 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.

# Transactions

### Table Details

| Property            | Value                        |
| ------------------- | ---------------------------- |
| Table Name          | `litecoin.raw.transactions`  |
| Table Status        | Production-Ready             |
| Unique Key          | `block_timestamp`, `hash`    |
| Clustering Key(s)   | `to_date("block_timestamp")` |
| Search Optimization | `hash`                       |

### Table Columns

| Column Name          | Data Type         | Description                                                                            |
| -------------------- | ----------------- | -------------------------------------------------------------------------------------- |
| hash                 | VARCHAR(66)       | Unique identifier or hash of the transaction.                                          |
| size                 | NUMBER(38,0)      | The size of the transaction in bytes.                                                  |
| virtual\_size        | NUMBER(38,0)      | The virtual size of the transaction, used for fee calculation.                         |
| version              | NUMBER(38,0)      | The version number of the transaction format.                                          |
| lock\_time           | NUMBER(38,0)      | The block number or timestamp at which the transaction becomes valid.                  |
| index                | NUMBER(38,0)      | The position of the transaction within its block.                                      |
| block\_hash          | VARCHAR(66)       | Hash of the block containing this transaction.                                         |
| block\_number        | NUMBER(38,0)      | Number of the block containing this transaction.                                       |
| block\_timestamp     | TIMESTAMP\_NTZ(9) | Timestamp when the block containing this transaction was mined.                        |
| input\_count         | NUMBER(38,0)      | Number of inputs in this transaction.                                                  |
| output\_count        | NUMBER(38,0)      | Number of outputs in this transaction.                                                 |
| output\_value        | NUMBER(38,0)      | Total amount of LTC in satoshis (smallest unit) in all outputs.                        |
| is\_coinbase         | BOOLEAN           | Indicates if this is a coinbase transaction.                                           |
| \_created\_at        | TIMESTAMP\_NTZ(9) | Timestamp when this record was created in the database.                                |
| \_updated\_at        | TIMESTAMP\_NTZ(9) | Timestamp when this record was last updated in the database.                           |
| output\_value\_str   | VARCHAR(16777216) | Total amount of LTC in litoshi (smallest unit) in all outputs, as a string.            |
| output\_value\_float | FLOAT             | Total value of outputs in the transaction, normalized to LTC (one litoshi = 1e-8 LTC). |
| txid                 | VARCHAR(16777216) | Transaction ID, the unique hash identifying this transaction.                          |
