From 5d6a3c7976b1aa79a700a7738ebaa8103c3575ca Mon Sep 17 00:00:00 2001 From: Pavel Zaborskii Date: Thu, 6 Feb 2025 05:04:48 +0300 Subject: [PATCH 1/4] README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 187487a41..b0980bdb7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This repo contains execution code and artifacts related to superchain deployments and other tasks. -This repo is structured with each network having a high level directory which contains sub directories of any "tasks" which have occured on that network. +This repo is structured with each network having a high level directory which contains sub directories of any "tasks" which have occurred on that network. Tasks include: From 2c9d9f4060239cddf9a249b9cf8ede3a7cb4fe49 Mon Sep 17 00:00:00 2001 From: Pavel Zaborskii Date: Thu, 6 Feb 2025 05:05:55 +0300 Subject: [PATCH 2/4] README.md --- tasks/eth/005-2-ecotone-set-gas-config/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/eth/005-2-ecotone-set-gas-config/README.md b/tasks/eth/005-2-ecotone-set-gas-config/README.md index c2f9f96ec..833c72d72 100644 --- a/tasks/eth/005-2-ecotone-set-gas-config/README.md +++ b/tasks/eth/005-2-ecotone-set-gas-config/README.md @@ -64,7 +64,7 @@ Please see the signing and execution instructions in [SINGLE.md](../../../SINGLE ### State -On the "State" tab, you can verify that the following two state changes occured on the `SystemConfigProxy` at `0x229047fed2591dbec1ef1118d64f7af3db9eb290`: +On the "State" tab, you can verify that the following two state changes occurred on the `SystemConfigProxy` at `0x229047fed2591dbec1ef1118d64f7af3db9eb290`: * `overhead` (key `0x65`) changed from `0xbc = 188` to `0` * `scalar` (key `0x66`) changed From 0d383355de24de36c6649124b69f1d6127ba31b2 Mon Sep 17 00:00:00 2001 From: Pavel Zaborskii Date: Thu, 6 Feb 2025 05:06:56 +0300 Subject: [PATCH 3/4] README.md --- tasks/eth/005-3-ecotone-calldata-gas-config/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/eth/005-3-ecotone-calldata-gas-config/README.md b/tasks/eth/005-3-ecotone-calldata-gas-config/README.md index 5c84c0c0e..becb11f28 100644 --- a/tasks/eth/005-3-ecotone-calldata-gas-config/README.md +++ b/tasks/eth/005-3-ecotone-calldata-gas-config/README.md @@ -69,7 +69,7 @@ Please see the signing and execution instructions in [SINGLE.md](../../../SINGLE ### State -On the "State" tab, you can verify that the following two state changes occured on the `SystemConfigProxy` at `0x229047fed2591dbec1ef1118d64f7af3db9eb290`: +On the "State" tab, you can verify that the following two state changes occurred on the `SystemConfigProxy` at `0x229047fed2591dbec1ef1118d64f7af3db9eb290`: * `overhead` (key `0x65`) changed from `0xbc = 188` to `0`. This state diff will only be there before execution of task `005-2`, which itself sets this to `0` already. From df9a488de915ddea51ee02b9cfc064d1dccb457c Mon Sep 17 00:00:00 2001 From: Pavel Zaborskii Date: Thu, 6 Feb 2025 05:09:36 +0300 Subject: [PATCH 4/4] ProtocolVersionsBump.s.sol --- script/verification/ProtocolVersionsBump.s.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/verification/ProtocolVersionsBump.s.sol b/script/verification/ProtocolVersionsBump.s.sol index b044a042d..c11f57a9c 100644 --- a/script/verification/ProtocolVersionsBump.s.sol +++ b/script/verification/ProtocolVersionsBump.s.sol @@ -14,7 +14,7 @@ abstract contract ProtocolVersionsBump is VerificationBase, SuperchainRegistry { uint32 preRelease; } - uint256 immutable reccomended; + uint256 immutable recommended; uint256 immutable required; address owner; @@ -22,7 +22,7 @@ abstract contract ProtocolVersionsBump is VerificationBase, SuperchainRegistry { constructor(address _owner, ProtoVer memory _recommended, ProtoVer memory _required) { owner = _owner; console.log("Current owner is:", owner); - reccomended = encodeProtocolVersion(_recommended); + recommended = encodeProtocolVersion(_recommended); required = encodeProtocolVersion(_required); console.log( "Will validate ProtocolVersions bump to (reccommended,required): ", @@ -31,7 +31,7 @@ abstract contract ProtocolVersionsBump is VerificationBase, SuperchainRegistry { ); console.log( "Encoded versions are (reccommended,required): ", - LibString.toHexString(reccomended, 32), + LibString.toHexString(recommended, 32), LibString.toHexString(required, 32) ); addAllowedStorageAccess(proxies.ProtocolVersions); @@ -62,6 +62,6 @@ abstract contract ProtocolVersionsBump is VerificationBase, SuperchainRegistry { ProtocolVersions pv = ProtocolVersions(proxies.ProtocolVersions); require(pv.owner() == owner, "PV.owner not expected"); require(ProtocolVersion.unwrap(pv.required()) == required, "Required PV not set correctly"); - require(ProtocolVersion.unwrap(pv.recommended()) == reccomended, "Recommended PV not set correctly"); + require(ProtocolVersion.unwrap(pv.recommended()) == recommended, "Recommended PV not set correctly"); } }