chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -10,11 +10,12 @@ contract DeployCCIPWETH9Bridge is Script {
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
address deployer = vm.addr(deployerPrivateKey);
// Get configuration from environment
address ccipRouter = vm.envAddress("CCIP_ROUTER");
// Get configuration from environment. Default router: working CCIP router (0x8078A...); do not use 0x80226... (no code).
address ccipRouter = vm.envOr("CCIP_ROUTER", address(0x8078A09637e47Fa5Ed34F626046Ea2094a5CDE5e));
// Use canonical Mainnet WETH9 address (predeployed in genesis)
address weth9 = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
address feeToken = vm.envAddress("CCIP_FEE_TOKEN"); // LINK token
// address(0) = pay fees in native ETH; else use LINK/ERC20
address feeToken = vm.envOr("CCIP_FEE_TOKEN", address(0));
console.log("Deploying CCIPWETH9Bridge with:");
console.log(" Deployer:", deployer);