freemartianDay 9 Pixlemon Kevin summer Hourly
Updated 2023-09-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
-- forked from Day 9 Pixlemon Kevin summer @ https://flipsidecrypto.xyz/edit/queries/b64e2ed5-8d7d-471b-b15f-c2abf8d70755
-- forked from Day 8 NFTs @ https://flipsidecrypto.xyz/edit/queries/74c65415-7e01-412d-a524-a1a675f636ed
with mints as (
select * from base.core.ez_nft_transfers
where nft_address in (
'0x9d9c0c4e764117fccd2bc3548f0e95c806e6f996')
and event_type = 'mint')
select
date_trunc('hour', block_timestamp) as time,
project_name as Quest_NFT,
count(distinct nft_to_address) as Unique_minters,
count(tx_hash) as Total_mints,
Total_mints * 0.000777 as Earnings
from mints
group by 1, 2
Run a query to Download Data