Merge pull request #331 from CosmWasm/wasmd-0.10.0

Update to wasmd 0.10.0
This commit is contained in:
Ethan Frey 2020-08-03 14:50:09 +02:00 committed by GitHub
commit a4ac0c3616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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) => {

View File

@ -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"