Skip to content

Commit cd53168

Browse files
authored
Merge pull request ethereum#196 from ethereum-optimism/delta
params: add note about Delta, update protocol version to indicate Delta pre-release support
2 parents 25fd986 + 7e56d89 commit cd53168

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

params/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ type ChainConfig struct {
358358
BedrockBlock *big.Int `json:"bedrockBlock,omitempty"` // Bedrock switch block (nil = no fork, 0 = already on optimism bedrock)
359359
RegolithTime *uint64 `json:"regolithTime,omitempty"` // Regolith switch time (nil = no fork, 0 = already on optimism regolith)
360360
CanyonTime *uint64 `json:"canyonTime,omitempty"` // Canyon switch time (nil = no fork, 0 = already on optimism canyon)
361+
// Delta: the Delta upgrade does not affect the execution-layer, and is thus not configurable in the chain config.
361362

362363
InteropTime *uint64 `json:"interopTime,omitempty"` // Interop switch time (nil = no fork, 0 = already on optimism interop)
363364

params/superchain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/ethereum/go-ethereum/common"
1212
)
1313

14-
var OPStackSupport = ProtocolVersionV0{Build: [8]byte{}, Major: 4, Minor: 0, Patch: 0, PreRelease: 1}.Encode()
14+
var OPStackSupport = ProtocolVersionV0{Build: [8]byte{}, Major: 5, Minor: 0, Patch: 0, PreRelease: 1}.Encode()
1515

1616
func init() {
1717
for id, ch := range superchain.OPChains {

0 commit comments

Comments
 (0)