We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 672f04b commit 1504e95Copy full SHA for 1504e95
src/index.ts
@@ -20,7 +20,8 @@ program
20
.description("list keys")
21
.option(
22
"-t, --account-type <accountType>",
23
- "'platform' or 'asset'. The type of the key"
+ "'platform' or 'asset'. The type of the key",
24
+ "platform"
25
)
26
.action(handleError(listCommand));
27
@@ -29,7 +30,8 @@ program
29
30
.description("create a new key")
31
32
33
34
35
36
.option("-p, --passphrase <passphrase>", "passphrase")
37
.action(handleError(createCommand));
@@ -39,7 +41,8 @@ program
39
41
.description("delete the key")
40
42
43
44
45
46
47
.option("-a, --address <address>", "address")
48
.action(handleError(deleteCommand));
0 commit comments