mirror of
https://github.com/FlipsideCrypto/near-models.git
synced 2026-02-06 14:11:54 +00:00
34 lines
493 B
SQL
34 lines
493 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
secure = true,
|
|
meta={
|
|
'database_tags':{
|
|
'table': {
|
|
'PURPOSE': 'NFT'
|
|
}
|
|
}
|
|
},
|
|
tags = ['core']
|
|
) }}
|
|
|
|
with mints as (
|
|
select *
|
|
from {{ ref('silver__nft_mints_s3') }}
|
|
)
|
|
|
|
select
|
|
action_id,
|
|
tx_hash,
|
|
block_id,
|
|
block_timestamp,
|
|
method_name,
|
|
tx_signer,
|
|
tx_receiver,
|
|
project_name,
|
|
token_id,
|
|
nft_id,
|
|
nft_address,
|
|
network_fee,
|
|
tx_status
|
|
from mints
|