hessTop 50 NFTs by TVL
    Updated 2025-01-26
    with base as (select block_timestamp,
    tx_id,
    EVENT_DATA:"initiator" as user,
    event_data:"nftID"::string as nft,
    event_data:"amount" as amt,
    event_data:"contractTVL"::float as tvl
    from flow.core.fact_events
    where tx_succeeded = 'TRUE'
    and event_contract = 'A.a45ead1cf1ca9eda.FlowRewards'
    and event_type = 'Locked')
    ,
    base2 as (select nft,
    count(DISTINCT tx_id) as transactions,
    count(DISTINCT user) as users,
    sum(amt) as "Locked Flow",
    max(tvl) as "TVL Flow",
    avg(amt) as avg,
    median(amt) as median,
    max(amt) as max
    from base
    group by 1)

    select nft,
    transactions,
    "Locked Flow",
    ("Locked Flow"/"TVL Flow")*100 as "Share from Total",
    avg as "Avg Amount",
    max as "Max Amount",
    median as "Median Amount"
    from base2
    order by 3 desc
    limit 50



    Last run: 2 months ago
    NFT
    TRANSACTIONS
    Locked Flow
    Share from Total
    Avg Amount
    Max Amount
    Median Amount
    1
    2594847451479891200000016.1143131112000000
    2000000.00000000
    2000000
    2
    10775214053547911832299.0016.7909955551832299.001
    1832299.00100000
    1832299
    3
    3078632656270521629312.00118.901067138814656.0005
    1614880.00000000
    814656
    4
    267181326561940116238317.1576696551623831
    1623831.00000000
    1623831
    5
    175921861449780112604506.6061771411260450
    1260450.00000000
    1260450
    6
    137438954477553110000004.2214253051000000
    1000000.00000000
    1000000
    7
    23529548933818827000006.724019615350000
    500000.00000000
    350000
    8
    505775358863811683707.628924412.746740573683707.62892441
    683707.62892441
    683708
    9
    7476679172104716500002.166660256650000
    650000.00000000
    650000
    10
    912594660984181520009.0015.6892149520009.001
    520009.00100000
    520009
    11
    329853498408923479102.745909682.111637662159700.915303227
    9677.04706768
    5
    12
    1759218704499814688882.828499591468888
    468888.00000000
    468888
    13
    1550311405065585424242.696.23637467784848.538
    930.31000000
    350000
    14
    2748779079419494420069.697.572542648105017.4225
    200069.69000000
    109500
    15
    13414041958899514200002.689481623420000
    420000.00000000
    420000
    16
    1429365218253913915621.348057048391562
    391562.00000000
    391562
    17
    1209462800595322388888.8881.357189564194444.444
    200000.88800000
    194444.5
    18
    2264993963186441372229.0015.931056476372229.001
    372229.00100000
    372229
    19
    11434921028839713500002.531382964350000
    350000.00000000
    350000
    20
    27157937305497913470007.151180026347000
    347000.00000000
    347000
    50
    4KB
    4s