From 8c103f7809daa409d47f723c43532cfd0fb255df Mon Sep 17 00:00:00 2001 From: Pochetes Date: Tue, 23 Sep 2025 10:27:06 -0400 Subject: [PATCH] fix: bug with aerodrome-v1 staked supply ratio --- src/adaptors/aerodrome-v1/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adaptors/aerodrome-v1/index.js b/src/adaptors/aerodrome-v1/index.js index 495b400b7f..f0c13ae74a 100644 --- a/src/adaptors/aerodrome-v1/index.js +++ b/src/adaptors/aerodrome-v1/index.js @@ -232,7 +232,7 @@ const getGaugeApy = async () => { // Only staked supply is eligible for the rewardRate's emissions let stakedSupplyRatio = 1; if (totalSupply[i] !== 0) { - stakedSupplyRatio = poolSupply[i] / totalSupply[i]; + stakedSupplyRatio = totalSupply[i] / poolSupply[i]; } const apyReward =