thorchain.price Table: ez_prices_hourly Type: View
A convenience table for determining token prices by address and blockchain, and native asset prices
by symbol and blockchain. This data set is highly curated and contains metadata for one price per
hour per unique asset and blockchain.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| HOUR | TIMESTAMP_NTZ | Hour that the price was recorded at. |
| TOKEN_ADDRESS | TEXT | The specific address representing the asset on a specific platform. This will be NULL if referring to a native asset. |
| SYMBOL | TEXT | The symbol of asset. |
| NAME | TEXT | |
| DECIMALS | NUMBER | The number of decimals for the asset. May be NULL. |
| PRICE | FLOAT | Closing price of the recorded hour in USD. |
| BLOCKCHAIN | TEXT | The Blockchain, Network, or Platform for this asset. |
| IS_NATIVE | BOOLEAN | A flag indicating assets native to the respective blockchain. |
| IS_DEPRECATED | BOOLEAN | A flag indicating if the asset is deprecated or no longer supported by the provider. |
| IS_IMPUTED | BOOLEAN | A flag indicating if the price was imputed, or derived, from the last arriving record. This is generally used for tokens with low-liquidity or inconsistent reporting. |
| 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. |
| EZ_PRICES_HOURLY_ID | TEXT | The primary key for the table. |