Skip to content

Commit 49f8846

Browse files
authored
route-502: Allowlist New Hooks: Renzo and Aegis (#1119)
* route-502: Allowlist New Hooks: Renzo and Aegis Adding Renzo and Aegis to the v4 hooks' allow list * remove hardcoded tvl * format
1 parent ba07fcd commit 49f8846

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/util/hooksAddressesAllowlist.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ export const COINBASE_VERIFIED_HOOKS_ADDRESS_ON_BASE = '0x5cd525c621AFCa515Bf586
1919
export const BTC_ACC_ON_BASE = '0x704268ac7043aeef50f47b6a03ae68ccf808e044'
2020
export const MEV_TAX_TEST_IN_PROD_ON_UNICHAIN = '0xb9a17e66db950e00822c2b833d6bb304c9b86080'
2121

22+
// example pool: https://app.uniswap.org/explore/pools/unichain/0x7dbe9918ba991e7c2b078ec8ce882a060024a6126927cf66553a359e427f2f6a
23+
export const RENZO_ON_UNICHAIN = '0x09dea99d714a3a19378e3d80d1ad22ca46085080'
24+
// example pool: https://app.uniswap.org/explore/pools/unichain/0x0e3a702c43b613fe8c635e375ca4f0b8d4870526c1e6f795d379f0fb6041ed91
25+
export const AEGIS_ON_UNICHAIN = '0x27bfccf7fdd8215ce5dd86c2a36651d05c8450cc'
26+
2227
// we do not allow v4 pools with non-zero hook address to be routed through in the initial v4 launch.
2328
// this is the ultimate safeguard in the routing subgraph pool cron job.
2429
export const HOOKS_ADDRESSES_ALLOWLIST: { [chain in ChainId]: Array<string> } = {
@@ -69,7 +74,7 @@ export const HOOKS_ADDRESSES_ALLOWLIST: { [chain in ChainId]: Array<string> } =
6974
[ChainId.ZKSYNC]: [ADDRESS_ZERO],
7075
[ChainId.WORLDCHAIN]: [ADDRESS_ZERO],
7176
[ChainId.UNICHAIN_SEPOLIA]: [ADDRESS_ZERO],
72-
[ChainId.UNICHAIN]: [ADDRESS_ZERO, MEV_TAX_TEST_IN_PROD_ON_UNICHAIN],
77+
[ChainId.UNICHAIN]: [ADDRESS_ZERO, MEV_TAX_TEST_IN_PROD_ON_UNICHAIN, RENZO_ON_UNICHAIN, AEGIS_ON_UNICHAIN],
7378
[ChainId.MONAD_TESTNET]: [ADDRESS_ZERO],
7479
[ChainId.SONEIUM]: [ADDRESS_ZERO],
7580
}

0 commit comments

Comments
 (0)