scottincryptoUNI Token Mar 2021
    Updated 2021-06-13
    SELECT
    block_hour,
    borrow_apy*100 as borrow_apy,
    supply_apy*100 as supply_apy,
    borrows_usd,
    supply_usd,
    borrows_usd/supply_usd*100 as collat_ratio,
    token_price
    from compound.market_stats
    where contract_name = 'cUNI' AND
    block_hour > to_date('2021-03-01') and block_hour < to_date('2021-03-20')
    order by block_hour

    Run a query to Download Data