nsa2000dex10
    Updated 2022-12-22
    with tb AS (select
    distinct tx_hash,
    BLOCK_TIMESTAMP,
    TX_FEE,
    NFT_Address
    from ethereum.core.ez_nft_mints where EVENT_TYPE='nft_mint')
    select
    label AS "project name",
    avg(TX_FEE) AS "average Fee amount"
    from tb inner join ethereum.core.dim_labels on NFT_Address=Address
    where BLOCK_TIMESTAMP >= '2022-01-01'
    group by 1 order by 2 desc limit 10
    Run a query to Download Data