From 9cd09ac7f49bef95dd1ff3572a29cc2b54c0005e Mon Sep 17 00:00:00 2001 From: ALPAC-4 Date: Wed, 29 Nov 2023 20:59:02 +0900 Subject: [PATCH] add support type comment --- x/move/client/cli/tx.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x/move/client/cli/tx.go b/x/move/client/cli/tx.go index 367a2b4d..bc2a352e 100644 --- a/x/move/client/cli/tx.go +++ b/x/move/client/cli/tx.go @@ -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 +Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw_hex, raw_base64, + vector, option, decimal128, decimal256, fixed_point32, fixed_point64 Example of args: address:0x1 bool:true u8:0 string:hello vector:a,b,c,d Example: @@ -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 +Supported types : u8, u16, u32, u64, u128, u256, bool, string, address, raw_hex, raw_base64, + vector, option, decimal128, decimal256, fixed_point32, fixed_point64 Example of args: address:0x1 bool:true u8:0 string:hello vector:a,b,c,d Example: