ahkek76NFT minted
    Updated 2024-10-16
    with aptos_mint as (
    select dt, count(distinct ez_nft_mints_id) as nft_minted,
    count(distinct nft_to_address) as minter, sum(total_price_usd) as mint_volume
    from (
    select date_trunc('month', block_timestamp) as dt,
    tx_hash, nft_to_address, nft_address, project_name, nft_count, total_price,
    total_price_usd, ez_nft_mints_id
    from aptos.nft.ez_nft_mints
    where project_name not like '%swap%'
    )
    group by 1
    ),

    arbitrum_mint as (
    select dt, count(distinct ez_nft_transfers_id) as nft_minted,
    count(distinct nft_to_address) as minter
    from (
    select date_trunc('month', block_timestamp) as dt,
    tx_hash, nft_to_address, project_name, tokenid, ez_nft_transfers_id
    from arbitrum.nft.ez_nft_transfers
    where nft_from_address = lower('0x0000000000000000000000000000000000000000')
    and project_name not like '%swap%'
    )
    group by 1
    ),

    avax_mint as (
    select dt, count(distinct ez_nft_transfers_id) as nft_minted,
    count(distinct nft_to_address) as minter
    from (
    select date_trunc('month', block_timestamp) as dt,
    tx_hash, nft_to_address, project_name, tokenid, ez_nft_transfers_id
    from avalanche.nft.ez_nft_transfers
    where nft_from_address = lower('0x0000000000000000000000000000000000000000')
    and project_name not like '%swap%'
    )
    QueryRunArchived: QueryRun has been archived