We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95bec1 commit 8b869a8Copy full SHA for 8b869a8
2 files changed
.changeset/many-pillows-explode.md
@@ -0,0 +1,5 @@
1
+---
2
+'backend': patch
3
4
+
5
+APR - Fix wnLOAZND APY
config/monad.ts
@@ -126,6 +126,15 @@ export default <NetworkData>{
126
name: 'wnloAZND',
127
url: 'https://app.neverland.money/api/pool-apy',
128
scale: 100,
129
+ convert: async (baseAPY: number) => {
130
+ const res = await (
131
+ await fetch('https://app.neverland.money/api/pool-apy')
132
+ ).json();
133
+ const externalAPY =
134
+ (res as any).reserves['0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90']
135
+ .supply.externalAPY / 100;
136
+ return baseAPY + externalAPY;
137
+ },
138
extractors: [
139
{
140
type: 'path',
0 commit comments