Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions models/solana/gold/solana__fact_nft_mints.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{{ config(
materialized = 'view'
) }}

SELECT
*
FROM
{{ source(
'solana',
'fact_nft_mints'
) }}
23 changes: 23 additions & 0 deletions models/solana/gold/solana__fact_nft_mints.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
models:
- name: solana__fact_nft_mints
description: Records of all NFT mints on Solana.
columns:
- name: BLOCK_TIMESTAMP
description: "{{ doc('solana_block_timestamp') }}"
- name: BLOCK_ID
description: "{{ doc('solana_block_id') }}"
- name: TX_ID
description: "{{ doc('solana_tx_id') }}"
- name: SUCCEEDED
description: "{{ doc('solana_tx_succeeded') }}"
- name: PROGRAM_ID
description: "{{ doc('solana_program_id') }}"
- name: PURCHASER
description: "{{ doc('solana_purchaser') }}"
- name: MINT_PRICE
description: The price one paid to mint the NFT in SOL or another currency.
- name: MINT_CURRENCY
description: The currency used to pay for the NFT mint
- name: MINT
description: "{{ doc('solana_mint') }}"
3 changes: 2 additions & 1 deletion models/sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,5 @@ sources:
- name: fact_swaps
- name: fact_transactions
- name: fact_transfers
- name: fact_votes_agg_block
- name: fact_votes_agg_block
- name: fact_nft_mints