Skip to content

Commit 7424c1a

Browse files
committed
Scale apy base and apy reward fields to percent values
1 parent 9aaca38 commit 7424c1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/adaptors/gloop/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ const apy = async () => {
9797
project: 'gloop',
9898
symbol: 'USDC',
9999
tvlUsd: tvlUsd,
100-
apyBase: apyBase,
101-
apyReward: apyReward > 0 ? apyReward : null,
100+
apyBase: apyBase * 100,
101+
apyReward: apyReward > 0 ? apyReward * 100 : null,
102102
rewardTokens: apyReward > 0 ? [ADDRESSES.GLOOP] : null,
103103
underlyingTokens: [ADDRESSES.USDC],
104104
poolMeta: 'V1 market',

0 commit comments

Comments
 (0)