[cosmwasm] Add osmosis testnet config (#499)
* add osmosis testnet config * empty commit
This commit is contained in:
parent
e4963f4df3
commit
ff89f36c46
|
@ -41,6 +41,12 @@ export const CONFIG: Config = {
|
||||||
network: Network.Testnet,
|
network: Network.Testnet,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
[NETWORKS.OSMOSIS_TESTNET]: {
|
||||||
|
type: CONFIG_TYPE.OSMOSIS,
|
||||||
|
host: {
|
||||||
|
endpoint: "https://rpc-test.osmosis.zone:443",
|
||||||
|
},
|
||||||
|
},
|
||||||
[NETWORKS.OSMOSIS_LOCAL]: {
|
[NETWORKS.OSMOSIS_LOCAL]: {
|
||||||
type: CONFIG_TYPE.OSMOSIS,
|
type: CONFIG_TYPE.OSMOSIS,
|
||||||
host: {
|
host: {
|
||||||
|
|
|
@ -3,6 +3,7 @@ export enum NETWORKS {
|
||||||
TERRA_TESTNET = "terra_testnet",
|
TERRA_TESTNET = "terra_testnet",
|
||||||
TERRA_LOCAL = "terra_local",
|
TERRA_LOCAL = "terra_local",
|
||||||
INJECTIVE_TESTNET = "injective_testnet",
|
INJECTIVE_TESTNET = "injective_testnet",
|
||||||
|
OSMOSIS_TESTNET = "osmosis_testnet",
|
||||||
OSMOSIS_LOCAL = "osmosis_local",
|
OSMOSIS_LOCAL = "osmosis_local",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -129,6 +129,19 @@ export const CONFIG: Config = {
|
||||||
},
|
},
|
||||||
...PYTH_SOURCES_TESTNET,
|
...PYTH_SOURCES_TESTNET,
|
||||||
},
|
},
|
||||||
|
[NETWORKS.OSMOSIS_TESTNET]: {
|
||||||
|
wormhole_contract:
|
||||||
|
"osmo1hggkxr0hpw83f8vuft7ruvmmamsxmwk2hzz6nytdkzyup9krt0dq27sgyx",
|
||||||
|
governance_source_index: 0,
|
||||||
|
governance_sequence_number: 0,
|
||||||
|
chain_id: 20,
|
||||||
|
valid_time_period_secs: 60,
|
||||||
|
fee: {
|
||||||
|
amount: "1",
|
||||||
|
denom: "uosmo",
|
||||||
|
},
|
||||||
|
...PYTH_SOURCES_TESTNET,
|
||||||
|
},
|
||||||
// this details below are invalid and random
|
// this details below are invalid and random
|
||||||
// they are to be used only for for testing purposes
|
// they are to be used only for for testing purposes
|
||||||
[NETWORKS.OSMOSIS_LOCAL]: {
|
[NETWORKS.OSMOSIS_LOCAL]: {
|
||||||
|
|
Loading…
Reference in New Issue