hbd1994Buyers Distribution | Purchases Volume (USD)
Updated 2022-12-05
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 maintable as (with table1 as ((
select
tx_id,
block_timestamp,
MARKETPLACE,
NFT_COLLECTION,
NFT_ID,
buyer,
seller,
currency,
price,
(price*1) as usd_amount,
date(block_timestamp) as date0,
hour(block_timestamp) as hour0,
minute(block_timestamp) as min0
from flow.core.ez_nft_sales
where TX_SUCCEEDED = true
and currency != 'A.1654653399040a61.FlowToken')
union
(with tab1 as (select
tx_id,
block_timestamp,
MARKETPLACE,
NFT_COLLECTION,
NFT_ID,
buyer,
seller,
currency,
price,
date(block_timestamp) as date0,
hour(block_timestamp) as hour0,
minute(block_timestamp) as min0
from flow.core.ez_nft_sales
where TX_SUCCEEDED = true
and currency = 'A.1654653399040a61.FlowToken'),
price as (select