saeedmzn[TopShot NFT trades] - distribution
    Updated 2025-02-01
    with prices as (
    select date_trunc(day,HOUR) date ,
    TOKEN_ADDRESS ,
    SYMBOL,
    avg(PRICE) USD
    from flow.price.ez_prices_hourly
    where HOUR::date >= '2024-01-01'
    group by 1 ,2,3
    UNION
    select date_trunc(day,HOUR) date ,
    'A.ead892083b3e2c6c.DapperUtilityCoin' TOKEN_ADDRESS ,
    SYMBOL,
    avg(PRICE) USD
    from flow.price.ez_prices_hourly
    where HOUR::date >= '2024-01-01'
    and TOKEN_ADDRESS ='A.b19436aae4d94622.FiatToken'
    group by 1 ,2,3
    UNION
    select date_trunc(day,HOUR) date ,
    'A.ead892083b3e2c6c.FlowUtilityToken' TOKEN_ADDRESS ,
    SYMBOL,
    avg(PRICE) USD
    from flow.price.ez_prices_hourly
    where HOUR::date >= '2024-01-01'
    and SYMBOL ='FLOW'
    group by 1 ,2,3
    UNION
    select date_trunc(day,HOUR) date ,
    'A.1654653399040a61.FlowToken' TOKEN_ADDRESS ,
    SYMBOL,
    avg(PRICE) USD
    from flow.price.ez_prices_hourly
    where HOUR::date >= '2024-01-01'
    and SYMBOL ='FLOW'
    group by 1 ,2,3
    UNION
    QueryRunArchived: QueryRun has been archived