thorchain.core Table: fact_transfers Type: Base Table
Fact table shows the transfer action between different address
Columns
| Column Name | Data Type | Description |
|---|---|---|
| FACT_TRANSFERS_ID | TEXT | The surrogate key for the table. Will be unique and is used as a foreign key in other tables |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | Timestamp of block minting(without a timezone) |
| DIM_BLOCK_ID | TEXT | FK to DIM_BLOCK table |
| FROM_ADDRESS | TEXT | The account public key |
| TO_ADDRESS | TEXT | The account public key |
| ASSET | TEXT | Asset name or pool name |
| RUNE_AMOUNT | FLOAT | The transferred RUNE amount |
| RUNE_AMOUNT_USD | FLOAT | The transferred RUNE amount in USD |
| _INSERTED_TIMESTAMP | TIMESTAMP_NTZ | |
| _AUDIT_RUN_ID | TEXT | |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |