types.go 15.8 KB
Newer Older
1 2 3
package rollup

import (
4
	"context"
5 6 7
	"errors"
	"fmt"
	"math/big"
8
	"time"
9 10 11

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/types"
12
	"github.com/ethereum/go-ethereum/log"
13
	"github.com/ethereum/go-ethereum/params"
14

15
	"github.com/ethereum-optimism/optimism/op-service/eth"
16 17
)

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
var (
	ErrBlockTimeZero                 = errors.New("block time cannot be 0")
	ErrMissingChannelTimeout         = errors.New("channel timeout must be set, this should cover at least a L1 block time")
	ErrInvalidSeqWindowSize          = errors.New("sequencing window size must at least be 2")
	ErrMissingGenesisL1Hash          = errors.New("genesis L1 hash cannot be empty")
	ErrMissingGenesisL2Hash          = errors.New("genesis L2 hash cannot be empty")
	ErrGenesisHashesSame             = errors.New("achievement get! rollup inception: L1 and L2 genesis cannot be the same")
	ErrMissingGenesisL2Time          = errors.New("missing L2 genesis time")
	ErrMissingBatcherAddr            = errors.New("missing genesis system config batcher address")
	ErrMissingOverhead               = errors.New("missing genesis system config overhead")
	ErrMissingScalar                 = errors.New("missing genesis system config scalar")
	ErrMissingGasLimit               = errors.New("missing genesis system config gas limit")
	ErrMissingBatchInboxAddress      = errors.New("missing batch inbox address")
	ErrMissingDepositContractAddress = errors.New("missing deposit contract address")
	ErrMissingL1ChainID              = errors.New("L1 chain ID must not be nil")
	ErrMissingL2ChainID              = errors.New("L2 chain ID must not be nil")
	ErrChainIDsSame                  = errors.New("L1 and L2 chain IDs must be different")
	ErrL1ChainIDNotPositive          = errors.New("L1 chain ID must be non-zero and positive")
	ErrL2ChainIDNotPositive          = errors.New("L2 chain ID must be non-zero and positive")
)

39 40 41 42 43 44 45
type Genesis struct {
	// The L1 block that the rollup starts *after* (no derived transactions)
	L1 eth.BlockID `json:"l1"`
	// The L2 block the rollup starts from (no transactions, pre-configured state)
	L2 eth.BlockID `json:"l2"`
	// Timestamp of L2 block
	L2Time uint64 `json:"l2_time"`
46 47 48 49
	// Initial system configuration values.
	// The L2 genesis block may not include transactions, and thus cannot encode the config values,
	// unlike later L2 blocks.
	SystemConfig eth.SystemConfig `json:"system_config"`
50 51 52 53 54 55 56 57 58 59 60 61 62
}

type Config struct {
	// Genesis anchor point of the rollup
	Genesis Genesis `json:"genesis"`
	// Seconds per L2 block
	BlockTime uint64 `json:"block_time"`
	// Sequencer batches may not be more than MaxSequencerDrift seconds after
	// the L1 timestamp of the sequencing window end.
	//
	// Note: When L1 has many 1 second consecutive blocks, and L2 grows at fixed 2 seconds,
	// the L2 time may still grow beyond this difference.
	MaxSequencerDrift uint64 `json:"max_sequencer_drift"`
63
	// Number of epochs (L1 blocks) per sequencing window, including the epoch L1 origin block itself
64
	SeqWindowSize uint64 `json:"seq_window_size"`
65
	// Number of L1 blocks between when a channel can be opened and when it must be closed by.
protolambda's avatar
protolambda committed
66
	ChannelTimeout uint64 `json:"channel_timeout"`
67 68 69 70 71
	// Required to verify L1 signatures
	L1ChainID *big.Int `json:"l1_chain_id"`
	// Required to identify the L2 network and create p2p signatures unique for this chain.
	L2ChainID *big.Int `json:"l2_chain_id"`

72 73 74 75 76 77
	// RegolithTime sets the activation time of the Regolith network-upgrade:
	// a pre-mainnet Bedrock change that addresses findings of the Sherlock contest related to deposit attributes.
	// "Regolith" is the loose deposited rock that sits on top of Bedrock.
	// Active if RegolithTime != nil && L2 block timestamp >= *RegolithTime, inactive otherwise.
	RegolithTime *uint64 `json:"regolith_time,omitempty"`

78
	// CanyonTime sets the activation time of the Canyon network upgrade.
79 80 81
	// Active if CanyonTime != nil && L2 block timestamp >= *CanyonTime, inactive otherwise.
	CanyonTime *uint64 `json:"canyon_time,omitempty"`

82
	// DeltaTime sets the activation time of the Delta network upgrade.
83 84
	// Active if DeltaTime != nil && L2 block timestamp >= *DeltaTime, inactive otherwise.
	DeltaTime *uint64 `json:"delta_time,omitempty"`
85

86 87 88
	// EcotoneTime sets the activation time of the Ecotone network upgrade.
	// Active if EcotoneTime != nil && L2 block timestamp >= *EcotoneTime, inactive otherwise.
	EcotoneTime *uint64 `json:"ecotone_time,omitempty"`
89 90 91 92 93

	// FjordTime sets the activation time of the Fjord network upgrade.
	// Active if FjordTime != nil && L2 block timestamp >= *FjordTime, inactive otherwise.
	FjordTime *uint64 `json:"fjord_time,omitempty"`

94 95 96 97
	// InteropTime sets the activation time for an experimental feature-set, activated like a hardfork.
	// Active if InteropTime != nil && L2 block timestamp >= *InteropTime, inactive otherwise.
	InteropTime *uint64 `json:"interop_time,omitempty"`

98 99 100
	// Note: below addresses are part of the block-derivation process,
	// and required to be the same network-wide to stay in consensus.

101
	// L1 address that batches are sent to.
102 103 104
	BatchInboxAddress common.Address `json:"batch_inbox_address"`
	// L1 Deposit Contract Address
	DepositContractAddress common.Address `json:"deposit_contract_address"`
105 106
	// L1 System Config Address
	L1SystemConfigAddress common.Address `json:"l1_system_config_address"`
107 108 109

	// L1 address that declares the protocol versions, optional (Beta feature)
	ProtocolVersionsAddress common.Address `json:"protocol_versions_address,omitempty"`
110 111 112

	// L1 block timestamp to start reading blobs as batch data-source. Optional.
	BlobsEnabledL1Timestamp *uint64 `json:"blobs_data,omitempty"`
113 114
}

Andreas Bigger's avatar
Andreas Bigger committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
// ValidateL1Config checks L1 config variables for errors.
func (cfg *Config) ValidateL1Config(ctx context.Context, client L1Client) error {
	// Validate the L1 Client Chain ID
	if err := cfg.CheckL1ChainID(ctx, client); err != nil {
		return err
	}

	// Validate the Rollup L1 Genesis Blockhash
	if err := cfg.CheckL1GenesisBlockHash(ctx, client); err != nil {
		return err
	}

	return nil
}

// ValidateL2Config checks L2 config variables for errors.
func (cfg *Config) ValidateL2Config(ctx context.Context, client L2Client) error {
	// Validate the L2 Client Chain ID
	if err := cfg.CheckL2ChainID(ctx, client); err != nil {
		return err
	}

	// Validate the Rollup L2 Genesis Blockhash
	if err := cfg.CheckL2GenesisBlockHash(ctx, client); err != nil {
		return err
	}

	return nil
}

Danyal Prout's avatar
Danyal Prout committed
145 146 147 148
func (cfg *Config) TimestampForBlock(blockNumber uint64) uint64 {
	return cfg.Genesis.L2Time + ((blockNumber - cfg.Genesis.L2.Number) * cfg.BlockTime)
}

149 150 151 152 153 154 155 156 157 158 159 160 161 162
func (cfg *Config) TargetBlockNumber(timestamp uint64) (num uint64, err error) {
	// subtract genesis time from timestamp to get the time elapsed since genesis, and then divide that
	// difference by the block time to get the expected L2 block number at the current time. If the
	// unsafe head does not have this block number, then there is a gap in the queue.
	genesisTimestamp := cfg.Genesis.L2Time
	if timestamp < genesisTimestamp {
		return 0, fmt.Errorf("did not reach genesis time (%d) yet", genesisTimestamp)
	}
	wallClockGenesisDiff := timestamp - genesisTimestamp
	// Note: round down, we should not request blocks into the future.
	blocksSinceGenesis := wallClockGenesisDiff / cfg.BlockTime
	return cfg.Genesis.L2.Number + blocksSinceGenesis, nil
}

