BaseMint Parameters
Updated 2024-09-13Copy Reference Fork
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 ,ERC1155_VALUE ,tx_hash
from base.nft.ez_nft_transfers
where
EVENT_TYPE='mint' and
NFT_ADDRESS='0xbdb1a8772409a0c5eeb347060cbf4b41dd7b2c62' and
NFT_FROM_ADDRESS='0x0000000000000000000000000000000000000000'
)
select
count(distinct NFT_TO_ADDRESS) as "Minters" ,
count(distinct tx_hash) as "Mint Transactions" ,
count(distinct TOKENID) as "NFT" ,
sum(ERC1155_VALUE) as "ETH"
FROM MINT
QueryRunArchived: QueryRun has been archived