You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage: "comma-separated list of L1 RPC URLs (only need multiple if fetching from multiple superchains)",
22
+
EnvVars: []string{"L1_RPC_URLS"},
23
+
Required: true,
24
+
}
25
+
ChainIDFlag=&cli.StringFlag{
26
+
Name: "chain-ids",
27
+
Usage: "comma-separated list of l2 chainIds to update (optional, fetches all chains if not provided)",
28
+
}
29
+
SuperchainsFlag=&cli.StringFlag{
30
+
Name: "superchains",
31
+
Usage: "comma-separated list of superchains to update (cannot provide both chain-ids and superchains flags, default to all superchains if not provided)",
32
+
}
10
33
)
11
34
12
35
funcmain() {
13
-
iferr:=mainErr(); err!=nil {
14
-
output.WriteNotOK("application error: %v", err)
36
+
app:=&cli.App{
37
+
Name: "codegen",
38
+
Usage: "uses op-fetcher to fetch onchain config data for chain(s) in the superchain-registry, then propagates the data to codegen files",
0 commit comments