diff --git a/CHANGELOG.md b/CHANGELOG.md index 8605e265e..a61dee085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # backend +## 2.1.5 + +### Patch Changes + +- d545736: new monad aprs + ## 2.1.4 ### Patch Changes diff --git a/config/monad.ts b/config/monad.ts index ceadb3ee9..724200440 100644 --- a/config/monad.ts +++ b/config/monad.ts @@ -68,6 +68,28 @@ export default { }, ], }, + { + url: 'https://www.ether.fi/api/dapp/protocol/protocol-detail', + scale: 100, + extractors: [ + { + type: 'path', + token: '0xa3d68b74bf0528fdd07263c60d6488749044914b', + path: '$.7_day_apr', + }, + ], + }, + { + url: 'https://api.rocketpool.net/mainnet/reth/apr', + scale: 100, + extractors: [ + { + type: 'path', + token: '0xc50f2e735edd9dcd8ccd41ecfe9894e679e3195f', + path: '$.yearlyAPR', + }, + ], + }, { url: 'https://yields.llama.fi/chart/ee40513c-9356-4c53-9f26-446b484a8ae2', scale: 100, @@ -165,6 +187,18 @@ export default { }, ], }, + { + name: 'wnwETH', + url: 'https://app.neverland.money/api/pool-apy', + scale: 100, + extractors: [ + { + type: 'path', + token: '0xb3b850ac62b89fe9f4efb652b516108a8aeb8848', + path: '$.reserves.0xee8c0e9f1bffb4eb878d8f15f368a02a35481242.supply.baseAPY', + }, + ], + }, { name: 'wnUSDT0', url: 'https://app.neverland.money/api/pool-apy', diff --git a/package.json b/package.json index b0c56edb2..0fd01710f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "2.1.4", + "version": "2.1.5", "description": "Backend service for Beethoven X and Balancer", "repository": "https://github.com/balancer/backend", "author": "Beethoven X",