adambalaOCM11
Updated 2023-05-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
with mint as
(select BLOCK_TIMESTAMP, NFT_TO_ADDRESS ,TOKENID ,MINT_PRICE_ETH ,MINT_PRICE_USD ,NFT_COUNT ,TX_FEE,tx_hash
from ethereum.core.ez_nft_mints
where NFT_ADDRESS=lower('0x960b7a6bcd451c9968473f7bbfd9be826efd549a')
and EVENT_TYPE ='nft_mint'
and NFT_FROM_ADDRESS='0x0000000000000000000000000000000000000000'
)
select
count(distinct NFT_TO_ADDRESS) as minters ,
count(distinct tx_hash) as txhash ,
count(distinct TOKENID) as NFT_minted ,
sum(MINT_PRICE_ETH) as ETH ,
SUM(MINT_PRICE_USD) AS USD ,
SUM(TX_FEE) AS FEE ,
avg(MINT_PRICE_ETH) as avgETH ,
avg(MINT_PRICE_USD) AS avgUSD ,
avg(TX_FEE) AS avgFEE
FROM MINT
Run a query to Download Data