mirror of
https://github.com/FlipsideCrypto/base-models.git
synced 2026-02-06 11:01:45 +00:00
26 lines
454 B
SQL
26 lines
454 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
asset_id,
|
|
token_address,
|
|
NAME,
|
|
symbol,
|
|
platform,
|
|
platform_id,
|
|
provider,
|
|
source,
|
|
_inserted_timestamp,
|
|
inserted_timestamp,
|
|
modified_timestamp,
|
|
complete_provider_asset_metadata_id,
|
|
_invocation_id
|
|
FROM
|
|
{{ source(
|
|
'silver_crosschain',
|
|
'complete_provider_asset_metadata'
|
|
) }}
|
|
WHERE
|
|
platform = 'Base'
|
|
-- platforms specific to Base |