Skip to content

Commit

Permalink
add support type comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ALPAC-4 committed Nov 29, 2023
1 parent 6dae689 commit 9cd09ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions x/move/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ func ExecuteCmd() *cobra.Command {
fmt.Sprintf(`
Execute an entry function of a published module
Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw, vector<inner_type>
Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw_hex, raw_base64,
vector<inner_type>, option<inner_type>, decimal128, decimal256, fixed_point32, fixed_point64
Example of args: address:0x1 bool:true u8:0 string:hello vector<u32>:a,b,c,d
Example:
Expand Down Expand Up @@ -196,7 +197,8 @@ func ScriptCmd() *cobra.Command {
fmt.Sprintf(`
Execute a given script
Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw, vector<inner_type>
Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw_hex, raw_base64,
vector<inner_type>, option<inner_type>, decimal128, decimal256, fixed_point32, fixed_point64
Example of args: address:0x1 bool:true u8:0 string:hello vector<u32>:a,b,c,d
Example:
Expand Down

0 comments on commit 9cd09ac

Please sign in to comment.