B09Taxn count
Updated 2024-05-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
date(block_timestamp) as date,
count(distinct tx_hash) as tx_count,
count(distinct buyer_address) as active_buyers_wallets,
sum(price_usd) as usd_volume,
platform_name
from
ethereum.nft.ez_nft_sales
where
nft_address = lower('0x4cd0ea8b1bdb5ab9249d96ccf3d8a0d3ada2bc76') and
date(block_timestamp) between current_date()-91 and current_date()-1
group by date, platform_name
QueryRunArchived: QueryRun has been archived