From 6fb73c3f492fc212d9a1b570074bf6e5f107cc7a Mon Sep 17 00:00:00 2001 From: Lars Lubkoll Date: Fri, 16 Sep 2022 17:05:55 +0200 Subject: [PATCH] Improve documentation for installing kujira/core --- developers/smart-contracts/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/developers/smart-contracts/README.md b/developers/smart-contracts/README.md index 30d1adf..72a4b79 100644 --- a/developers/smart-contracts/README.md +++ b/developers/smart-contracts/README.md @@ -8,11 +8,13 @@ If you are new to CosmWASM and Smart Contracts, we recommend checking out the CW {% embed url="https://github.com/InterWasm/cw-template" %} -When you are ready to deploy, you will need a local build of the chain core, in order to store your code on-chain and submit governance proposals to instantiate it. +When you are ready to deploy, you will need a local build of the chain core, in order to store your code on-chain and submit governance proposals to instantiate it. This requires go1.18 or newer. ```bash git clone https://github.com/Team-Kujira/core cd core +go mod download all +go mod tidy make install ```