Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# backend

## 2.1.22

### Patch Changes

- 9ec15ff: add Monday.trade aBIL APR on monad

## 2.1.21

### Patch Changes
Expand Down
12 changes: 12 additions & 0 deletions config/monad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,18 @@ export default <NetworkData>{
},
],
},
{
name: 'aBIL',
url: 'https://mainnet-api.monday.trade/rwa/api/v2/stock-yield/aBIL',
scale: 100,
extractors: [
{
type: 'path',
token: '0x4fc5b9f8933597d3ecf84d0611687e1dc8dd576f',
path: '$.data.apr',
},
],
},
],
},
},
Expand Down
14 changes: 12 additions & 2 deletions config/optimism.ts
Original file line number Diff line number Diff line change
@@ -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 <NetworkData>{
chain: {
Expand Down Expand Up @@ -264,5 +269,10 @@ export default <NetworkData>{
},
},
stakingServices: ['gauge'],
workerJobs: [...activeChainWorkerJobsGeneric, ...activeChainWorkerJobsV2, ...activeChainWorkerJobsV3, ...vebalWorkerJobs, ...datastudioWorkerJobs],
workerJobs: [
...activeChainWorkerJobsGeneric,
...activeChainWorkerJobsV2,
...activeChainWorkerJobsV3,
...vebalWorkerJobs,
],
};
2 changes: 0 additions & 2 deletions config/sonic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
quantAmmWorkerJobs,
stsWorkerJobs,
loopsWorkerJobs,
datastudioWorkerJobs,
reliquaryWorkerJobs,
} from './worker-jobs';

Expand Down Expand Up @@ -228,7 +227,6 @@ export default <NetworkData>{
...quantAmmWorkerJobs,
...stsWorkerJobs,
...loopsWorkerJobs,
...datastudioWorkerJobs,
...reliquaryWorkerJobs,
],
};
7 changes: 0 additions & 7 deletions config/worker-jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
},
];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading