TRANSACTIONS | BUYERS | SELLERS | TOTAL_COLLECTIONS | TOTAL_TOKENS | TOTAL_VOLUME_NEAR | AVERAGE_VOLUME_NEAR | MEDIAN_VOLUME_NEAR | TOTAL_VOLUME_USD | AVERAGE_VOLUME_USD | MEDIAN_VOLUME_USD | MAXIMUM_PRICE | MAXIMUM_PRICE_USD | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 12395 | 4013 | 3212 | 99 | 9835 | 89054.933736087 | 7.18474657 | 1.2 | 366229.042346501 | 29.546514106 | 4.8 | 300 | 1776 |
Afonso_DiazGeneral
Updated 2 days ago
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
buyer_address,
seller_address,
price,
price_usd,
nft_address,
token_id
from near.nft.ez_nft_sales
where
platform_name = 'TradePort'
)
select
count(distinct tx_hash) as transactions,
count(distinct buyer_address) as buyers,
count(distinct seller_address) as sellers,
count(distinct nft_address) as total_collections,
count(distinct token_id) as total_tokens,
sum(price) as total_volume_near,
avg(price) as average_volume_near,
median(price) as median_volume_near,
sum(price_usd) as total_volume_usd,
avg(price_usd) as average_volume_usd,
median(price_usd) as median_volume_usd,
max(price) as maximum_price,
max(price_usd) as maximum_price_usd
from
main
Last run: 1 day ago
1
101B
2s