COLLECTION | BUYERS | NFT_TRADE | VOLUME | SELLERS | |
---|---|---|---|---|---|
1 | Legendary Pandra King | 154 | 176 | 25063.973786 | 60 |
2 | SPACE ID | 90 | 92 | 56.307235953 | 22 |
3 | Moonlight | 84 | 308 | 21967.710561 | 20 |
4 | BSC-420 BOX | 64 | 274 | 8274.30368 | 66 |
5 | YuliOriginGenOne | 52 | 70 | 4855.803406 | 45 |
6 | KGBNB | 44 | 1705 | 1579.143445 | 69 |
7 | BRC20&BINANCE | 41 | 543 | 70456.271221 | 50 |
8 | The World of Axolotls | 40 | 91 | 1310.544566 | 22 |
9 | MetaX-Creation | 39 | 96 | 31114.65073585 | 30 |
10 | PassCard | 33 | 255 | 26082.223737 | 113 |
0-MIDTop 10 Collection By Mostbuyers 7 day
Updated 2024-01-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select
PROJECT_NAME as collection
,count(distinct BUYER_ADDRESS) as buyers
,count(distinct TOKENID) as nft_trade
,sum(PRICE_USD) as volume
,count(distinct SELLER_ADDRESS) as sellers
--,count(distinct TX_HASH) as sell_count
from bsc.nft.ez_nft_sales
where BLOCK_TIMESTAMP::date>=Current_date-7
and PROJECT_NAME is not null
group by 1
order by 2 desc
limit 10
Last run: about 1 year agoAuto-refreshes every 24 hours
10
403B
4s