forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
145 lines (138 loc) · 3.88 KB
/
main.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
package main
import (
"fmt"
"os"
"github.com/0xPolygonHermez/zkevm-node"
"github.com/0xPolygonHermez/zkevm-node/config"
"github.com/0xPolygonHermez/zkevm-node/jsonrpc"
"github.com/0xPolygonHermez/zkevm-node/log"
"github.com/urfave/cli/v2"
)
const appName = "zkevm-node"
const (
// AGGREGATOR is the aggregator component identifier.
AGGREGATOR = "aggregator"
// SEQUENCER is the sequencer component identifier.
SEQUENCER = "sequencer"
// RPC is the RPC component identifier.
RPC = "rpc"
// SYNCHRONIZER is the synchronizer component identifier.
SYNCHRONIZER = "synchronizer"
// BROADCAST is the broadcast component identifier.
BROADCAST = "broadcast-trusted-state"
// ETHTXMANAGER is the service that manages the tx sent to L1
ETHTXMANAGER = "eth-tx-manager"
// L2GASPRICER is the l2 gas pricer component identifier.
L2GASPRICER = "l2gaspricer"
)
var (
configFileFlag = cli.StringFlag{
Name: config.FlagCfg,
Aliases: []string{"c"},
Usage: "Configuration `FILE`",
Required: false,
}
genesisFlag = cli.StringFlag{
Name: config.FlagGenesisFile,
Aliases: []string{"gen"},
Usage: "Loads the genesis `FILE`",
Required: true,
}
yesFlag = cli.BoolFlag{
Name: config.FlagYes,
Aliases: []string{"y"},
Usage: "Automatically accepts any confirmation to execute the command",
Required: false,
}
componentsFlag = cli.StringSliceFlag{
Name: config.FlagComponents,
Aliases: []string{"co"},
Usage: "List of components to run",
Required: false,
Value: cli.NewStringSlice(AGGREGATOR, SEQUENCER, RPC, SYNCHRONIZER, ETHTXMANAGER, L2GASPRICER),
}
httpAPIFlag = cli.StringSliceFlag{
Name: config.FlagHTTPAPI,
Aliases: []string{"ha"},
Usage: fmt.Sprintf("List of JSON RPC apis to be exposed by the server: --http.api=%v,%v,%v,%v,%v,%v", jsonrpc.APIEth, jsonrpc.APINet, jsonrpc.APIDebug, jsonrpc.APIZKEVM, jsonrpc.APITxPool, jsonrpc.APIWeb3),
Required: false,
Value: cli.NewStringSlice(jsonrpc.APIEth, jsonrpc.APINet, jsonrpc.APIZKEVM, jsonrpc.APITxPool, jsonrpc.APIWeb3),
}
migrationsFlag = cli.BoolFlag{
Name: config.FlagMigrations,
Aliases: []string{"mig"},
Usage: "Blocks the migrations in stateDB to not run them",
Required: false,
}
)
func main() {
app := cli.NewApp()
app.Name = appName
app.Version = zkevm.Version
flags := []cli.Flag{
&configFileFlag,
&yesFlag,
&componentsFlag,
&httpAPIFlag,
}
app.Commands = []*cli.Command{
{
Name: "version",
Aliases: []string{},
Usage: "Application version and build",
Action: versionCmd,
},
{
Name: "run",
Aliases: []string{},
Usage: "Run the zkevm-node",
Action: start,
Flags: append(flags, &genesisFlag, &migrationsFlag),
},
{
Name: "approve",
Aliases: []string{"ap"},
Usage: "Approve tokens to be spent by the smart contract",
Action: approveTokens,
Flags: append(flags,
&cli.StringFlag{
Name: config.FlagKeyStorePath,
Aliases: []string{""},
Usage: "the path of the key store file containing the private key of the account going to sign and approve the tokens",
Required: true,
},
&cli.StringFlag{
Name: config.FlagPassword,
Aliases: []string{"pw"},
Usage: "the password do decrypt the key store file",
Required: true,
},
&cli.StringFlag{
Name: config.FlagAmount,
Aliases: []string{"am"},
Usage: "Amount that is gonna be approved",
Required: true,
},
),
},
{
Name: "encryptKey",
Aliases: []string{},
Usage: "Encrypts the privatekey with a password and create a keystore file",
Action: encryptKey,
Flags: encryptKeyFlags,
},
{
Name: "dumpState",
Aliases: []string{},
Usage: "Dumps the state in a JSON file, for debug purposes",
Action: dumpState,
Flags: dumpStateFlags,
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
os.Exit(1)
}
}