From 5474d0cf3a52359f092717e6d26b61af12d353ae Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sun, 2 Aug 2020 21:27:09 +0200 Subject: [PATCH 1/2] Update wasmd to v0.10.0 --- scripts/wasmd/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wasmd/env b/scripts/wasmd/env index 103bead2..00e8dde7 100644 --- a/scripts/wasmd/env +++ b/scripts/wasmd/env @@ -1,5 +1,5 @@ # Choose from https://hub.docker.com/r/cosmwasm/wasmd/tags REPOSITORY="cosmwasm/wasmd" -VERSION="v0.10.0-beta2" +VERSION="v0.10.0" CONTAINER_NAME="wasmd" From 5a41b309618fb872ad3e3521b40cddf01f44c5eb Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sun, 2 Aug 2020 21:27:33 +0200 Subject: [PATCH 2/2] Update demonet URLs --- packages/cli/examples/helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/examples/helpers.ts b/packages/cli/examples/helpers.ts index 3e39b1af..c249cf9f 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-09.cosmwasm.com", + httpUrl: "https://lcd.demo-10.cosmwasm.com", networkId: "testing", feeToken: "ucosm", gasPrice: 0.025, bech32prefix: "cosmos", }; -const defaultFaucetUrl = "https://faucet.demo-09.cosmwasm.com/credit"; +const defaultFaucetUrl = "https://faucet.demo-10.cosmwasm.com/credit"; const buildFeeTable = (feeToken: string, gasPrice: number): FeeTable => { const stdFee = (gas: number, denom: string, price: number) => {