Skip to content

Commit 7ab885f

Browse files
authored
feat: Alphix - add AlphixLVRFee hook pools, remove old ETH/USDC pool (#6289)
- Add ETH/USDC and ETH/cbBTC pools on new AlphixLVRFee hook (0x7cBbfF9C) - Remove deprecated ETH/USDC pool (0x71c069... on hook 0x831c...) - New hook is a pure dynamic fee hook (no lending/rehypothecation)
1 parent 66759f9 commit 7ab885f

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

dexs/alphix.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@ const config: Record<string, ChainConfig> = {
1515
poolManager: "0x498581ff718922c3f8e6a244956af099b2652b2b",
1616
pools: [
1717
{
18-
id: "0x71c06960eee8003ebf3f869caa480d7032c7088850d951f04de5b46d86ada017",
19-
token: "0x4200000000000000000000000000000000000006", // WETH
18+
id: "0xebb666a5c6449b83536950b975d74deb32aca1537a501b58161a896816b04da6",
19+
token: "0x4200000000000000000000000000000000000006", // ETH/USDC (AlphixLVRFee)
20+
},
21+
{
22+
id: "0x3860784278e9e481ffd0888430ab2af8f2bb1180069f31cde9e1066728bbe73b",
23+
token: "0x4200000000000000000000000000000000000006", // ETH/cbBTC (AlphixLVRFee)
2024
},
2125
{
2226
id: "0xaf9168a5026bd5e398863dc1d0a0513fe21417792f9df4889571fd68d2d8cd71",
23-
token: "0x820c137fa70c8691f0e44dc420a5e53c168921dc", // USDS
27+
token: "0x820c137fa70c8691f0e44dc420a5e53c168921dc", // USDS/USDC
2428
},
2529
],
2630
},

fees/alphix.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ const config: Record<string, ChainConfig> = {
1616
[CHAIN.BASE]: {
1717
poolManager: '0x498581ff718922c3f8e6a244956af099b2652b2b',
1818
pools: [
19-
{ id: '0x71c06960eee8003ebf3f869caa480d7032c7088850d951f04de5b46d86ada017', token: '0x4200000000000000000000000000000000000006' }, // WETH
20-
{ id: '0xaf9168a5026bd5e398863dc1d0a0513fe21417792f9df4889571fd68d2d8cd71', token: '0x820c137fa70c8691f0e44dc420a5e53c168921dc' }, // USDS
19+
// AlphixLVRFee hook (0x7cBbfF9C4fcd74B221C535F4fB4B1Db04F1B9044) — pure swap fee, no lending
20+
{ id: '0xebb666a5c6449b83536950b975d74deb32aca1537a501b58161a896816b04da6', token: '0x4200000000000000000000000000000000000006' }, // ETH/USDC
21+
{ id: '0x3860784278e9e481ffd0888430ab2af8f2bb1180069f31cde9e1066728bbe73b', token: '0x4200000000000000000000000000000000000006' }, // ETH/cbBTC
22+
// Alphix rehypothecation hooks
23+
{ id: '0xaf9168a5026bd5e398863dc1d0a0513fe21417792f9df4889571fd68d2d8cd71', token: '0x820c137fa70c8691f0e44dc420a5e53c168921dc' }, // USDS/USDC
2124
],
2225
hooks: [
23-
'0x831cfdf7c0e194f5369f204b3dd2481b843d60c0',
2426
'0x0e4b892df7c5bcf5010faf4aa106074e555660c0',
2527
],
2628
wrappers: [

0 commit comments

Comments
 (0)