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: 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"); } } 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 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.