Skip to content

Commit d704a41

Browse files
committed
Add oysternet config
1 parent 4cc6a4e commit d704a41

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"start:base": "react-scripts start",
1414
"start": "yarn start:musselnet",
1515
"start:musselnet": "REACT_APP_NETWORK=musselnet yarn start:base",
16+
"start:oysternet": "REACT_APP_NETWORK=oysternet yarn start:base",
1617
"test": "react-scripts test",
1718
"eject": "react-scripts eject"
1819
},

src/config.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ const musselnet: AppConfig = {
1515
rpcUrl: "https://rpc.musselnet.cosmwasm.com",
1616
};
1717

18-
const configs: NetworkConfigs = { local, musselnet };
18+
const oysternet: AppConfig = {
19+
rpcUrl: "rpc.oysternet.cosmwasm.com",
20+
};
21+
22+
const configs: NetworkConfigs = { local, musselnet, oysternet };
1923

2024
function getAppConfig(): AppConfig {
2125
const network = process.env.REACT_APP_NETWORK;

0 commit comments

Comments
 (0)