Sbhn_NPTop 50 Tokens with The Lowest Borrow Rate
    Updated 2023-03-01
    select reserve_name,
    avg(reserve_price),
    sum(borrow_rate_stable) as stable,
    sum(borrow_rate_variable) as variable,
    stable + variable as rate
    from ethereum.aave.ez_market_stats
    where block_hour >= CURRENT_DATE - {{Date}}
    group by 1
    order by 5 asc
    limit 50
    Run a query to Download Data