connorhchecking
    Updated 2021-11-16
    SELECT
    block_hour,
    supply_apy,
    borrow_apy,
    supply_apy + comp_apy_supply as total_supply_apy,
    borrow_apy - comp_apy_borrow as total_borrow_apy,
    contract_name
    FROM
    compound.market_stats
    WHERE
    hour(block_hour) = 12 AND
    contract_name = 'cDai'
    limit 50
    Run a query to Download Data