Bump up to wasmd v0.8.0-rc1 and fix validator address

This commit is contained in:
Ethan Frey 2020-05-22 16:55:48 +02:00 committed by Simon Warta
parent 833c0f64fa
commit 3b52fd15f3
2 changed files with 4 additions and 2 deletions

View File

@ -16,13 +16,15 @@ const codeMeta = {
builder: "cosmwasm/rust-optimizer:0.8.0",
};
// To get the proper validator address, run the demo chain (./scripts/wasmd/start.sh), then run:
// curl http://localhost:1317/staking/validators | jq .result[0].operator_address
const bounty = {
label: "Bounty",
initMsg: {
name: "Bounty",
symbol: "BOUNTY",
decimals: 3,
validator: "cosmosvaloper1ea5cpmcj2vf5d0xwurncx7zdnmkuc6eq696h9a", // cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq
validator: "cosmosvaloper1ea5cpmcj2vf5d0xwurncx7zdnmkuc6eq696h9a",
exit_tax: "0.005", // 0.5 %
min_withdrawal: "7",
},

View File

@ -1,5 +1,5 @@
# Choose from https://hub.docker.com/r/cosmwasm/wasmd-demo/tags
REPOSITORY="cosmwasm/wasmd-demo"
VERSION="v0.8.0-alpha3"
VERSION="v0.8.0-rc1"
CONTAINER_NAME="wasmd"