yasmindaily Top collection status copy copy copy
Updated 2024-05-26
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
›
⌄
-- select
-- project_name,
-- sum(TOTAL_PRICE_USD) as VOLUME_USD
-- -- count(DISTINCT tx_hash) as TX,
-- -- count(DISTINCT Seller_address) as Sellers,
-- -- count(DISTINCT buyer_address) as Buyers
-- from
-- aptos.nft.ez_nft_sales
-- WHERE block_timestamp::date >= '{{Start_Date}}'
-- AND block_timestamp::date <= '{{End_Date}}'
-- AND project_name IS NOT NULL
-- AND EVENT_TYPE='sale'
-- GROUP by 1
-- ORDER by 2 DESC
-- forked from Top collection status copy @ https://flipsidecrypto.xyz/edit/queries/8f0c429e-2e9d-4ad4-92da-87e2f206e97a
select
trunc(block_timestamp,'week') as date,
sum(TOTAL_PRICE_USD) as VOLUME_USD,
count(DISTINCT tx_hash) as TX,
count(DISTINCT Seller_address) as Sellers,
count(DISTINCT buyer_address) as Buyers
from
aptos.nft.ez_nft_sales
QueryRunArchived: QueryRun has been archived