Afonso_DiazTotal
Updated 2025-02-04
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
platform_name,
seller_address,
buyer_address,
price_usd,
tokenid
from
base.nft.ez_nft_sales
where
project_name = 'Based Fellas'
)
select
count(distinct tx_hash) as transactions,
count(distinct seller_address) as sellers,
count(distinct buyer_address) as buyers,
sum(price_usd) as volume_usd,
avg(price_usd) as average_price_usd,
max(price_usd) as max_price_usd
from
main
QueryRunArchived: QueryRun has been archived