Skip to content

Commit

Permalink
description
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Sep 25, 2024
1 parent 8ed58bc commit ac4a176
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/tasks/src/evmCall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ task("evm-call", "Call a universal app", evmCall)
types.int
)
.addOptionalParam("revertMessage", "Revert message", "0x")
.addParam("types", "The types of the parameters (example: ['string'])")
.addParam("types", `The types of the parameters (example: '["string"]')`)
.addVariadicPositionalParam("values", "The values of the parameters");
2 changes: 1 addition & 1 deletion packages/tasks/src/evmDepositAndCall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ task("evm-deposit-and-call", "Deposit tokens", evmDepositAndCall)
.addOptionalParam("revertMessage", "Revert message", "0x")
.addParam("amount", "amount of ETH to send with the transaction")
.addOptionalParam("erc20", "ERC-20 token address")
.addParam("types", "The types of the parameters (example: ['string'])")
.addParam("types", `The types of the parameters (example: '["string"]')`)
.addVariadicPositionalParam("values", "The values of the parameters");
4 changes: 2 additions & 2 deletions packages/tasks/src/zetachainCall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ task("zetachain-call", "Call a contract on a connected chain", zetachainCall)
7000000,
types.int
)
.addParam("function", "Function to call (example: 'hello(string)')")
.addParam("types", "The types of the parameters (example: ['string'])")
.addParam("function", `Function to call (example: "hello(string)")`)
.addParam("types", `The types of the parameters (example: '["string"]')`)
.addVariadicPositionalParam("values", "The values of the parameters");
4 changes: 2 additions & 2 deletions packages/tasks/src/zetachainWithdrawAndCall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ task(
types.int
)
.addParam("amount", "The amount of tokens to send")
.addParam("function", "Function to call (example: 'hello(string)')")
.addParam("types", "The types of the parameters (example: ['string'])")
.addParam("function", `Function to call (example: "hello(string)")`)
.addParam("types", `The types of the parameters (example: '["string"]')`)
.addVariadicPositionalParam("values", "The values of the parameters");

0 comments on commit ac4a176

Please sign in to comment.