PLAYER | VOLUME | SALES | |
---|---|---|---|
1 | LeBron James | 3049312.3967864 | 41404 |
2 | Steph Curry | 1125274.66224915 | 29779 |
3 | Luka Dončić | 795824.031765906 | 19401 |
4 | Giannis Antetokounmpo | 786071.177837178 | 19509 |
5 | Nikola Jokić | 743033.583842754 | 26054 |
6 | Jayson Tatum | 578941.385094966 | 25441 |
7 | Ja Morant | 537207.909255536 | 16458 |
8 | Kevin Durant | 535336.376010788 | 19778 |
9 | Paolo Banchero | 509892.66 | 3198 |
10 | LaMelo Ball | 488066.796239778 | 12521 |
11 | Anthony Edwards | 458376.262538767 | 19672 |
12 | Joel Embiid | 438583.839741573 | 19202 |
13 | Anthony Davis | 361854.554458194 | 17624 |
14 | Jimmy Butler | 357436.982504189 | 17382 |
15 | Shai Gilgeous-Alexander | 337019.100204593 | 12589 |
16 | Zion Williamson | 309915.017603438 | 10109 |
17 | Devin Booker | 291275.597784437 | 19881 |
18 | Jaylen Brown | 285779.403628574 | 16741 |
19 | Damian Lillard | 277080.213072725 | 17293 |
20 | Jamal Murray | 261553.650032248 | 12484 |
hessTop Players by Volume
Updated 2025-01-26
999
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 price as ( select hour::date as date,
avg(price) as avg_price
from flow.price.ez_prices_hourly
where symbol = 'FLOW'
group by 1
)
,
base as (select block_timestamp,
tx_id,
nft_id,
buyer,
price,
seller,
case when currency ilike '%flow%' then price*avg_price else price end as price_usd
from flow.nft.ez_nft_sales a left outer join price b on a.block_timestamp::date = b.date
where nft_collection = 'A.0b2a3299cc857e29.TopShot'
)
,
base1 as ( select *
from flow.core.fact_events
where event_type in ('OfferCompleted','ListingCompleted')
and event_contract in ('A.3cdbb3d569211ff3.NFTStorefrontV2','A.b8ea91944fd51c43.OffersV2')
and tx_succeeded = 'true'
and event_data:purchased = 'true')
,
base2 as ( select EVENT_DATA:offerAddress::string as buyer,
EVENT_DATA:offerAmount::float as sales_amount,
EVENT_DATA:offerType::string as collection,
EVENT_DATA:nftId::integer as nft_id,
EVENT_DATA:paymentVaultType as token,
tx_id,
trunc(block_timestamp,'day') as day
from base1
where event_type = 'OfferCompleted'
AND event_data::string like '%0x6590f8918060ef13%')
,
Last run: 2 months ago
30
1KB
124s