freemartianShroomDK Minted
Updated 2022-07-02
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
Select
count(tx_hash) as nft_minted,
Count(distinct nft_to_address) as Minters_count,
Sum(tx_fee) as mint_fee,
Date_trunc('day', block_timestamp::date) as TIME
from ethereum.core.ez_nft_mints
Where nft_address = '0xdfb57b6e16ddb97aeb8847386989f4dca7202146'
and nft_from_address = '0x0000000000000000000000000000000000000000'
And event_type = 'nft_mint'
group by TIME
order by time ASC
Run a query to Download Data