mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 11:41:50 +00:00
29 lines
584 B
SQL
29 lines
584 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
persist_docs ={ "relation": true,
|
|
"columns": true },
|
|
tags = ['stale'],
|
|
meta={
|
|
'database_tags':{
|
|
'table': {
|
|
'PROTOCOL': 'DEFILLAMA'
|
|
}
|
|
}
|
|
}
|
|
) }}
|
|
|
|
SELECT
|
|
date,
|
|
stablecoin_id,
|
|
stablecoin,
|
|
symbol,
|
|
chain,
|
|
total_bridged_usd,
|
|
total_circulating,
|
|
total_circulating_usd,
|
|
defillama_usdc_usdt_supply_id as defillama_fact_usdt_usdc_supply_id,
|
|
inserted_timestamp,
|
|
modified_timestamp
|
|
FROM
|
|
{{ ref('silver__defillama_usdt_usdc_supply') }} f
|