Skip to content

Commit

Permalink
change ExampleClient contract to use cowsay v0.0.4 (arm64 support) (#111
Browse files Browse the repository at this point in the history
)

* change ExampleClient contract to use cowsay v0.0.4 (arm64 support)

* change remaining references from v0.0.3 to v0.0.4
  • Loading branch information
richardbremner authored May 24, 2024
1 parent dcd25f3 commit 637291c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/smart-contract-jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down
2 changes: 1 addition & 1 deletion hardhat/contracts/ExampleClient.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
Expand Down

0 comments on commit 637291c

Please sign in to comment.