stellar-models/models/bronze/prices/bronze__complete_token_prices.sql
eric-laurello 9658462cfc
ez token transfers plus verified flags (#15)
* ez token transfer and all that goes into that

* fix UK and partition

* inc filter
2025-07-25 14:44:22 -04:00

34 lines
550 B
SQL

{{ config (
materialized = 'view',
tags = ['bronze_prices']
) }}
SELECT
HOUR,
token_address,
asset_id,
symbol,
NAME,
decimals,
price,
blockchain,
blockchain_name,
blockchain_id,
is_imputed,
is_deprecated,
provider,
source,
is_verified,
_inserted_timestamp,
inserted_timestamp,
modified_timestamp,
complete_token_prices_id,
_invocation_id
FROM
{{ source(
'crosschain_silver',
'complete_token_prices'
) }}
WHERE
blockchain = 'stellar'