external-models/models/defillama/gold/defillama__fact_protocol_tvl.sql
2025-04-30 09:48:05 -07:00

29 lines
529 B
SQL

{{ config(
materialized = 'view',
persist_docs ={ "relation": true,
"columns": true },
tags = ['defillama'],
meta={
'database_tags':{
'table': {
'PROTOCOL': 'DEFILLAMA'
}
}
}
) }}
SELECT
TIMESTAMP :: DATE AS DATE,
chain,
protocol_id,
category,
protocol,
market_cap,
symbol,
chain_tvl,
chain_tvl_prev_day,
chain_tvl_prev_week,
chain_tvl_prev_month
FROM
{{ ref('silver__defillama_protocol_tvl') }} f