File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ struct Cli {
2121
2222#[ derive( Subcommand ) ]
2323enum Command {
24+ /// Generate a starter config file with all supported contracts commented out.
25+ Init {
26+ /// Write config to this file instead of stdout.
27+ #[ arg( long) ]
28+ output : Option < PathBuf > ,
29+ } ,
2430 /// Generate genesis alloc JSON from a deploy config.
2531 Genesis {
2632 /// Path to the deploy TOML config.
@@ -43,19 +49,13 @@ enum Command {
4349 #[ arg( long) ]
4450 addresses_out : Option < PathBuf > ,
4551 } ,
46- /// Generate a starter config file with all supported contracts commented out.
47- Init {
48- /// Write config to this file instead of stdout.
49- #[ arg( long) ]
50- output : Option < PathBuf > ,
51- } ,
5252 /// Compute the address for a configured contract.
5353 ComputeAddress {
5454 /// Path to the deploy TOML config.
5555 #[ arg( long) ]
5656 config : PathBuf ,
5757
58- /// Contract name (`admin_proxy` or `fee_vault `).
58+ /// Contract name (e.g. `admin_proxy `).
5959 #[ arg( long) ]
6060 contract : String ,
6161 } ,
You can’t perform that action at this time.
0 commit comments