mirror of
https://github.com/FlipsideCrypto/sei-models.git
synced 2026-02-06 10:58:58 +00:00
* temp dex * remove order book dex oxium and update vars * is verified in prices * gold models * tags and remove legacy models * heal wf * remove file * revert * remove event name * remove so
33 lines
521 B
SQL
33 lines
521 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
HOUR,
|
|
token_address,
|
|
asset_id,
|
|
symbol,
|
|
NAME,
|
|
decimals,
|
|
price,
|
|
blockchain,
|
|
blockchain_name,
|
|
blockchain_id,
|
|
is_imputed,
|
|
is_deprecated,
|
|
is_verified,
|
|
provider,
|
|
source,
|
|
_inserted_timestamp,
|
|
inserted_timestamp,
|
|
modified_timestamp,
|
|
complete_token_prices_id,
|
|
_invocation_id
|
|
FROM
|
|
{{ source(
|
|
'crosschain_silver',
|
|
'complete_token_prices'
|
|
) }}
|
|
WHERE
|
|
blockchain ILIKE 'sei%'
|