Buyers | Sales | Sellers | Volume (USD) | Volume (near) | Max price (near) | Max price ()USD | Avg price (near) | Avg price (USD) | Avg NFT Per Buyer | Avg Volume (USD) per Buyer | |
---|---|---|---|---|---|---|---|---|---|---|---|
1 | 1863 | 5356 | 2042 | 954102 | 138343.253587361 | 400 | 2368 | 25.800681385 | 177.93770981 | 2.874933 | 512.132045089 |
LordkingTotal
Updated 2025-05-17
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
35
36
›
⌄
with sales as (
select
trunc(block_timestamp, 'hour') as hourly,
tx_hash,
seller_address,
buyer_address,
platform_name,
nft_address,
price_usd,
token_id,
price
from
near.nft.ez_nft_sales
),
volume as (
select
hourly,
tx_hash,
seller_address,
buyer_address,
platform_name,
nft_address,
token_id,
price,
round(price_usd) as price_usd
from
sales a
where
nft_address = 'tinkerunion_nft.enleap.near'
),
fnl as (
select
hourly,
tx_hash,
seller_address,
Last run: 25 days ago
1
100B
1s