[cosmwasm] Add osmosis testnet config (#499)

* add osmosis testnet config

* empty commit
This commit is contained in:
Dev Kalra 2023-01-18 15:23:37 +05:30 committed by GitHub
parent e4963f4df3
commit ff89f36c46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 0 deletions

View File

@ -41,6 +41,12 @@ export const CONFIG: Config = {
network: Network.Testnet,
},
},
[NETWORKS.OSMOSIS_TESTNET]: {
type: CONFIG_TYPE.OSMOSIS,
host: {
endpoint: "https://rpc-test.osmosis.zone:443",
},
},
[NETWORKS.OSMOSIS_LOCAL]: {
type: CONFIG_TYPE.OSMOSIS,
host: {

View File

@ -3,6 +3,7 @@ export enum NETWORKS {
TERRA_TESTNET = "terra_testnet",
TERRA_LOCAL = "terra_local",
INJECTIVE_TESTNET = "injective_testnet",
OSMOSIS_TESTNET = "osmosis_testnet",
OSMOSIS_LOCAL = "osmosis_local",
}

View File

@ -129,6 +129,19 @@ export const CONFIG: Config = {
},
...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
// they are to be used only for for testing purposes
[NETWORKS.OSMOSIS_LOCAL]: {