base-models/models/bronze/prices/bronze__complete_token_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

28 lines
478 B
SQL

{{ config (
materialized = 'view'
) }}
SELECT
token_address,
asset_id,
symbol,
NAME,
decimals,
blockchain,
blockchain_name,
blockchain_id,
is_deprecated,
provider,
source,
_inserted_timestamp,
inserted_timestamp,
modified_timestamp,
complete_token_asset_metadata_id,
_invocation_id
FROM
{{ source(
'silver_crosschain',
'complete_token_asset_metadata'
) }}
WHERE
blockchain = 'base'