Skip to content

Commit 3f06f8b

Browse files
authored
Merge pull request #3 from cocoleecoco/0.2.0
modify command name
2 parents 49a01d6 + b23861d commit 3f06f8b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

codegen/src/main/java/org/web3j/codegen/SophiaFunctionWrapperGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
public class SophiaFunctionWrapperGenerator extends FunctionWrapperGenerator {
2323

24-
private static final String USAGE = "sophia generate "
24+
private static final String USAGE = "wasm generate "
2525
+ "[--javaTypes|--solidityTypes] "
2626
+ "<input binary file>.bin <input abi file>.abi "
2727
+ "-p|--package <base package name> "

console/src/main/java/org/web3j/console/Runner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414
public class Runner {
1515

16-
private static String USAGE = "Usage: web3j version|wallet|solidity|truffle|sophia ...";
16+
private static String USAGE = "Usage: client-sdk version|wallet|solidity|truffle|wasm ...";
1717

1818
private static String LOGO = "\n" // generated at http://patorjk.com/software/taag
1919
+ " _ _____ _ _ \n"
@@ -41,7 +41,7 @@ public static void main(String[] args) throws Exception {
4141
case "truffle":
4242
TruffleJsonFunctionWrapperGenerator.run(tail(args));
4343
break;
44-
case "sophia":
44+
case "wasm":
4545
SophiaFunctionWrapperGenerator.run(tail(args));
4646
break;
4747
case "version":

0 commit comments

Comments
 (0)