163
type L1Client interface {
Andreas Bigger's avatar
Andreas Bigger committed
164
	ChainID(context.Context) (*big.Int, error)
165 166 167 168 169
	L1BlockRefByNumber(context.Context, uint64) (eth.L1BlockRef, error)
}

// CheckL1ChainID checks that the configured L1 chain ID matches the client's chain ID.
func (cfg *Config) CheckL1ChainID(ctx context.Context, client L1Client) error {
Andreas Bigger's avatar
Andreas Bigger committed
170
	id, err := client.ChainID(ctx)
171
	if err != nil {
172
		return fmt.Errorf("failed to get L1 chain ID: %w", err)
173
	}
174
	if cfg.L1ChainID.Cmp(id) != 0 {
175
		return fmt.Errorf("incorrect L1 RPC chain id %d, expected %d", id, cfg.L1ChainID)
176 177 178 179 180 181 182 183
	}
	return nil
}

// CheckL1GenesisBlockHash checks that the configured L1 genesis block hash is valid for the given client.
func (cfg *Config) CheckL1GenesisBlockHash(ctx context.Context, client L1Client) error {
	l1GenesisBlockRef, err := client.L1BlockRefByNumber(ctx, cfg.Genesis.L1.Number)
	if err != nil {
184
		return fmt.Errorf("failed to get L1 genesis blockhash: %w", err)
185 186
	}
	if l1GenesisBlockRef.Hash != cfg.Genesis.L1.Hash {
187
		return fmt.Errorf("incorrect L1 genesis block hash %s, expected %s", l1GenesisBlockRef.Hash, cfg.Genesis.L1.Hash)
188 189 190 191 192
	}
	return nil
}

type L2Client interface {
Andreas Bigger's avatar
Andreas Bigger committed
193
	ChainID(context.Context) (*big.Int, error)
194 195 196 197 198
	L2BlockRefByNumber(context.Context, uint64) (eth.L2BlockRef, error)
}

// CheckL2ChainID checks that the configured L2 chain ID matches the client's chain ID.
func (cfg *Config) CheckL2ChainID(ctx context.Context, client L2Client) error {
Andreas Bigger's avatar
Andreas Bigger committed
199
	id, err := client.ChainID(ctx)
200
	if err != nil {
201
		return fmt.Errorf("failed to get L2 chain ID: %w", err)
202
	}
203
	if cfg.L2ChainID.Cmp(id) != 0 {
204
		return fmt.Errorf("incorrect L2 RPC chain id %d, expected %d", id, cfg.L2ChainID)
205 206 207 208 209 210 211 212
	}
	return nil
}

// CheckL2GenesisBlockHash checks that the configured L2 genesis block hash is valid for the given client.
func (cfg *Config) CheckL2GenesisBlockHash(ctx context.Context, client L2Client) error {
	l2GenesisBlockRef, err := client.L2BlockRefByNumber(ctx, cfg.Genesis.L2.Number)
	if err != nil {
213
		return fmt.Errorf("failed to get L2 genesis blockhash: %w", err)
214 215
	}
	if l2GenesisBlockRef.Hash != cfg.Genesis.L2.Hash {
216
		return fmt.Errorf("incorrect L2 genesis block hash %s, expected %s", l2GenesisBlockRef.Hash, cfg.Genesis.L2.Hash)
217 218 219 220
	}
	return nil
}

