From 56de0a51d85f7cd96c5f750bbb28eb911fe50575 Mon Sep 17 00:00:00 2001 From: Simon Warta <2603011+webmaster128@users.noreply.github.com> Date: Wed, 30 Sep 2020 10:34:01 +0200 Subject: [PATCH] Fix CLI call command Before, the linked file did not point to a typescript file. Also the script would break once 0.23 is out. --- contracts/cw20-base/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/cw20-base/helpers.ts b/contracts/cw20-base/helpers.ts index 046ab881d..da310e9cb 100644 --- a/contracts/cw20-base/helpers.ts +++ b/contracts/cw20-base/helpers.ts @@ -2,7 +2,7 @@ * This is a set of helpers meant for use with @cosmjs/cli * With these you can easily use the cw20 contract without worrying about forming messages and parsing queries. * - * Usage: npx @cosmjs/cli --init https://github.com/CosmWasm/cosmwasm-plus/blob/master/contracts/cw20-base/helpers.ts + * Usage: npx @cosmjs/cli@^0.22 --init https://raw.githubusercontent.com/CosmWasm/cosmwasm-plus/master/contracts/cw20-base/helpers.ts * * Create a client: * const client = await useOptions(coralnetOptions).setup(password);