PLATFORM_NAME | TRANSACTIONS | VOLUME_NEAR | VOLUME_USD | TOTAL_PLATFORM_FEE_USD | AVERAGE_PLATFORM_FEE_USD | |
---|---|---|---|---|---|---|
1 | Apollo42 | 2 | 35 | 100.861406476 | ||
2 | Mitte | 17 | 918.525 | 4117.162649773 | ||
3 | Paras | 5023 | 120714.598618361 | 866394.135737328 | 17327.882714747 | 3.449707887 |
4 | Mintbase | 1 | 135 | 567 | 7.0875 | 7.0875 |
5 | FewAndFar | 4 | 123.7 | 394.016688837 | ||
6 | TradePort | 306 | 16308.529969 | 82332.525081144 |
Afonso_Diaz by marketplace
Updated 2025-04-15
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
buyer_address,
seller_address,
price,
platform_name,
price_usd,
nft_address,
token_id,
platform_fee_usd
from
near.nft.ez_nft_sales
where
nft_address = 'tinkerunion_nft.enleap.near'
)
select
platform_name,
count(distinct tx_hash) as transactions,
sum(price) as volume_near,
sum(price_usd) as volume_usd,
sum(platform_fee_usd) as total_platform_fee_usd,
avg(platform_fee_usd) as average_platform_fee_usd
from
main
group by 1
Last run: 22 days ago
6
306B
2s