TRANSACTIONS | BUYERS | SELLERS | NFTS | VOLUME | AVERAGE_PRICE | VOLUME_USD | AVERAGE_PRICE_USD | |
---|---|---|---|---|---|---|---|---|
1 | 8510 | 1630 | 3604 | 10 | 1143625.90374813 | 22.595497278 | 1685271.99037359 | 33.29721594 |
Afonso_DiazTotal
Updated 9 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with
main as (
select * from $query('30cc1e7e-5555-4111-b772-0dfb21b067b1')
)
select
count(distinct tx_hash) as transactions,
count(distinct buyer_address) as buyers,
count(distinct seller_address) as sellers,
count(distinct token_id) as nfts,
sum(price) as volume,
avg(price) as average_price,
sum(price_usd) as volume_usd,
avg(price_usd) as average_price_usd
from
main
Last run: 9 days ago
1
80B
1s