WatchmenNFT currency used daywise
Updated 2023-12-01
999
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
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with DapperUtilityCoin as (
select
block_timestamp :: date as date,
count(DISTINCT tx_id) as DapperUtilityCoin
from
flow.nft.ez_nft_sales
where
currency ilike '%DapperUtilityCoin%'
group by
1
),
FlowToken as (
select
block_timestamp :: date as date,
count(DISTINCT tx_id) as FlowToken
from
flow.nft.ez_nft_sales
where
currency ilike '%FlowToken%'
group by
1
),
FUSD as (
select
block_timestamp :: date as date,
count(DISTINCT tx_id) as FUSD
from
flow.nft.ez_nft_sales
where
currency ilike '%FUSD%'
group by
1
),
FazeUtilityCoin as (
select
Run a query to Download Data