Skip to content

Commit

Permalink
add to addresses.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
apexearth committed Oct 17, 2024
1 parent 4d2718f commit c9daba6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main-mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
OGN_REWARDS_SOURCE_ADDRESS,
OGV_GOVERNANCE_ADDRESS,
XOGN_ADDRESS,
addresses,
} from '@utils/addresses'

import * as dailyStats from './mainnet/post-processors/daily-stats'
Expand Down Expand Up @@ -44,8 +45,8 @@ export const processor = {
...createOriginARMProcessors({
name: 'origin-arm',
from: 20987226,
armAddress: '0x85b78aca6deae198fbf201c82daf6ca21942acc6',
liquidityProviderControllerAddress: '0xf54ebff575f699d281645c6F14Fe427dFFE629CF',
armAddress: addresses.arm.address,
liquidityProviderControllerAddress: addresses.arm.capManager,
}),
],
postProcessors: [exchangeRates, dailyStats, processStatus('mainnet')],
Expand Down
7 changes: 7 additions & 0 deletions src/utils/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,17 @@ export const ogv = {
governance: OGV_GOVERNANCE_ADDRESS,
}

export const arm = {
address: '0x85b78aca6deae198fbf201c82daf6ca21942acc6',
capManager: '0xf54ebff575f699d281645c6f14fe427dffe629cf',
zapper: '0x01f30b7358ba51f637d1aa05d9b4a60f76dad680',
}

export const addresses = {
tokens,
strategies,
oeth,
ousd,
ogv,
arm,
}

0 comments on commit c9daba6

Please sign in to comment.