mirror of
https://github.com/FlipsideCrypto/base-models.git
synced 2026-02-06 13:56:57 +00:00
30 lines
470 B
SQL
30 lines
470 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
HOUR,
|
|
asset_id,
|
|
symbol,
|
|
NAME,
|
|
decimals,
|
|
price,
|
|
blockchain,
|
|
is_imputed,
|
|
is_deprecated,
|
|
provider,
|
|
source,
|
|
_inserted_timestamp,
|
|
inserted_timestamp,
|
|
modified_timestamp,
|
|
complete_native_prices_id,
|
|
_invocation_id
|
|
FROM
|
|
{{ source(
|
|
'silver_crosschain',
|
|
'complete_native_prices'
|
|
) }}
|
|
WHERE
|
|
blockchain = 'ethereum'
|
|
AND symbol = 'ETH'
|