221 222 223
// Check verifies that the given configuration makes sense
func (cfg *Config) Check() error {
	if cfg.BlockTime == 0 {
224
		return ErrBlockTimeZero
225
	}
226
	if cfg.ChannelTimeout == 0 {
227
		return ErrMissingChannelTimeout
228
	}
229
	if cfg.SeqWindowSize < 2 {
230
		return ErrInvalidSeqWindowSize
231 232
	}
	if cfg.Genesis.L1.Hash == (common.Hash{}) {
233
		return ErrMissingGenesisL1Hash
234 235
	}
	if cfg.Genesis.L2.Hash == (common.Hash{}) {
236
		return ErrMissingGenesisL2Hash
237 238
	}
	if cfg.Genesis.L2.Hash == cfg.Genesis.L1.Hash {
239
		return ErrGenesisHashesSame
240
	}
241
	if cfg.Genesis.L2Time == 0 {
242
		return ErrMissingGenesisL2Time
243
	}
244
	if cfg.Genesis.SystemConfig.BatcherAddr == (common.Address{}) {
245
		return ErrMissingBatcherAddr
246 247
	}
	if cfg.Genesis.SystemConfig.Overhead == (eth.Bytes32{}) {
248
		return ErrMissingOverhead
249 250
	}
	if cfg.Genesis.SystemConfig.Scalar == (eth.Bytes32{}) {
251
		return ErrMissingScalar
252 253
	}
	if cfg.Genesis.SystemConfig.GasLimit == 0 {
254
		return ErrMissingGasLimit
255
	}
256
	if cfg.BatchInboxAddress == (common.Address{}) {
257
		return ErrMissingBatchInboxAddress
258
	}
259
	if cfg.DepositContractAddress == (common.Address{}) {
260
		return ErrMissingDepositContractAddress
261 262
	}
	if cfg.L1ChainID == nil {
263
		return ErrMissingL1ChainID
264 265
	}
	if cfg.L2ChainID == nil {
266
		return ErrMissingL2ChainID
267 268
	}
	if cfg.L1ChainID.Cmp(cfg.L2ChainID) == 0 {
269
		return ErrChainIDsSame
270
	}
271
	if cfg.L1ChainID.Sign() < 1 {
272
		return ErrL1ChainIDNotPositive
273 274
	}
	if cfg.L2ChainID.Sign() < 1 {
275
		return ErrL2ChainIDNotPositive
276
	}
277 278 279 280
	return nil
}

func (c *Config) L1Signer() types.Signer {
281
	return types.NewCancunSigner(c.L1ChainID)
282 283
}

284 285 286 287 288
// IsRegolith returns true if the Regolith hardfork is active at or past the given timestamp.
func (c *Config) IsRegolith(timestamp uint64) bool {
	return c.RegolithTime != nil && timestamp >= *c.RegolithTime
}

289 290 291 292 293
// IsCanyon returns true if the Canyon hardfork is active at or past the given timestamp.
func (c *Config) IsCanyon(timestamp uint64) bool {
	return c.CanyonTime != nil && timestamp >= *c.CanyonTime
}

294 295 296
// IsDelta returns true if the Delta hardfork is active at or past the given timestamp.
func (c *Config) IsDelta(timestamp uint64) bool {
	return c.DeltaTime != nil && timestamp >= *c.DeltaTime
297 298
}

299 300 301
// IsEcotone returns true if the Ecotone hardfork is active at or past the given timestamp.
func (c *Config) IsEcotone(timestamp uint64) bool {
	return c.EcotoneTime != nil && timestamp >= *c.EcotoneTime
302 303
}

304 305 306 307 308 309 310 311
// IsEcotoneActivationBlock returns whether the specified block is the first block subject to the
// Ecotone upgrade.
func (c *Config) IsEcotoneActivationBlock(l2BlockTime uint64) bool {
	return c.IsEcotone(l2BlockTime) &&
		l2BlockTime >= c.BlockTime &&
		!c.IsEcotone(l2BlockTime-c.BlockTime)
}

312 313 314 315 316
// IsFjord returns true if the Fjord hardfork is active at or past the given timestamp.
func (c *Config) IsFjord(timestamp uint64) bool {
	return c.FjordTime != nil && timestamp >= *c.FjordTime
}

317 318 319 320 321
// IsInterop returns true if the Interop hardfork is active at or past the given timestamp.
func (c *Config) IsInterop(timestamp uint64) bool {
	return c.InteropTime != nil && timestamp >= *c.InteropTime
}

322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
// Description outputs a banner describing the important parts of rollup configuration in a human-readable form.
// Optionally provide a mapping of L2 chain IDs to network names to label the L2 chain with if not unknown.
// The config should be config.Check()-ed before creating a description.
func (c *Config) Description(l2Chains map[string]string) string {
	// Find and report the network the user is running
	var banner string
	networkL2 := ""
	if l2Chains != nil {
		networkL2 = l2Chains[c.L2ChainID.String()]
	}
	if networkL2 == "" {
		networkL2 = "unknown L2"
	}
	networkL1 := params.NetworkNames[c.L1ChainID.String()]
	if networkL1 == "" {
		networkL1 = "unknown L1"
	}
	banner += fmt.Sprintf("L2 Chain ID: %v (%s)\n", c.L2ChainID, networkL2)
	banner += fmt.Sprintf("L1 Chain ID: %v (%s)\n", c.L1ChainID, networkL1)
	// Report the genesis configuration
	banner += "Bedrock starting point:\n"
	banner += fmt.Sprintf("  L2 starting time: %d ~ %s\n", c.Genesis.L2Time, fmtTime(c.Genesis.L2Time))
	banner += fmt.Sprintf("  L2 block: %s %d\n", c.Genesis.L2.Hash, c.Genesis.L2.Number)
	banner += fmt.Sprintf("  L1 block: %s %d\n", c.Genesis.L1.Hash, c.Genesis.L1.Number)
	// Report the upgrade configuration
	banner += "Post-Bedrock Network Upgrades (timestamp based):\n"
	banner += fmt.Sprintf("  - Regolith: %s\n", fmtForkTimeOrUnset(c.RegolithTime))
349
	banner += fmt.Sprintf("  - Canyon: %s\n", fmtForkTimeOrUnset(c.CanyonTime))
350
	banner += fmt.Sprintf("  - Delta: %s\n", fmtForkTimeOrUnset(c.DeltaTime))
351
	banner += fmt.Sprintf("  - Ecotone: %s\n", fmtForkTimeOrUnset(c.EcotoneTime))
352
	banner += fmt.Sprintf("  - Fjord: %s\n", fmtForkTimeOrUnset(c.FjordTime))
353
	banner += fmt.Sprintf("  - Interop: %s\n", fmtForkTimeOrUnset(c.InteropTime))
354 355
	// Report the protocol version
	banner += fmt.Sprintf("Node supports up to OP-Stack Protocol Version: %s\n", OPStackSupport)
356 357 358
	return banner
}

pengin7384's avatar
pengin7384 committed
359
// LogDescription outputs a banner describing the important parts of rollup configuration in a log format.
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
// Optionally provide a mapping of L2 chain IDs to network names to label the L2 chain with if not unknown.
// The config should be config.Check()-ed before creating a description.
func (c *Config) LogDescription(log log.Logger, l2Chains map[string]string) {
	// Find and report the network the user is running
	networkL2 := ""
	if l2Chains != nil {
		networkL2 = l2Chains[c.L2ChainID.String()]
	}
	if networkL2 == "" {
		networkL2 = "unknown L2"
	}
	networkL1 := params.NetworkNames[c.L1ChainID.String()]
	if networkL1 == "" {
		networkL1 = "unknown L1"
	}
	log.Info("Rollup Config", "l2_chain_id", c.L2ChainID, "l2_network", networkL2, "l1_chain_id", c.L1ChainID,
		"l1_network", networkL1, "l2_start_time", c.Genesis.L2Time, "l2_block_hash", c.Genesis.L2.Hash.String(),
		"l2_block_number", c.Genesis.L2.Number, "l1_block_hash", c.Genesis.L1.Hash.String(),
378
		"l1_block_number", c.Genesis.L1.Number, "regolith_time", fmtForkTimeOrUnset(c.RegolithTime),
379
		"canyon_time", fmtForkTimeOrUnset(c.CanyonTime),
380
		"delta_time", fmtForkTimeOrUnset(c.DeltaTime),
381
		"ecotone_time", fmtForkTimeOrUnset(c.EcotoneTime),
382
		"fjord_time", fmtForkTimeOrUnset(c.FjordTime),
383
		"interop_time", fmtForkTimeOrUnset(c.InteropTime),
384
	)
385 386
}

387 388 389 390 391 392 393 394 395 396 397 398 399 400
func fmtForkTimeOrUnset(v *uint64) string {
	if v == nil {
		return "(not configured)"
	}
	if *v == 0 { // don't output the unix epoch time if it's really just activated at genesis.
		return "@ genesis"
	}
	return fmt.Sprintf("@ %-10v ~ %s", *v, fmtTime(*v))
}

func fmtTime(v uint64) string {
	return time.Unix(int64(v), 0).Format(time.UnixDate)
}

401
type Epoch uint64