forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
702 lines (655 loc) · 22.3 KB
/
commands.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
package wheel
import (
"context"
"encoding"
"encoding/json"
"fmt"
"io"
"math/big"
"os"
"strings"
"time"
"github.com/urfave/cli/v2"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum-optimism/optimism/op-node/rollup"
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/client"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
opmetrics "github.com/ethereum-optimism/optimism/op-service/metrics"
"github.com/ethereum-optimism/optimism/op-service/sources"
"github.com/ethereum-optimism/optimism/op-wheel/cheat"
"github.com/ethereum-optimism/optimism/op-wheel/engine"
)
const envVarPrefix = "OP_WHEEL"
func prefixEnvVars(name string) []string {
return []string{envVarPrefix + "_" + name}
}
var (
GlobalGethLogLvlFlag = &cli.GenericFlag{
Name: "geth-log-level",
Usage: "Set the global geth logging level",
EnvVars: prefixEnvVars("GETH_LOG_LEVEL"),
Value: oplog.NewLevelFlagValue(log.LevelError),
}
DataDirFlag = &cli.StringFlag{
Name: "data-dir",
Usage: "Geth data dir location.",
Required: true,
TakesFile: true,
EnvVars: prefixEnvVars("DATA_DIR"),
}
EngineEndpoint = &cli.StringFlag{
Name: "engine",
Usage: "Authenticated Engine API RPC endpoint, can be HTTP/WS/IPC",
Required: true,
Value: "http://localhost:8551/",
EnvVars: prefixEnvVars("ENGINE"),
}
EngineJWTPath = &cli.StringFlag{
Name: "engine.jwt-secret",
Usage: "Path to JWT secret file used to authenticate Engine API communication with.",
Required: true,
TakesFile: true,
EnvVars: prefixEnvVars("ENGINE_JWT_SECRET"),
}
EngineOpenEndpoint = &cli.StringFlag{
Name: "engine.open",
Usage: "Open Engine API RPC endpoint, can be HTTP/WS/IPC",
Value: "http://localhost:8545/",
EnvVars: prefixEnvVars("ENGINE_OPEN"),
}
EngineVersion = &cli.IntFlag{
Name: "engine.version",
Usage: "Engine API version to use for Engine calls (1, 2, or 3)",
EnvVars: prefixEnvVars("ENGINE_VERSION"),
Action: func(ctx *cli.Context, ev int) error {
if ev < 1 || ev > 3 {
return fmt.Errorf("invalid Engine API version: %d", ev)
}
return nil
},
}
FeeRecipientFlag = &cli.GenericFlag{
Name: "fee-recipient",
Usage: "fee-recipient of the block building",
EnvVars: prefixEnvVars("FEE_RECIPIENT"),
Value: &TextFlag[*common.Address]{Value: &common.Address{1: 0x13, 2: 0x37}},
}
RandaoFlag = &cli.GenericFlag{
Name: "randao",
Usage: "randao value of the block building",
EnvVars: prefixEnvVars("RANDAO"),
Value: &TextFlag[*common.Hash]{Value: &common.Hash{1: 0x13, 2: 0x37}},
}
BlockTimeFlag = &cli.Uint64Flag{
Name: "block-time",
Usage: "block time, interval of timestamps between blocks to build, in seconds",
EnvVars: prefixEnvVars("BLOCK_TIME"),
Value: 12,
}
BuildingTime = &cli.DurationFlag{
Name: "building-time",
Usage: "duration of of block building, this should be set to something lower than the block time.",
EnvVars: prefixEnvVars("BUILDING_TIME"),
Value: time.Second * 6,
}
AllowGaps = &cli.BoolFlag{
Name: "allow-gaps",
Usage: "allow gaps in block building, like missed slots on the beacon chain.",
EnvVars: prefixEnvVars("ALLOW_GAPS"),
}
)
func withEngineFlags(flags ...cli.Flag) []cli.Flag {
return append(append(flags,
EngineEndpoint, EngineJWTPath, EngineOpenEndpoint, EngineVersion),
oplog.CLIFlags(envVarPrefix)...)
}
func ParseBuildingArgs(ctx *cli.Context) *engine.BlockBuildingSettings {
return &engine.BlockBuildingSettings{
BlockTime: ctx.Uint64(BlockTimeFlag.Name),
AllowGaps: ctx.Bool(AllowGaps.Name),
Random: hashFlagValue(RandaoFlag.Name, ctx),
FeeRecipient: addrFlagValue(FeeRecipientFlag.Name, ctx),
BuildTime: ctx.Duration(BuildingTime.Name),
}
}
func CheatAction(readOnly bool, fn func(ctx *cli.Context, ch *cheat.Cheater) error) cli.ActionFunc {
return func(ctx *cli.Context) error {
dataDir := ctx.String(DataDirFlag.Name)
ch, err := cheat.OpenGethDB(dataDir, readOnly)
if err != nil {
return fmt.Errorf("failed to open geth db: %w", err)
}
return fn(ctx, ch)
}
}
func CheatRawDBAction(readOnly bool, fn func(ctx *cli.Context, db ethdb.Database) error) cli.ActionFunc {
return func(ctx *cli.Context) error {
dataDir := ctx.String(DataDirFlag.Name)
db, err := cheat.OpenGethRawDB(dataDir, readOnly)
if err != nil {
return fmt.Errorf("failed to open raw geth db: %w", err)
}
return fn(ctx, db)
}
}
func EngineAction(fn func(ctx *cli.Context, client *sources.EngineAPIClient, lgr log.Logger) error) cli.ActionFunc {
return func(ctx *cli.Context) error {
lgr := initLogger(ctx)
rpc, err := initEngineRPC(ctx, lgr)
if err != nil {
return fmt.Errorf("failed to dial Engine API endpoint %q: %w",
ctx.String(EngineEndpoint.Name), err)
}
evp, err := initVersionProvider(ctx, lgr)
if err != nil {
return fmt.Errorf("failed to init Engine version provider: %w", err)
}
client := sources.NewEngineAPIClient(rpc, lgr, evp)
return fn(ctx, client, lgr)
}
}
func initLogger(ctx *cli.Context) log.Logger {
logCfg := oplog.ReadCLIConfig(ctx)
lgr := oplog.NewLogger(oplog.AppOut(ctx), logCfg)
oplog.SetGlobalLogHandler(lgr.Handler())
return lgr
}
func initEngineRPC(ctx *cli.Context, lgr log.Logger) (client.RPC, error) {
jwtData, err := os.ReadFile(ctx.String(EngineJWTPath.Name))
if err != nil {
return nil, fmt.Errorf("failed to read jwt: %w", err)
}
secret := common.HexToHash(strings.TrimSpace(string(jwtData)))
endpoint := ctx.String(EngineEndpoint.Name)
return client.NewRPC(ctx.Context, lgr, endpoint,
client.WithGethRPCOptions(rpc.WithHTTPAuth(node.NewJWTAuth(secret))))
}
func initVersionProvider(ctx *cli.Context, lgr log.Logger) (sources.EngineVersionProvider, error) {
// static configuration takes precedent, if set
if ctx.IsSet(EngineVersion.Name) {
ev := ctx.Int(EngineVersion.Name)
return engine.StaticVersionProvider(ev), nil
}
// otherwise get config from EL
rpc, err := initOpenEngineRPC(ctx, lgr)
if err != nil {
return nil, err
}
cfg, err := engine.GetChainConfig(ctx.Context, rpc)
if err != nil {
return nil, err
}
return rollupFromGethConfig(cfg), nil
}
func initOpenEngineRPC(ctx *cli.Context, lgr log.Logger) (client.RPC, error) {
openEP := ctx.String(EngineOpenEndpoint.Name)
rpc, err := client.NewRPC(ctx.Context, lgr, openEP)
if err != nil {
return nil, fmt.Errorf("failed to dial open Engine endpoint %q: %w", openEP, err)
}
return rpc, nil
}
// rollupFromGethConfig returns a very incomplete rollup config with only the
// L2ChainID and (most) fork activation timestamps set.
//
// Because Delta was a pure CL fork, its time isn't set either.
//
// This incomplete [rollup.Config] can be used as a [sources.EngineVersionProvider].
func rollupFromGethConfig(cfg *params.ChainConfig) *rollup.Config {
return &rollup.Config{
L2ChainID: cfg.ChainID,
RegolithTime: cfg.RegolithTime,
CanyonTime: cfg.CanyonTime,
EcotoneTime: cfg.EcotoneTime,
GraniteTime: cfg.GraniteTime,
InteropTime: cfg.InteropTime,
}
}
type Text interface {
encoding.TextUnmarshaler
fmt.Stringer
comparable
}
type TextFlag[T Text] struct {
Value T
}
func (a *TextFlag[T]) Set(value string) error {
var defaultValue T
if a.Value == defaultValue {
return fmt.Errorf("cannot unmarshal into nil value")
}
return a.Value.UnmarshalText([]byte(value))
}
func (a *TextFlag[T]) String() string {
var defaultValue T
if a.Value == defaultValue {
return "<nil>"
}
return a.Value.String()
}
func (a *TextFlag[T]) Get() T {
return a.Value
}
func (a *TextFlag[T]) Clone() any {
var out TextFlag[T]
if err := out.Set(a.String()); err != nil {
panic(fmt.Errorf("cannot clone invalid text value: %w", err))
}
return &out
}
var _ cli.Generic = (*TextFlag[*common.Address])(nil)
func textFlag[T Text](name string, usage string, value T) *cli.GenericFlag {
return &cli.GenericFlag{
Name: name,
Usage: usage,
EnvVars: prefixEnvVars(strings.ToUpper(name)),
Required: true,
Value: &TextFlag[T]{Value: value},
}
}
func addrFlag(name string, usage string) *cli.GenericFlag {
return textFlag[*common.Address](name, usage, new(common.Address))
}
func bytesFlag(name string, usage string) *cli.GenericFlag {
return textFlag[*hexutil.Bytes](name, usage, new(hexutil.Bytes))
}
func hashFlag(name string, usage string) *cli.GenericFlag {
return textFlag[*common.Hash](name, usage, new(common.Hash))
}
func bigFlag(name string, usage string) *cli.GenericFlag {
return textFlag[*big.Int](name, usage, new(big.Int))
}
func addrFlagValue(name string, ctx *cli.Context) common.Address {
return *ctx.Generic(name).(*TextFlag[*common.Address]).Value
}
func bytesFlagValue(name string, ctx *cli.Context) hexutil.Bytes {
return *ctx.Generic(name).(*TextFlag[*hexutil.Bytes]).Value
}
func hashFlagValue(name string, ctx *cli.Context) common.Hash {
return *ctx.Generic(name).(*TextFlag[*common.Hash]).Value
}
func bigFlagValue(name string, ctx *cli.Context) *big.Int {
return ctx.Generic(name).(*TextFlag[*big.Int]).Value
}
var (
CheatStorageGetCmd = &cli.Command{
Name: "get",
Aliases: []string{"read"},
Flags: []cli.Flag{
DataDirFlag,
addrFlag("address", "Address to read storage of"),
hashFlag("key", "key in storage of address to read value"),
},
Action: CheatAction(true, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.StorageGet(addrFlagValue("address", ctx), hashFlagValue("key", ctx), ctx.App.Writer))
}),
}
CheatStorageSetCmd = &cli.Command{
Name: "set",
Aliases: []string{"write"},
Flags: []cli.Flag{
DataDirFlag,
addrFlag("address", "Address to write storage of"),
hashFlag("key", "key in storage of address to set value of"),
hashFlag("value", "the value to write"),
},
Action: CheatAction(false, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.StorageSet(addrFlagValue("address", ctx), hashFlagValue("key", ctx), hashFlagValue("value", ctx)))
}),
}
CheatStorageReadAll = &cli.Command{
Name: "read-all",
Aliases: []string{"get-all"},
Usage: "Read all storage of the given account",
Flags: []cli.Flag{DataDirFlag, addrFlag("address", "Address to read all storage of")},
Action: CheatAction(true, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.StorageReadAll(addrFlagValue("address", ctx), ctx.App.Writer))
}),
}
CheatStorageDiffCmd = &cli.Command{
Name: "diff",
Usage: "Diff the storage of accounts A and B",
Flags: []cli.Flag{DataDirFlag, hashFlag("a", "address of account A"), hashFlag("b", "address of account B")},
Action: CheatAction(true, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.StorageDiff(ctx.App.Writer, addrFlagValue("a", ctx), addrFlagValue("b", ctx)))
}),
}
CheatStoragePatchCmd = &cli.Command{
Name: "patch",
Usage: "Apply storage patch from STDIN to the given account address",
Flags: []cli.Flag{DataDirFlag, addrFlag("address", "Address to patch storage of")},
Action: CheatAction(false, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.StoragePatch(os.Stdin, addrFlagValue("address", ctx)))
}),
}
CheatStorageCmd = &cli.Command{
Name: "storage",
Subcommands: []*cli.Command{
CheatStorageGetCmd,
CheatStorageSetCmd,
CheatStorageReadAll,
CheatStorageDiffCmd,
CheatStoragePatchCmd,
},
}
CheatSetBalanceCmd = &cli.Command{
Name: "balance",
Flags: []cli.Flag{
DataDirFlag,
addrFlag("address", "Address to change balance of"),
bigFlag("balance", "New balance of the account"),
},
Action: CheatAction(false, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.SetBalance(addrFlagValue("address", ctx), bigFlagValue("balance", ctx)))
}),
}
CheatSetCodeCmd = &cli.Command{
Name: "code",
Flags: []cli.Flag{
DataDirFlag,
addrFlag("address", "Address to change code of"),
bytesFlag("code", "New code of the account"),
},
Action: CheatAction(false, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.SetCode(addrFlagValue("address", ctx), bytesFlagValue("code", ctx)))
}),
}
CheatSetNonceCmd = &cli.Command{
Name: "nonce",
Flags: []cli.Flag{
DataDirFlag,
addrFlag("address", "Address to change nonce of"),
bigFlag("nonce", "New nonce of the account"),
},
Action: CheatAction(false, func(ctx *cli.Context, ch *cheat.Cheater) error {
return ch.RunAndClose(cheat.SetNonce(addrFlagValue("address", ctx), bigFlagValue("balance", ctx).Uint64()))
}),
}
CheatPrintHeadBlock = &cli.Command{
Name: "head-block",
Usage: "dump head block as JSON",
Flags: []cli.Flag{
DataDirFlag,
},
Action: CheatRawDBAction(true, func(c *cli.Context, db ethdb.Database) error {
enc := json.NewEncoder(c.App.Writer)
enc.SetIndent(" ", " ")
block := rawdb.ReadHeadBlock(db)
if block == nil {
return enc.Encode(nil)
}
return enc.Encode(engine.RPCBlock{
Header: *block.Header(),
Transactions: block.Transactions(),
})
}),
}
CheatPrintHeadHeader = &cli.Command{
Name: "head-header",
Usage: "dump head header as JSON",
Flags: []cli.Flag{
DataDirFlag,
},
Action: CheatRawDBAction(true, func(c *cli.Context, db ethdb.Database) error {
enc := json.NewEncoder(c.App.Writer)
enc.SetIndent(" ", " ")
return enc.Encode(rawdb.ReadHeadHeader(db))
}),
}
EngineBlockCmd = &cli.Command{
Name: "block",
Usage: "build the next block using the Engine API",
Flags: withEngineFlags(
FeeRecipientFlag, RandaoFlag, BlockTimeFlag, BuildingTime, AllowGaps,
),
// TODO: maybe support transaction and tx pool engine flags, since we use op-geth?
// TODO: reorg flag
// TODO: finalize/safe flag
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, _ log.Logger) error {
settings := ParseBuildingArgs(ctx)
status, err := engine.Status(context.Background(), client.RPC)
if err != nil {
return err
}
payloadEnv, err := engine.BuildBlock(context.Background(), client, status, settings)
if err != nil {
return err
}
fmt.Fprintln(ctx.App.Writer, payloadEnv.ExecutionPayload.BlockHash)
return nil
}),
}
EngineAutoCmd = &cli.Command{
Name: "auto",
Usage: "Run a proof-of-nothing chain with fixed block time.",
Description: "The block time can be changed. The execution engine must be synced to a post-Merge state first.",
Flags: append(withEngineFlags(
FeeRecipientFlag, RandaoFlag, BlockTimeFlag, BuildingTime, AllowGaps),
opmetrics.CLIFlags(envVarPrefix)...),
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, l log.Logger) error {
settings := ParseBuildingArgs(ctx)
// TODO: finalize/safe flag
metricsCfg := opmetrics.ReadCLIConfig(ctx)
return opservice.CloseAction(func(ctx context.Context, shutdown <-chan struct{}) error {
registry := opmetrics.NewRegistry()
metrics := engine.NewMetrics("wheel", registry)
if metricsCfg.Enabled {
l.Info("starting metrics server", "addr", metricsCfg.ListenAddr, "port", metricsCfg.ListenPort)
metricsSrv, err := opmetrics.StartServer(registry, metricsCfg.ListenAddr, metricsCfg.ListenPort)
if err != nil {
return fmt.Errorf("failed to start metrics server: %w", err)
}
defer func() {
if err := metricsSrv.Stop(context.Background()); err != nil {
l.Error("failed to stop metrics server: %w", err)
}
}()
}
return engine.Auto(ctx, metrics, client, l, shutdown, settings)
})
}),
}
EngineStatusCmd = &cli.Command{
Name: "status",
Flags: withEngineFlags(),
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, _ log.Logger) error {
stat, err := engine.Status(context.Background(), client.RPC)
if err != nil {
return err
}
enc := json.NewEncoder(ctx.App.Writer)
enc.SetIndent("", " ")
return enc.Encode(stat)
}),
}
EngineCopyCmd = &cli.Command{
Name: "copy",
Flags: withEngineFlags(
&cli.StringFlag{
Name: "source",
Usage: "Unauthenticated regular eth JSON RPC to pull block data from, can be HTTP/WS/IPC.",
Required: true,
EnvVars: prefixEnvVars("SOURCE"),
},
),
Action: EngineAction(func(ctx *cli.Context, dest *sources.EngineAPIClient, _ log.Logger) error {
rpcClient, err := rpc.DialOptions(context.Background(), ctx.String("source"))
if err != nil {
return fmt.Errorf("failed to dial engine source endpoint: %w", err)
}
source := client.NewBaseRPCClient(rpcClient)
return engine.Copy(context.Background(), source, dest)
}),
}
EngineCopyPayloadCmd = &cli.Command{
Name: "copy-payload",
Description: "Take the block by number from source and insert it to the engine with NewPayload. No other calls are made.",
Flags: withEngineFlags(
&cli.StringFlag{
Name: "source",
Usage: "Unauthenticated regular eth JSON RPC to pull block data from, can be HTTP/WS/IPC.",
Required: true,
EnvVars: prefixEnvVars("SOURCE"),
},
&cli.Uint64Flag{
Name: "number",
Usage: "Block number to copy from the source",
Required: true,
EnvVars: prefixEnvVars("NUMBER"),
},
),
Action: EngineAction(func(ctx *cli.Context, dest *sources.EngineAPIClient, _ log.Logger) error {
rpcClient, err := rpc.DialOptions(context.Background(), ctx.String("source"))
if err != nil {
return fmt.Errorf("failed to dial engine source endpoint: %w", err)
}
source := client.NewBaseRPCClient(rpcClient)
return engine.CopyPayload(context.Background(), ctx.Uint64("number"), source, dest)
}),
}
EngineSetForkchoiceCmd = &cli.Command{
Name: "set-forkchoice",
Description: "Set forkchoice, specify unsafe, safe and finalized blocks by number",
Flags: withEngineFlags(
&cli.Uint64Flag{
Name: "unsafe",
Usage: "Block number of block to set as latest block",
Required: true,
EnvVars: prefixEnvVars("UNSAFE"),
},
&cli.Uint64Flag{
Name: "safe",
Usage: "Block number of block to set as safe block",
Required: true,
EnvVars: prefixEnvVars("SAFE"),
},
&cli.Uint64Flag{
Name: "finalized",
Usage: "Block number of block to set as finalized block",
Required: true,
EnvVars: prefixEnvVars("FINALIZED"),
},
),
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, _ log.Logger) error {
return engine.SetForkchoice(ctx.Context, client, ctx.Uint64("finalized"), ctx.Uint64("safe"), ctx.Uint64("unsafe"))
}),
}
EngineSetForkchoiceHashCmd = &cli.Command{
Name: "set-forkchoice-by-hash",
Description: "Set forkchoice, specify unsafe, safe and finalized blocks by hash",
Flags: withEngineFlags(
&cli.StringFlag{
Name: "unsafe",
Usage: "Block hash of block to set as latest block",
Required: true,
EnvVars: prefixEnvVars("UNSAFE"),
},
&cli.StringFlag{
Name: "safe",
Usage: "Block hash of block to set as safe block",
Required: true,
EnvVars: prefixEnvVars("SAFE"),
},
&cli.StringFlag{
Name: "finalized",
Usage: "Block hash of block to set as finalized block",
Required: true,
EnvVars: prefixEnvVars("FINALIZED"),
},
),
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, _ log.Logger) error {
finalized := common.HexToHash(ctx.String("finalized"))
safe := common.HexToHash(ctx.String("safe"))
unsafe := common.HexToHash(ctx.String("unsafe"))
return engine.SetForkchoiceByHash(ctx.Context, client, finalized, safe, unsafe)
}),
}
EngineRewindCmd = &cli.Command{
Name: "rewind",
Description: "Rewind chain by number (destructive!)",
Flags: withEngineFlags(
&cli.Uint64Flag{
Name: "to",
Usage: "Block number to rewind chain to",
Required: true,
EnvVars: prefixEnvVars("REWIND_TO"),
},
&cli.BoolFlag{
Name: "set-head",
Usage: "Whether to also call debug_setHead when rewinding",
EnvVars: prefixEnvVars("REWIND_SET_HEAD"),
},
),
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, lgr log.Logger) error {
open, err := initOpenEngineRPC(ctx, lgr)
if err != nil {
return fmt.Errorf("failed to dial open RPC endpoint: %w", err)
}
return engine.Rewind(ctx.Context, lgr, client, open, ctx.Uint64("to"), ctx.Bool("set-head"))
}),
}
EngineJSONCmd = &cli.Command{
Name: "json",
Description: "read json values from remaining args, or STDIN, and use them as RPC params to call the engine RPC method (first arg)",
Flags: withEngineFlags(
&cli.BoolFlag{
Name: "stdin",
Usage: "Read params from stdin instead",
Required: false,
EnvVars: prefixEnvVars("STDIN"),
},
),
ArgsUsage: "<rpc-method-name> [params...]",
Action: EngineAction(func(ctx *cli.Context, client *sources.EngineAPIClient, _ log.Logger) error {
if ctx.NArg() == 0 {
return fmt.Errorf("expected at least 1 argument: RPC method name")
}
var r io.Reader
var args []string
if ctx.Bool("stdin") {
r = ctx.App.Reader
} else {
args = ctx.Args().Tail()
}
return engine.RawJSONInteraction(ctx.Context, client.RPC, ctx.Args().Get(0), args, r, ctx.App.Writer)
}),
}
)
var CheatCmd = &cli.Command{
Name: "cheat",
Usage: "Cheating commands to modify a Geth database.",
Description: "Each sub-command opens a Geth database, applies the cheat, and then saves and closes the database." +
"The Geth node will live in its own false reality, other nodes cannot sync the cheated state if they process the blocks.",
Subcommands: []*cli.Command{
CheatStorageCmd,
CheatSetBalanceCmd,
CheatSetCodeCmd,
CheatSetNonceCmd,
CheatPrintHeadBlock,
CheatPrintHeadHeader,
},
}
var EngineCmd = &cli.Command{
Name: "engine",
Usage: "Engine API commands to build/reorg/rewind/finalize/copy blocks.",
Description: "Each sub-command dials the engine API endpoint (with provided JWT secret) and then runs the action",
Subcommands: []*cli.Command{
EngineBlockCmd,
EngineAutoCmd,
EngineStatusCmd,
EngineCopyCmd,
EngineCopyPayloadCmd,
EngineSetForkchoiceCmd,
EngineSetForkchoiceHashCmd,
EngineRewindCmd,
EngineJSONCmd,
},
}