hessTop Players by Volume
    Updated 2025-01-26
    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
    PLAYER
    VOLUME
    SALES
    1
    LeBron James3049312.396786441404
    2
    Steph Curry1125274.6622491529779
    3
    Luka Dončić795824.03176590619401
    4
    Giannis Antetokounmpo786071.17783717819509
    5
    Nikola Jokić743033.58384275426054
    6
    Jayson Tatum578941.38509496625441
    7
    Ja Morant537207.90925553616458
    8
    Kevin Durant535336.37601078819778
    9
    Paolo Banchero509892.663198
    10
    LaMelo Ball488066.79623977812521
    11
    Anthony Edwards458376.26253876719672
    12
    Joel Embiid438583.83974157319202
    13
    Anthony Davis361854.55445819417624
    14
    Jimmy Butler357436.98250418917382
    15
    Shai Gilgeous-Alexander337019.10020459312589
    16
    Zion Williamson309915.01760343810109
    17
    Devin Booker291275.59778443719881
    18
    Jaylen Brown285779.40362857416741
    19
    Damian Lillard277080.21307272517293
    20
    Jamal Murray261553.65003224812484
    30
    1KB
    124s