fix: NPM_ADDR may be Base Sepolia address in both files (#686)
Replace 0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2 (Base Sepolia NonfungiblePositionManager) with the correct Base mainnet address 0x03a520B32c04bf3beef7BEb72E919cF822Ed34F3 in all four files that referenced it, and add an inline comment citing the chain and source. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
93e3495252
commit
cbab4c36da
4 changed files with 8 additions and 4 deletions
|
|
@ -34,7 +34,8 @@ from pathlib import Path
|
|||
# ── Constants (must match red-team.sh and AttackRunner.s.sol) ──────────────────
|
||||
WETH_ADDR = "0x4200000000000000000000000000000000000006"
|
||||
SWAP_ROUTER_ADDR = "0x94cC0AaC535CCDB3C01d6787D6413C739ae12bc4"
|
||||
NPM_ADDR = "0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2"
|
||||
# Base mainnet NonfungiblePositionManager — https://basescan.org/address/0x03a520B32c04bf3beef7BEb72E919cF822Ed34F3
|
||||
NPM_ADDR = "0x03a520B32c04bf3beef7BEb72E919cF822Ed34F3"
|
||||
|
||||
|
||||
def _normalise_addr(addr: str) -> str:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue