mirror of
https://github.com/FlipsideCrypto/solana-models.git
synced 2026-02-06 11:47:08 +00:00
20 lines
402 B
SQL
20 lines
402 B
SQL
{{ config(
|
|
materialized = 'incremental',
|
|
unique_key = "tx_id",
|
|
cluster_by = ['block_timestamp::date'],
|
|
tags = ['share']
|
|
) }}
|
|
|
|
SELECT
|
|
marketplace,
|
|
block_timestamp,
|
|
block_id,
|
|
tx_id,
|
|
succeeded,
|
|
program_id,
|
|
purchaser,
|
|
seller,
|
|
mint,
|
|
sales_amount
|
|
FROM {{ref('nft__fact_nft_sales')}}
|
|
where block_timestamp::date between '2021-12-01' and '2021-12-31' |