base-models/models/bronze/prices/bronze__complete_native_asset_metadata.sql
drethereum c4ef615847
AN-4705/prices-v2 (#165)
* new prices models and docs

* references

* new names

* addr desc
2024-05-01 12:39:07 -06:00

27 lines
449 B
SQL

{{ config (
materialized = 'view'
) }}
SELECT
asset_id,
symbol,
NAME,
decimals,
blockchain,
is_deprecated,
provider,
source,
_inserted_timestamp,
inserted_timestamp,
modified_timestamp,
complete_native_asset_metadata_id,
_invocation_id
FROM
{{ source(
'silver_crosschain',
'complete_native_asset_metadata'
) }}
WHERE
blockchain = 'ethereum'
AND symbol = 'ETH'