mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 14:11:54 +00:00
21 lines
294 B
SQL
21 lines
294 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
unique_key = 'token_contract',
|
|
tags = ['curated']
|
|
) }}
|
|
|
|
WITH labels_seed AS (
|
|
|
|
SELECT
|
|
token,
|
|
symbol,
|
|
token_contract,
|
|
decimals
|
|
FROM
|
|
{{ ref('seeds__token_labels') }}
|
|
)
|
|
SELECT
|
|
*
|
|
FROM
|
|
labels_seed
|