near-models/models/gold/core__ez_nft_mints.sql
2023-06-06 10:35:23 -06:00

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