diff --git a/CHANGELOG.md b/CHANGELOG.md index 43857aa12..999091320 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # backend +## 2.1.23 + +### Patch Changes + +- f583ac7: add Curvance and Neverland wrapper APRs on Monad + ## 2.1.22 ### Patch Changes diff --git a/config/monad.ts b/config/monad.ts index 0d210d602..ba926d3c1 100644 --- a/config/monad.ts +++ b/config/monad.ts @@ -159,6 +159,30 @@ export default { }, ], }, + { + name: 'blbUSDC', + url: 'https://api2.curvance.com/snapshots/latest/token/0x7f779f7f5316f6164dc5a25422a5ee51504b284a', + scale: 100, + extractors: [ + { + type: 'path', + token: '0x215394b5677cb7a18b6fa8cc2cd155c024ee6b2e', + path: '$.percent_supply_apy', + }, + ], + }, + { + name: 'blbAUSD', + url: 'https://api2.curvance.com/snapshots/latest/token/0xbde2459a033f20442ce18483cdd48643d80c6c93', + scale: 100, + extractors: [ + { + type: 'path', + token: '0xc2ddc1004ca0d6cc4bfd1dcd03dcf855bed8e670', + path: '$.percent_supply_apy', + }, + ], + }, { name: 'wnWMON', url: 'https://app.neverland.money/api/pool-apy', @@ -214,6 +238,30 @@ export default { }, ], }, + { + name: 'wnWBTC', + url: 'https://app.neverland.money/api/pool-apy', + scale: 100, + extractors: [ + { + type: 'path', + token: '0x8959f4e6ed1f4567a464959793d5f8f6f33c1c8b', + path: '$.reserves.0x0555e30da8f98308edb960aa94c0db47230d2b9c.supply.baseAPY', + }, + ], + }, + { + name: 'wnCBBTC', + url: 'https://app.neverland.money/api/pool-apy', + scale: 100, + extractors: [ + { + type: 'path', + token: '0x98a297e6424787e57af119949d7e00b721f832bb', + path: '$.reserves.0xd18b7ec58cdf4876f6afebd3ed1730e4ce10414b.supply.baseAPY', + }, + ], + }, { name: 'wnwETH', url: 'https://app.neverland.money/api/pool-apy', diff --git a/package.json b/package.json index b543a44f5..f4a47862b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "2.1.22", + "version": "2.1.23", "description": "Backend service for Beethoven X and Balancer", "repository": "https://github.com/balancer/backend", "author": "Beethoven X",