saeedmzn[TopShot NFT trades] - distribution
Updated 2025-02-01
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
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with prices as (
select date_trunc(day,HOUR) date ,
TOKEN_ADDRESS ,
SYMBOL,
avg(PRICE) USD
from flow.price.ez_prices_hourly
where HOUR::date >= '2024-01-01'
group by 1 ,2,3
UNION
select date_trunc(day,HOUR) date ,
'A.ead892083b3e2c6c.DapperUtilityCoin' TOKEN_ADDRESS ,
SYMBOL,
avg(PRICE) USD
from flow.price.ez_prices_hourly
where HOUR::date >= '2024-01-01'
and TOKEN_ADDRESS ='A.b19436aae4d94622.FiatToken'
group by 1 ,2,3
UNION
select date_trunc(day,HOUR) date ,
'A.ead892083b3e2c6c.FlowUtilityToken' TOKEN_ADDRESS ,
SYMBOL,
avg(PRICE) USD
from flow.price.ez_prices_hourly
where HOUR::date >= '2024-01-01'
and SYMBOL ='FLOW'
group by 1 ,2,3
UNION
select date_trunc(day,HOUR) date ,
'A.1654653399040a61.FlowToken' TOKEN_ADDRESS ,
SYMBOL,
avg(PRICE) USD
from flow.price.ez_prices_hourly
where HOUR::date >= '2024-01-01'
and SYMBOL ='FLOW'
group by 1 ,2,3
UNION
QueryRunArchived: QueryRun has been archived