Hessishtg gift - trades 4
    Updated 6 days ago

    with
    metadata_x as
    (select value:PARENT_ADDRESS as collection,
    value:COLLECTION_NAME as collection_name,
    FROM (
    SELECT
    livequery.live.udf_api('https://flipsidecrypto.xyz/api/v1/queries/0cadeda7-07ba-42e2-b0c5-441b32d7cdbf/data/latest') as response
    ), lateral FLATTEN (input => response:data) ),


    address_data as
    (select value:ADDRESS as market_address,
    value:LABEL as market_name,
    value:MARKETPLACE_TYPE as market_type
    FROM (
    SELECT
    livequery.live.udf_api('https://flipsidecrypto.xyz/api/v1/queries/c7805d73-804a-4877-8c4d-1d5857968141/data/latest') as response
    ), lateral FLATTEN (input => response:data)),

    ton_prcie as (
    select hour::date as day,
    round(avg(close),2) as ton_price
    from crosschain.price.fact_prices_ohlc_hourly
    where hour::date >= '2025-01-24'
    and ASSET_ID = 'the-open-network'
    and provider = 'coingecko'
    group by all),


    all_trades as (select BLOCK_TIMESTAMP,
    case when collection_address in (select collection from metadata_x) then 'Telegram gifts'
    else 'other NFTs' end as collection,
    SALE_PRICE/1e9 as trade_price,
    ROYALTY_AMOUNT/1e9 as royalty ,
    MARKETPLACE_FEE/1e9 as fee,
    Last run: 6 days ago
    DATE
    COLLECTION
    MARKET_NAME
    Volume ($TON)
    Volume (USD)
    TRADES
    Revenue ($TON)
    Revenue (USD)
    1
    2025-05-05 00:00:00.000other NFTsfragment597147.2552171860753.37841467491829857.36276193037.66892167
    2
    2025-03-24 00:00:00.000Telegram giftsunlabeled operators191.47710.5287240.225090.8328595
    3
    2025-03-31 00:00:00.000other NFTsfragment397941.9719891467456.86162687395919897.09860573372.84310166
    4
    2025-03-17 00:00:00.000other NFTsfragment467754.5493691679169.30429592432223387.7274783958.46522024
    5
    2025-02-24 00:00:00.000other NFTsfragment331511.1625031133026.98599984365616575.55812656651.34930278
    6
    2025-02-10 00:00:00.000other NFTsfragment217010.037392820982.47088036310810850.50187341049.12355697
    7
    2025-05-26 00:00:00.000Telegram giftsunlabeled operators7303.2523007.9037523.055119.6275394
    8
    2025-04-14 00:00:00.000other NFTsmarketapp61945.479331181888.4345078530824.9413772.5729621
    9
    2025-03-24 00:00:00.000other NFTsfragment526964.7411491974990.8275666458326348.23706798749.54141444
    10
    2025-05-12 00:00:00.000other NFTsgetgems143622.228158466822.068314523426915.365352922.95687487
    11
    2025-02-17 00:00:00.000other NFTsgetgems183684.938561672223.3523153298221041.2991743822.02418577
    12
    2025-04-07 00:00:00.000other NFTsgetgems248518.872571740703.693403315232749.075512239.34256672
    13
    2025-01-20 00:00:00.000other NFTsmarketapp5033.68043825601.4789315617937.699985191.71378107
    14
    2025-05-26 00:00:00.000other NFTsunlabeled operators20662.34400765146.841614765052619.820828293.64017949
    15
    2025-03-03 00:00:00.000Telegram giftsunlabeled operators53.89157.567330.278890.8008038
    16
    2025-01-20 00:00:00.000other NFTsunlabeled operators4211.79288421433.38069592189553.1762092814.94968456
    17
    2025-06-09 00:00:00.000other NFTsfragment224822.416901736308.88562222201611241.12084536815.44428095
    18
    2025-01-27 00:00:00.000Telegram giftsunlabeled operators1715.78339.3054817.2271835.321109
    19
    2025-05-05 00:00:00.000Telegram giftsgetgems33548.158397107088.605098449961669.1579255329.68027158
    20
    2025-03-10 00:00:00.000Telegram giftsunlabeled operators1298.933793.8893175.0336313.3013898
    ...
    161
    18KB
    4s