diff --git a/CHANGELOG.md b/CHANGELOG.md index f15536f19..43857aa12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # backend +## 2.1.22 + +### Patch Changes + +- 9ec15ff: add Monday.trade aBIL APR on monad + ## 2.1.21 ### Patch Changes diff --git a/config/monad.ts b/config/monad.ts index 55cd5af50..0d210d602 100644 --- a/config/monad.ts +++ b/config/monad.ts @@ -315,6 +315,18 @@ export default { }, ], }, + { + name: 'aBIL', + url: 'https://mainnet-api.monday.trade/rwa/api/v2/stock-yield/aBIL', + scale: 100, + extractors: [ + { + type: 'path', + token: '0x4fc5b9f8933597d3ecf84d0611687e1dc8dd576f', + path: '$.data.apr', + }, + ], + }, ], }, }, diff --git a/config/optimism.ts b/config/optimism.ts index 98adda721..c55e75d8b 100644 --- a/config/optimism.ts +++ b/config/optimism.ts @@ -1,7 +1,12 @@ import { AaveV3Optimism } from '@aave-dao/aave-address-book'; import { env } from '../apps/env'; import { NetworkData } from './types'; -import { activeChainWorkerJobsGeneric, activeChainWorkerJobsV2, activeChainWorkerJobsV3, vebalWorkerJobs, datastudioWorkerJobs } from './worker-jobs'; +import { + activeChainWorkerJobsGeneric, + activeChainWorkerJobsV2, + activeChainWorkerJobsV3, + vebalWorkerJobs, +} from './worker-jobs'; export default { chain: { @@ -264,5 +269,10 @@ export default { }, }, stakingServices: ['gauge'], - workerJobs: [...activeChainWorkerJobsGeneric, ...activeChainWorkerJobsV2, ...activeChainWorkerJobsV3, ...vebalWorkerJobs, ...datastudioWorkerJobs], + workerJobs: [ + ...activeChainWorkerJobsGeneric, + ...activeChainWorkerJobsV2, + ...activeChainWorkerJobsV3, + ...vebalWorkerJobs, + ], }; diff --git a/config/sonic.ts b/config/sonic.ts index 2a7852aa5..f7264fe00 100644 --- a/config/sonic.ts +++ b/config/sonic.ts @@ -8,7 +8,6 @@ import { quantAmmWorkerJobs, stsWorkerJobs, loopsWorkerJobs, - datastudioWorkerJobs, reliquaryWorkerJobs, } from './worker-jobs'; @@ -228,7 +227,6 @@ export default { ...quantAmmWorkerJobs, ...stsWorkerJobs, ...loopsWorkerJobs, - ...datastudioWorkerJobs, ...reliquaryWorkerJobs, ], }; diff --git a/config/worker-jobs.ts b/config/worker-jobs.ts index a3430abb8..c6c9878fc 100644 --- a/config/worker-jobs.ts +++ b/config/worker-jobs.ts @@ -253,10 +253,3 @@ export const reliquaryWorkerJobs: WorkerJob[] = [ interval: (env.DEPLOYMENT_ENV as DeploymentEnv) === 'canary' ? every(2, 'hours') : every(1, 'hours'), }, ]; - -export const datastudioWorkerJobs: WorkerJob[] = [ - { - name: 'feed-data-to-datastudio', - interval: (env.DEPLOYMENT_ENV as DeploymentEnv) === 'canary' ? every(10, 'minutes') : every(10, 'minutes'), - }, -]; diff --git a/package.json b/package.json index f5f7038dc..b543a44f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "2.1.21", + "version": "2.1.22", "description": "Backend service for Beethoven X and Balancer", "repository": "https://github.com/balancer/backend", "author": "Beethoven X",