Calculate APRs from Aura pool yield
BAL APR
const rewardPerYear = exactToSimple(rewardRate) * (86_400 * 365); const rewardPerYearUsd = rewardPerYear * rewardTokenPrice; const value = (rewardPerYearUsd / poolTVL) * 100;
AURA APR
đĄ Use the getAuraMintAmount()
mentioned in the first section
const auraPerYear = getAuraMintAmount(balApr.rewardPerYear, auraStaticQuery.data.global);
const auraPerYearUsd = exactToSimple(auraPerYear) * auraPrice;
const value = (auraPerYearUsd / tvl) * 100;
Last updated