Skip to content

Commit 3fcb509

Browse files
maurelianmslipper
andcommitted
Update standard.go for rc.8 (#16505)
* Update standard.go for rc.8 * Update superchain registry with op-contracts/v4.0.0-rc.8 * Update Validator address * Update registry commit * op-deployer: Add support for upgrading and validating v4.0.0 (#16048) * op-deployer: Add support for upgrading to v4.0.0 * simplify versions * rebase, add validator v4 support * update address test * lint --------- Co-authored-by: Matthew Slipper <[email protected]>
1 parent 86a9d55 commit 3fcb509

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
2020
github.com/docker/docker v27.5.1+incompatible
2121
github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3
22-
github.com/ethereum-optimism/superchain-registry/validation v0.0.0-20250603144016-9c45ca7d4508
22+
github.com/ethereum-optimism/superchain-registry/validation v0.0.0-20250620202749-6b65f330434d
2323
github.com/ethereum/go-ethereum v1.15.11
2424
github.com/fatih/color v1.18.0
2525
github.com/fsnotify/fsnotify v1.9.0

op-deployer/pkg/deployer/standard/standard.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const (
4242
ContractsV170Beta1L2Tag = "op-contracts/v1.7.0-beta.1+l2-contracts"
4343
ContractsV200Tag = "op-contracts/v2.0.0"
4444
ContractsV300Tag = "op-contracts/v3.0.0"
45-
ContractsV400Tag = "op-contracts/v4.0.0-rc.7"
45+
ContractsV400Tag = "op-contracts/v4.0.0-rc.8"
4646
)
4747

4848
var DisputeAbsolutePrestate = common.HexToHash("0x038512e02c4c3f7bdaec27d00edf55b7155e0905301e1a88083e4e0a6764d54c")
@@ -86,8 +86,8 @@ var taggedReleases = map[string]TaggedRelease{
8686
ContentHash: common.HexToHash("147b9fae70608da2975a01be3d98948306f89ba1930af7c917eea41a54d87cdb"),
8787
},
8888
ContractsV400Tag: {
89-
ArtifactsHash: common.HexToHash("da1d9ca1a4ebf80c4842ee3414ef1d13db7d1bb9e1fbbded5a21f28479d7cdf4"),
90-
ContentHash: common.HexToHash("67966a2cb9945e1d9ab40e9c61f499e73cdb31d21b8d29a5a5c909b2b13ecd70"),
89+
ArtifactsHash: common.HexToHash("e9c20b45d7f6ad4c83ef9c0d5ba50f18d62493706aec2b556606151879e5b9f1"),
90+
ContentHash: common.HexToHash("8b4f4b0ff67d05dce382e7b7bc0d967cdb9a4d2c88d53d5640b618ac671fb7a0"),
9191
},
9292
}
9393

op-validator/pkg/validations/addresses.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ var addresses = map[uint64]map[string]common.Address{
1616
standard.ContractsV200Tag: common.HexToAddress("0x12a9e38628e5a5b24d18b1956ed68a24fe4e3dc0"),
1717
// Bootstrapped on 04/16/2025 using OP Deployer.
1818
standard.ContractsV300Tag: common.HexToAddress("0xf989Df70FB46c581ba6157Ab335c0833bA60e1f0"),
19-
// Bootstrapped on 06/03/2025 using OP Deployer.
20-
standard.ContractsV400Tag: common.HexToAddress("0x3dfc5e44043DC5998928E0b8280136b7352d3F70"),
19+
// Bootstrapped on 06/19/2025 using OP Deployer.
20+
standard.ContractsV400Tag: common.HexToAddress("0xbb43313d206a9b02032c749ca0828a07c962b4b5"),
2121
},
2222
11155111: {
2323
// Bootstrapped on 03/02/2025 using OP Deployer.
@@ -26,8 +26,8 @@ var addresses = map[uint64]map[string]common.Address{
2626
standard.ContractsV200Tag: common.HexToAddress("0x37739a6b0a3f1e7429499a4ec4a0685439daff5c"),
2727
// Bootstrapped on 04/03/2025 using OP Deployer.
2828
standard.ContractsV300Tag: common.HexToAddress("0x2d56022cb84ce6b961c3b4288ca36386bcd9024c"),
29-
// Bootstrapped on 06/03/2025 using OP Deployer.
30-
standard.ContractsV400Tag: common.HexToAddress("0xA8a1529547306FEC7A32a001705160f2110451aE"),
29+
// Bootstrapped on 06/19/2025 using OP Deployer.
30+
standard.ContractsV400Tag: common.HexToAddress("0xaaabe70a4198ab9e99e1a22b1afa0a43cc7f2c79"),
3131
},
3232
}
3333

0 commit comments

Comments
 (0)