File tree Expand file tree Collapse file tree 9 files changed +9
-33
lines changed
ironfish-cli/src/commands/wallet Expand file tree Collapse file tree 9 files changed +9
-33
lines changed Original file line number Diff line number Diff line change @@ -35,36 +35,31 @@ This will destroy tokens and decrease supply for a given asset.`
35
35
static flags = {
36
36
...RemoteFlags ,
37
37
account : Flags . string ( {
38
- char : 'f ' ,
38
+ char : 'a ' ,
39
39
description : 'Name of the account to burn from' ,
40
40
} ) ,
41
41
fee : IronFlag ( {
42
- char : 'o' ,
43
42
description : 'The fee amount in IRON' ,
44
43
minimum : 1n ,
45
44
flagName : 'fee' ,
46
45
} ) ,
47
46
feeRate : IronFlag ( {
48
- char : 'r' ,
49
47
description : 'The fee rate amount in IRON/Kilobyte' ,
50
48
minimum : 1n ,
51
49
flagName : 'fee rate' ,
52
50
} ) ,
53
51
amount : ValueFlag ( {
54
- char : 'a' ,
55
52
description : 'Amount of coins to burn in the major denomination' ,
56
53
flagName : 'amount' ,
57
54
} ) ,
58
55
assetId : Flags . string ( {
59
- char : 'i' ,
60
56
description : 'Identifier for the asset' ,
61
57
} ) ,
62
58
confirm : Flags . boolean ( {
63
59
default : false ,
64
60
description : 'Confirm without asking' ,
65
61
} ) ,
66
62
confirmations : Flags . integer ( {
67
- char : 'c' ,
68
63
description :
69
64
'Minimum number of block confirmations needed to include a note. Set to 0 to include all blocks.' ,
70
65
required : false ,
Original file line number Diff line number Diff line change @@ -43,36 +43,30 @@ export class BridgeCommand extends IronfishCommand {
43
43
description : 'Wait for the transaction to be confirmed on Ironfish' ,
44
44
} ) ,
45
45
account : Flags . string ( {
46
- char : 'f ' ,
46
+ char : 'a ' ,
47
47
description : 'Name of the account to send the asset from' ,
48
48
} ) ,
49
49
to : Flags . string ( {
50
- char : 't' ,
51
50
description : 'The Ethereum public address of the recipient' ,
52
51
} ) ,
53
52
amount : ValueFlag ( {
54
- char : 'a' ,
55
53
description : 'The amount of the asset in the major denomination' ,
56
54
flagName : 'amount' ,
57
55
} ) ,
58
56
assetId : HexFlag ( {
59
- char : 'i' ,
60
57
description : 'The identifier for the asset to use when bridging' ,
61
58
} ) ,
62
59
fee : IronFlag ( {
63
- char : 'o' ,
64
60
description : 'The fee amount in IRON' ,
65
61
minimum : 1n ,
66
62
flagName : 'fee' ,
67
63
} ) ,
68
64
feeRate : IronFlag ( {
69
- char : 'r' ,
70
65
description : 'The fee rate amount in IRON/Kilobyte' ,
71
66
minimum : 1n ,
72
67
flagName : 'fee rate' ,
73
68
} ) ,
74
69
expiration : Flags . integer ( {
75
- char : 'e' ,
76
70
description :
77
71
'The block sequence after which the transaction will be removed from the mempool. Set to 0 for no expiration.' ,
78
72
} ) ,
Original file line number Diff line number Diff line change @@ -41,38 +41,32 @@ This will create tokens and increase supply for a given asset.`
41
41
static flags = {
42
42
...RemoteFlags ,
43
43
account : Flags . string ( {
44
- char : 'f ' ,
44
+ char : 'a ' ,
45
45
description : 'Name of the account to mint from' ,
46
46
} ) ,
47
47
fee : IronFlag ( {
48
- char : 'o' ,
49
48
description : 'The fee amount in IRON' ,
50
49
minimum : 1n ,
51
50
flagName : 'fee' ,
52
51
} ) ,
53
52
feeRate : IronFlag ( {
54
- char : 'r' ,
55
53
description : 'The fee rate amount in IRON/Kilobyte' ,
56
54
minimum : 1n ,
57
55
flagName : 'fee rate' ,
58
56
} ) ,
59
57
amount : ValueFlag ( {
60
- char : 'a' ,
61
58
description : 'Amount of coins to mint in the major denomination' ,
62
59
flagName : 'amount' ,
63
60
} ) ,
64
61
assetId : Flags . string ( {
65
- char : 'i' ,
66
62
description : 'Identifier for the asset' ,
67
63
required : false ,
68
64
} ) ,
69
65
metadata : Flags . string ( {
70
- char : 'm' ,
71
66
description : 'Metadata for the asset' ,
72
67
required : false ,
73
68
} ) ,
74
69
name : Flags . string ( {
75
- char : 'n' ,
76
70
description : 'Name for the asset' ,
77
71
required : false ,
78
72
} ) ,
@@ -81,7 +75,6 @@ This will create tokens and increase supply for a given asset.`
81
75
description : 'Confirm without asking' ,
82
76
} ) ,
83
77
confirmations : Flags . integer ( {
84
- char : 'c' ,
85
78
description :
86
79
'Minimum number of block confirmations needed to include a note. Set to 0 to include all blocks.' ,
87
80
required : false ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export class MultisigAccountParticipants extends IronfishCommand {
11
11
static flags = {
12
12
...RemoteFlags ,
13
13
account : Flags . string ( {
14
- char : 'f ' ,
14
+ char : 'a ' ,
15
15
description : 'Name of the account to list group identities for' ,
16
16
} ) ,
17
17
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class CreateSigningPackage extends IronfishCommand {
14
14
static flags = {
15
15
...RemoteFlags ,
16
16
account : Flags . string ( {
17
- char : 'f ' ,
17
+ char : 'a ' ,
18
18
description : 'Name of the account to use when creating the signing package' ,
19
19
required : false ,
20
20
} ) ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class CreateSigningCommitmentCommand extends IronfishCommand {
15
15
static flags = {
16
16
...RemoteFlags ,
17
17
account : Flags . string ( {
18
- char : 'f ' ,
18
+ char : 'a ' ,
19
19
description :
20
20
'Name of the account to use for generating the commitment, must be a multisig participant account' ,
21
21
required : false ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class MultisigSign extends IronfishCommand {
15
15
static flags = {
16
16
...RemoteFlags ,
17
17
account : Flags . string ( {
18
- char : 'f ' ,
18
+ char : 'a ' ,
19
19
description : 'Name of the account to use when aggregating signature shares' ,
20
20
required : false ,
21
21
} ) ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export class CreateSignatureShareCommand extends IronfishCommand {
16
16
static flags = {
17
17
...RemoteFlags ,
18
18
account : Flags . string ( {
19
- char : 'f ' ,
19
+ char : 'a ' ,
20
20
description : 'Name of the account from which the signature share will be created' ,
21
21
required : false ,
22
22
} ) ,
Original file line number Diff line number Diff line change @@ -41,32 +41,27 @@ export class Send extends IronfishCommand {
41
41
static flags = {
42
42
...RemoteFlags ,
43
43
account : Flags . string ( {
44
- char : 'f ' ,
44
+ char : 'a ' ,
45
45
description : 'Name of the account to send money from' ,
46
46
} ) ,
47
47
amount : ValueFlag ( {
48
- char : 'a' ,
49
48
description : 'The amount to send in the major denomination' ,
50
49
flagName : 'amount' ,
51
50
} ) ,
52
51
to : Flags . string ( {
53
- char : 't' ,
54
52
description : 'The public address of the recipient' ,
55
53
} ) ,
56
54
fee : IronFlag ( {
57
- char : 'o' ,
58
55
description : 'The fee amount in IRON' ,
59
56
minimum : 1n ,
60
57
flagName : 'fee' ,
61
58
} ) ,
62
59
feeRate : IronFlag ( {
63
- char : 'r' ,
64
60
description : 'The fee rate amount in IRON/Kilobyte' ,
65
61
minimum : 1n ,
66
62
flagName : 'fee rate' ,
67
63
} ) ,
68
64
memo : Flags . string ( {
69
- char : 'm' ,
70
65
description : 'The memo of transaction' ,
71
66
} ) ,
72
67
confirm : Flags . boolean ( {
@@ -83,7 +78,6 @@ export class Send extends IronfishCommand {
83
78
'The block sequence after which the transaction will be removed from the mempool. Set to 0 for no expiration.' ,
84
79
} ) ,
85
80
confirmations : Flags . integer ( {
86
- char : 'c' ,
87
81
description :
88
82
'Minimum number of block confirmations needed to include a note. Set to 0 to include all blocks.' ,
89
83
required : false ,
You can’t perform that action at this time.
0 commit comments