hrst79reg volume 25frb-1march
    Updated 2025-04-01



    with tokens_tab as (
    select
    DISTINCT token_Address
    from ink.price.ez_prices_hourly

    UNION all
    SELECT
    *
    from values('0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee') as a (token_Address)
    ),

    price_tab as(
    select
    hour,
    token_address,
    symbol,
    price ,
    DECIMALS
    from
    ink.price.ez_prices_hourly
    union all

    select
    hour,
    '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' as token_Address,
    'ETH' as symbol,
    price,
    18 as DECIMALS
    from
    ink.price.ez_prices_hourly
    where token_address = '0x4200000000000000000000000000000000000006'
    )
    ,
    Last run: 25 days ago
    DATE
    VOLUME_USD
    CUM_VOLUME_USD
    1
    2025-02-28 00:00:00.000341200.375897692906968.304340747
    2
    2025-02-26 00:00:00.000105820.595537109492881.865347899
    3
    2025-02-25 00:00:00.000387061.26981079387061.26981079
    4
    2025-02-27 00:00:00.00072886.063095156565767.928443055
    4
    246B
    8s