From 98fb30ba90134743b5d23e136a094171b6135f6a Mon Sep 17 00:00:00 2001 From: Lucas Bertrand Date: Fri, 25 Oct 2024 14:59:59 +0200 Subject: [PATCH] chore(v20): update gatewayEVM and ERC20Custody salts (#416) --- v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol | 4 ++-- v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol b/v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol index f90cb404..43c8a135 100644 --- a/v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol +++ b/v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol @@ -14,8 +14,8 @@ contract DeployERC20Custody is Script { address expectedImplAddress; address expectedProxyAddress; - bytes32 implSalt = keccak256("ERC20Custody"); - bytes32 proxySalt = keccak256("ERC20CustodyProxy"); + bytes32 implSalt = keccak256("ERC20Custody-2"); + bytes32 proxySalt = keccak256("ERC20CustodyProxy-2"); vm.startBroadcast(); diff --git a/v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol b/v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol index fe9e90d4..9cf2a0c2 100644 --- a/v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol +++ b/v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol @@ -15,8 +15,8 @@ contract DeployGatewayEVM is Script { address expectedImplAddress; address expectedProxyAddress; - bytes32 implSalt = keccak256("GatewayEVM"); - bytes32 proxySalt = keccak256("GatewayEVMProxy"); + bytes32 implSalt = keccak256("GatewayEVM-2"); + bytes32 proxySalt = keccak256("GatewayEVMProxy-2"); vm.startBroadcast();