forked from 0xPolygonHermez/zkevm-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
196 lines (188 loc) · 5.48 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
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
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"
// 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"
// SEQUENCE_SENDER is the sequence sender component identifier
SEQUENCE_SENDER = "sequence-sender"
)
const (
// NODE_CONFIGFILE name to identify the node config-file
NODE_CONFIGFILE = "node"
// NETWORK_CONFIGFILE name to identify the netowk_custom (genesis) config-file
NETWORK_CONFIGFILE = "custom_network"
)
var (
configFileFlag = cli.StringFlag{
Name: config.FlagCfg,
Aliases: []string{"c"},
Usage: "Configuration `FILE`",
Required: true,
}
networkFlag = cli.StringFlag{
Name: config.FlagNetwork,
Aliases: []string{"net"},
Usage: "Load default network configuration. Supported values: [`mainnet`, `testnet`, `custom`]",
Required: true,
}
customNetworkFlag = cli.StringFlag{
Name: config.FlagCustomNetwork,
Aliases: []string{"net-file"},
Usage: "Load the network configuration file if --network=custom",
Required: false,
}
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, SEQUENCE_SENDER),
}
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,
}
outputFileFlag = cli.StringFlag{
Name: config.FlagOutputFile,
Usage: "Indicate the output file",
Required: true,
}
documentationFileTypeFlag = cli.StringFlag{
Name: config.FlagDocumentationFileType,
Usage: fmt.Sprintf("Indicate the type of file to generate json-schema: %v,%v ", NODE_CONFIGFILE, NETWORK_CONFIGFILE),
Required: true,
}
)
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, &networkFlag, &customNetworkFlag, &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: false,
},
&cli.StringFlag{
Name: config.FlagMaxAmount,
Aliases: []string{"mam"},
Usage: "Maximum amount is gonna be approved",
Required: false,
},
&networkFlag,
&customNetworkFlag,
),
},
{
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,
},
{
Name: "generate-json-schema",
Usage: "Generate the json-schema for the configuration file, and store it on docs/schema.json",
Action: genJSONSchema,
Flags: []cli.Flag{&outputFileFlag, &documentationFileTypeFlag},
},
{
Name: "snapshot",
Aliases: []string{"snap"},
Usage: "Snapshot the state db",
Action: snapshot,
Flags: snapshotFlags,
},
{
Name: "restore",
Aliases: []string{},
Usage: "Restore snapshot of the state db",
Action: restore,
Flags: restoreFlags,
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
os.Exit(1)
}
}