diff --git a/.changeset/khaki-trainers-agree.md b/.changeset/khaki-trainers-agree.md new file mode 100644 index 00000000..4a67b3c6 --- /dev/null +++ b/.changeset/khaki-trainers-agree.md @@ -0,0 +1,5 @@ +--- +'backend': patch +--- + +adding aura balance tracking to fraxtal diff --git a/modules/network/fraxtal.ts b/modules/network/fraxtal.ts index 48d91556..4b0a8b64 100644 --- a/modules/network/fraxtal.ts +++ b/modules/network/fraxtal.ts @@ -11,6 +11,7 @@ import { env } from '../../apps/env'; import { YbTokensAprService } from '../pool/lib/apr-data-sources/yb-tokens-apr.service'; import { BalancerSubgraphService } from '../subgraphs/balancer-subgraph/balancer-subgraph.service'; import config from '../../config'; +import { UserSyncAuraBalanceService } from '../user/lib/user-sync-aura-balance.service'; export const fraxtalNetworkData = config.FRAXTAL; @@ -24,7 +25,7 @@ export const fraxtalNetworkConfig: NetworkConfig = { new SwapFeeAprService(), new GaugeAprService(tokenService, [fraxtalNetworkData.bal!.address]), ], - userStakedBalanceServices: [new UserSyncGaugeBalanceService()], + userStakedBalanceServices: [new UserSyncGaugeBalanceService(), new UserSyncAuraBalanceService()], services: { balancerSubgraphService: new BalancerSubgraphService( fraxtalNetworkData.subgraphs.balancer,