@@ -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