From 2b4fa410ebeeee8351499058c850e80a84972fc0 Mon Sep 17 00:00:00 2001 From: Bruno Eidam Guerios Date: Tue, 3 Mar 2026 11:15:22 -0300 Subject: [PATCH] APR - Fix wnLOAZND APY --- .changeset/many-pillows-explode.md | 5 +++++ config/monad.ts | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 .changeset/many-pillows-explode.md diff --git a/.changeset/many-pillows-explode.md b/.changeset/many-pillows-explode.md new file mode 100644 index 000000000..2d4876019 --- /dev/null +++ b/.changeset/many-pillows-explode.md @@ -0,0 +1,5 @@ +--- +'backend': patch +--- + +APR - Fix wnLOAZND APY diff --git a/config/monad.ts b/config/monad.ts index 2e995c756..4f773a428 100644 --- a/config/monad.ts +++ b/config/monad.ts @@ -126,6 +126,15 @@ export default { name: 'wnloAZND', url: 'https://app.neverland.money/api/pool-apy', scale: 100, + convert: async (baseAPY: number) => { + const res = await ( + await fetch('https://app.neverland.money/api/pool-apy') + ).json(); + const externalAPY = + (res as any).reserves['0x9c82eb49b51f7dc61e22ff347931ca32adc6cd90'] + .supply.externalAPY / 100; + return baseAPY + externalAPY; + }, extractors: [ { type: 'path',