@@ -218,7 +218,8 @@ public static void deployHelp(boolean isWasm) {
218
218
System .out .println (
219
219
"* parameters -- Parameters will be passed to constructor when deploying the contract." );
220
220
System .out .println (
221
- "* -l[Optional] -- deploy with link, link BFS path after deploy contract success." );
221
+ "* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n "
222
+ + " link must locate under '/apps', and be composed of contract name and version " );
222
223
System .out .println (
223
224
"* --parallel-analysis/-p[Optional] -- parallel conflict analysis with the contract, default: no." );
224
225
} else {
@@ -231,6 +232,9 @@ public static void deployHelp(boolean isWasm) {
231
232
"* abi -- The path of ABI file after contract being compiled via cargo-liquid." );
232
233
System .out .println (
233
234
"* path -- The path of BFS where the contract will be located at, such as '/apps/liquid/YouContract/'." );
235
+ System .out .println (
236
+ "* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n "
237
+ + " link must locate under '/apps', and be composed of contract name and version " );
234
238
System .out .println (
235
239
"* parameters -- Parameters will be passed to constructor when deploying the contract." );
236
240
}
@@ -264,8 +268,8 @@ public static void linkHelp() {
264
268
System .out .println (
265
269
"* path[Required] -- The BFS path of link, link must locate under '/apps', and be composed of contract name and version." );
266
270
System .out .println ("* contractAddress[Required] -- The address of a contract." );
267
- System .out .println ("Example: (if in wasm)\n ln /apps/Name/Version 0x1234567890" );
268
271
System .out .println ("Example: (if in evm)\n ln /apps/Name/Version /apps/test/HelloWorld" );
272
+ System .out .println ("Example: (if in wasm)\n ln /apps/Name/Version 0x1234567890" );
269
273
}
270
274
271
275
public static void addObserverHelp () {
0 commit comments