nsa2000dex10
Updated 2022-12-22Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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