cyphernear price
    Updated 2023-04-13
    with near_price as (select
    date(date_trunc('day', timestamp)) as date,
    avg(price_usd) as price
    from near.core.fact_prices
    where token = 'Wrapped NEAR fungible token'
    group by date)

    select * from near_price
    Run a query to Download Data