From 5ac7ac72bb10ef6090523f717f550ebae21d398f Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Fri, 17 Apr 2020 15:22:44 +0200 Subject: [PATCH] Point example code to demo-071.cosmwasm.com --- packages/cli/MASK.md | 2 +- packages/cli/README.md | 2 +- packages/cli/examples/helpers.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/cli/MASK.md b/packages/cli/MASK.md index dc6e0f2a..04977195 100644 --- a/packages/cli/MASK.md +++ b/packages/cli/MASK.md @@ -124,7 +124,7 @@ the wasmd blockchain (reflected by mask, so using the mask address). To view this properly, we will have to use the cli tooling: ```sh -wasmcli config node https://rpc.demo-07.cosmwasm.com:443 +wasmcli config node https://rpc.demo-071.cosmwasm.com:443 wasmcli config trust-node true wasmcli query staking validators diff --git a/packages/cli/README.md b/packages/cli/README.md index e6f3bea0..7130b7eb 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -83,7 +83,7 @@ quick queries on a chain, you can use an extended set of helpers: Start with `./bin/cosmwasm-cli --init examples/helpers.ts` -(This points to the Demo Net at https://lcd.demo-07.cosmwasm.com for ease of use. Other networks, look below) +(This points to the Demonet at https://lcd.demo-071.cosmwasm.com for ease of use. Other networks, look below) Setup Account: diff --git a/packages/cli/examples/helpers.ts b/packages/cli/examples/helpers.ts index 8f631908..deb27c58 100644 --- a/packages/cli/examples/helpers.ts +++ b/packages/cli/examples/helpers.ts @@ -7,14 +7,14 @@ interface Options { }; const defaultOptions: Options = { - httpUrl: "https://lcd.demo-07.cosmwasm.com", + httpUrl: "https://lcd.demo-071.cosmwasm.com", networkId: "testing", feeToken: "ucosm", gasPrice: 0.025, bech32prefix: "cosmos", } -const defaultFaucetUrl = "https://faucet.demo-07.cosmwasm.com/credit"; +const defaultFaucetUrl = "https://faucet.demo-071.cosmwasm.com/credit"; const buildFeeTable = (feeToken: string, gasPrice: number): FeeTable => { const stdFee = (gas: number, denom: string, price: number) => {