SniperTotal NFTs minted
Updated 2023-10-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
-- credit for LittlerData / cryptoys mickey mouse collection @ https://flipsidecrypto.xyz/LittlerData/q/xzDjkIyTK_c0/cryptoys-mickey-mouse-collection
with mint as (
select
event_data
from flow.core.fact_events
where event_contract = 'A.ca63ce22f0d6bdba.Cryptoys'
and event_data:metadata like '%Mickey and Friends: Volume I%'
and EVENT_TYPE = 'Minted'
and TX_SUCCEEDED = 'true'
)
select
count(DISTINCT event_data:id) as NFTs,
(NFTs * 39.99) as volume
from mint
Run a query to Download Data