select 100 * avg(borrow_rate_stable) as borrow_rate,
reserve_name as token
from flipside_prod_db.aave.market_stats
where block_hour::date >= '{{start_date}}' and block_hour::date <= '{{end_date}}'
and aave_version = 'Aave V2'
and token like '{{token_name}}'
group by token