mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 13:57:17 +00:00
22 lines
426 B
SQL
22 lines
426 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
meta={
|
|
'database_tags':{
|
|
'table': {
|
|
'PROTOCOL': 'DEEPNFTVALUE'
|
|
}
|
|
}
|
|
}
|
|
) }}
|
|
|
|
SELECT
|
|
collection_name,
|
|
lower(collection_address) AS collection_address,
|
|
floor_price,
|
|
valuation_max,
|
|
valuation_min,
|
|
attributes,
|
|
_inserted_timestamp AS valuation_timestamp
|
|
FROM
|
|
{{ ref('silver__dnv_collections') }}
|