From dc6c30cecd08483fa7344bfefe58261382878cd7 Mon Sep 17 00:00:00 2001 From: horsefacts <109845214+horsefacts@users.noreply.github.com> Date: Tue, 29 Aug 2023 09:35:54 -0700 Subject: [PATCH] chore: new deploy salts (#387) --- foundry.toml | 1 + script/DeployL2.s.sol | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/foundry.toml b/foundry.toml index a1659b2e..f329f4b0 100644 --- a/foundry.toml +++ b/foundry.toml @@ -11,6 +11,7 @@ remappings = [ ] no_match_path = "test/Deploy/*" libs = ["node_modules", "lib"] +bytecode_hash = 'none' [profile.ci] verbosity = 3 diff --git a/script/DeployL2.s.sol b/script/DeployL2.s.sol index 0801d059..97985291 100644 --- a/script/DeployL2.s.sol +++ b/script/DeployL2.s.sol @@ -19,17 +19,17 @@ contract DeployL2 is ImmutableCreate2Deployer { uint24 public constant KEY_REGISTRY_MIGRATION_GRACE_PERIOD = 1 days; bytes32 internal constant STORAGE_RENT_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c64ca5b8f698ba40006af55441); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c65360d99ba6ea4e0161f2b96c); bytes32 internal constant ID_REGISTRY_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c6c17f2545f7f321033d058399); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c63e0688f6d95afa008febf4d7); bytes32 internal constant KEY_REGISTRY_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c61cfdac57930bbf02f9bf306b); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c62af4de6e1f0355029f357f47); bytes32 internal constant SIGNED_KEY_REQUEST_VALIDATOR_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c6034573d08102c1025c2a4b0a); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c6610c0841333604016684800c); bytes32 internal constant BUNDLER_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c65c016829deb72903e93e5d10); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c6e451fc0a34ec4c008c9a31fa); bytes32 internal constant RECOVERY_PROXY_CREATE2_SALT = - bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c6f1a1a35faf58f403ecfeeddb); + bytes32(0x6d2b70e39c6bc63763098e336323591eb77cd0c63f5aeb3ca385240029dc78fe); struct DeploymentParams { address initialIdRegistryOwner;