adriaparcerisasnear NFT activity dash 2
Updated 2024-12-23
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
›
⌄
SELECT
trunc(block_timestamp,'day') as date,
platform_name,
count(distinct buyer_address) as active_users,
count(distinct tx_hash) as sales,
sum(sales) over (partition by platform_name order by date) as total_sales,
sum(price_usd) as volume,
sum(volume) over (partition by platform_name order by date) as total_volume
from near.nft.ez_nft_sales
where date>=current_date-interval '1 MONTH' and date<current_date --and label_type='nft'
group by 1,2
order by 1 desc
QueryRunArchived: QueryRun has been archived