diff --git a/README.md b/README.md index 64230a79..0058dacf 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Visit the [Lilypad Docs](https://docs.lilypad.tech/) site for a more comprehensi Jobs (containers) can be run on Lilypad by utilising the [Installable CLI](https://lilypad.team/cli), also available for installation through the [Go toolchain](https://lilypad.team/cligo). After setting up the necessary pre-requisites, the CLI enables users to run jobs as described below: ``` -lilypad run cowsay:v0.0.3 -i Message="moo" +lilypad run cowsay:v0.0.4 -i Message="moo" ``` [![Watch the video](https://img.youtube.com/vi/Ep9ML9h8DTE/0.jpg)](https://www.youtube.com/watch?v=Ep9ML9h8DTE) diff --git a/docs/smart-contract-jobs.md b/docs/smart-contract-jobs.md index 55f58244..29a7084f 100644 --- a/docs/smart-contract-jobs.md +++ b/docs/smart-contract-jobs.md @@ -80,7 +80,7 @@ contract ExampleClient is Ownable, Initializable, ILilypadJobClient { string[] memory inputs = new string[](1); inputs[0] = string(abi.encodePacked("Message=", message)); uint256 id = jobManagerContract.runJob( - "cowsay:v0.0.3", + "cowsay:v0.0.4", inputs, msg.sender ); diff --git a/hardhat/contracts/ExampleClient.sol b/hardhat/contracts/ExampleClient.sol index e158d8d0..30dcdb5b 100644 --- a/hardhat/contracts/ExampleClient.sol +++ b/hardhat/contracts/ExampleClient.sol @@ -44,7 +44,7 @@ contract ExampleClient is Ownable, Initializable, ILilypadJobClient { string[] memory inputs = new string[](1); inputs[0] = string(abi.encodePacked("Message=", message)); uint256 id = jobManagerContract.runJob( - "cowsay:v0.0.3", + "cowsay:v0.0.4", inputs, msg.sender );