Merge pull request #163 from CosmWasm/new-demonet

Point example code to demo-071.cosmwasm.com
This commit is contained in:
Simon Warta 2020-04-18 10:01:52 +02:00 committed by GitHub
commit fd6aa777d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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