From 93019c5cf2375f663612a0c9574f169fcccf632d Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:16:43 -0500 Subject: [PATCH 1/3] Update readme.md --- readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 38315c9758..afa787f38e 100644 --- a/readme.md +++ b/readme.md @@ -26,11 +26,12 @@ EVM-compatibility. contains the source code for the Solidity smart contracts that implement the core functionality of ZetaChain. -## Building the source code - +## Building the zetacored/zetaclientd binaries +For athens3 testnet, clone this repository and checkout the latest release tag, and type ``` -make install +make install-testnet ``` +to build. This command will install the `zetacoded` and `zetaclientd` binaries in your `$GOPATH/bin` directory. From fcc5d6c1145e4f5810f388ffa0cbf91ff22475aa Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:20:49 -0500 Subject: [PATCH 2/3] readme small fix --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index afa787f38e..44b8a70586 100644 --- a/readme.md +++ b/readme.md @@ -36,6 +36,12 @@ to build. This command will install the `zetacoded` and `zetaclientd` binaries in your `$GOPATH/bin` directory. +Verify that the version of the binaries match the release tag. +``` +zetacored version +zetaclientd version +``` + ## Making changes to the source code After making changes to any of the protocol buffer files, run the following From 768ec1a75de460f31ca3bae61ec7234796f212be Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:21:40 -0500 Subject: [PATCH 3/3] Update readme.md Co-authored-by: Denis Fadeev --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 44b8a70586..a686a88f00 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ EVM-compatibility. core functionality of ZetaChain. ## Building the zetacored/zetaclientd binaries -For athens3 testnet, clone this repository and checkout the latest release tag, and type +For the Athens 3 testnet, clone this repository, checkout the latest release tag, and type the following command to build the binaries: ``` make install-testnet ```