Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 2b6c18c

Browse files
Remove misleading quotes in helper (#134)
1 parent 33d8838 commit 2b6c18c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/command/account.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ pub enum AccountCommand {
3030
Addresses,
3131
/// Print the account balance.
3232
Balance,
33-
/// Burn a native token: `burn-native-token "0x..." 100`
33+
/// Burn a native token: `burn-native-token 0x... 100`
3434
BurnNativeToken { token_id: String, amount: String },
35-
/// Burn an NFT: `burn-nft "0x..."`
35+
/// Burn an NFT: `burn-nft 0x...`
3636
BurnNft { nft_id: String },
3737
/// Claim outputs with storage deposit return, expiration or timelock unlock conditions.
3838
Claim { output_id: Option<String> },
3939
/// Consolidate all basic outputs into one address.
4040
Consolidate,
41-
/// Destroy an alias: `destroy-alias "0x..."`
41+
/// Destroy an alias: `destroy-alias 0x...`
4242
DestroyAlias { alias_id: String },
43-
/// Destroy a foundry: `destroy-foundry "0x..."`
43+
/// Destroy a foundry: `destroy-foundry 0x...`
4444
DestroyFoundry { foundry_id: String },
4545
/// Exit from the account prompt.
4646
Exit,
@@ -49,9 +49,9 @@ pub enum AccountCommand {
4949
url: Option<String>,
5050
address: Option<String>,
5151
},
52-
/// Melt a native token: `melt-native-token "0x..." 100`
52+
/// Melt a native token: `melt-native-token 0x... 100`
5353
MeltNativeToken { token_id: String, amount: String },
54-
/// Mint a native token: `mint-native-token 100 "0x..." (foundry metadata)`
54+
/// Mint a native token: `mint-native-token 100 0x... (foundry metadata)`
5555
MintNativeToken {
5656
maximum_supply: String,
5757
foundry_metadata: Option<String>,

0 commit comments

Comments
 (0)