kirastudioBNB prices
    Updated 2023-08-15
    select date_trunc(hour,HOUR) as date,
    avg(price) as bnb_price

    from crosschain.core.ez_hourly_prices
    where symbol = 'BNB'
    --and blockchain = 'bsc'
    and hour > '2023-08-07'
    group by 1
    Run a query to Download Data