Skip to content

Commit

Permalink
more hook addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Jan 17, 2025
1 parent 18abe26 commit 43d4f85
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/happy-dogs-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'backend': patch
---

more hook addresses
7 changes: 5 additions & 2 deletions config/sepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,14 @@ export default <NetworkData>{
},
},
hooks: {
lotteryHook: ['0x2d8d157fd6cf773624d97808d77081ee45caa7d4'],
lotteryHook: ['0x2d8d157fd6cf773624d97808d77081ee45caa7d4', '0x3c194f14527b4e02b0d09274eca72ccb67613fac'],
feeTakinghook: ['0xbb1761af481364a6bd7fdbdb8cfa23abd85f0263'],
exitFeeHook: ['0xea672a54f0aa38fc5f0a1a481467bebfe3c71046'],
stableSurgeHook: ['0x1adc55adb4caae71abb4c33f606493f4114d2091'],
veBALFeeDiscountHook: ['0xedb47231a12bdf64b8d951ded3351128f95b7e80'],
veBALFeeDiscountHook: [
'0xedb47231a12bdf64b8d951ded3351128f95b7e80',
'0x4b8540ae9f341656dcb7959c2abd8830f3d95738',
],
directionalFeeHook: ['0xd68372e85d8a14afa5fdb3d506bf765939aaf382'],
nftLiquidityPositionHook: ['0xd06dd26c7209cfe0752725f068299be69a7c9549'],
},
Expand Down
2 changes: 1 addition & 1 deletion modules/sources/subgraphs/joined-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const getV3JoinedSubgraphClient = (vaultSubgraphUrl: string, poolsSubgrap
const vaultPoolsMap = vaultPools.reduce((acc, pool) => {
acc[pool.id] = pool;
return acc;
}, {} as Record<string, typeof vaultPools[0]>);
}, {} as Record<string, (typeof vaultPools)[0]>);
const vaultPoolIds = Object.keys(vaultPoolsMap);
const pools = await poolsSubgraphClient.getAllPools({ id_in: vaultPoolIds });
return pools.map((pool) => ({
Expand Down

0 comments on commit 43d4f85

Please sign in to comment.