connorhchecking
Updated 2021-11-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
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