Skip to content

Commit

Permalink
chore(v20): update gatewayEVM and ERC20Custody salts (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis authored Oct 25, 2024
1 parent 0ae7b3b commit 98fb30b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions v2/scripts/deploy/deterministic/DeployERC20Custody.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
4 changes: 2 additions & 2 deletions v2/scripts/deploy/deterministic/DeployGatewayEVM.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 98fb30b

Please sign in to comment.