Skip to content

Commit

Permalink
Merge pull request #83 from Finschia/feat/finschia-conf
Browse files Browse the repository at this point in the history
feat: add Finschia config
  • Loading branch information
spoo-bar authored Dec 22, 2023
2 parents b9efd42 + 952adc9 commit 77917a2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ All notable changes to the Cosmy Wasmy extension will be documented in this file
### Added

- For localnet chains, all contracts on the chain can be imported in single click.
- Support [Finschia testnet](https://www.finschia.io/) - Finschia aims to become the world’s No. 1 blockchain ecosystem, leading the popularization of Web3 and securing over 1 billion users. Added configurations for localnet as well as testnet chains

### Changed

Expand Down
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,21 @@ Its recommended post installation to configure the extension for your use case.

The following chains are pre-configured by default. Any other chains can be manually added in the settings.

| | Project | Environment | ChainID |
| -- | ------------------------------------- | ----------- | ------------- |
| 1 | [Osmosis](https://osmosis.zone/) | testnet | osmo-test-4 |
| 2 | [Juno](https://www.junonetwork.io/) | testnet | uni-6 |
| 3 | [Archway](https://archway.io/) | testnet | constantine-3 |
| 4 | [Stargaze](https://www.stargaze.zone/) | testnet | elgafar-1 |
| 5 | [Neutron](https://neutron.org/) | testnet | baryon-1 |
| 6 | [Juno](https://www.junonetwork.io/) | localnet | testing |
| 7 | [Osmosis](https://osmosis.zone/) | localnet | localosmosis |
| 8 | [OKTC](https://www.okx.com/oktc) | localnet | exchain-67 |
| 9 | [OKTC](https://www.okx.com/oktc) | testnet | exchain-65 |
| 10 | [OKBC](https://www.okx.com/okbc) | localnet | okbchain-67 |
| 11 | [OKBC](https://www.okx.com/okbc) | testnet | okbchaintest-195 |
| | Project | Environment | ChainID |
| --- | ----------------------------------------- | ----------- | ---------------- |
| 1 | [Osmosis](https://osmosis.zone/) | testnet | osmo-test-4 |
| 2 | [Juno](https://www.junonetwork.io/) | testnet | uni-6 |
| 3 | [Archway](https://archway.io/) | testnet | constantine-3 |
| 4 | [Stargaze](https://www.stargaze.zone/) | testnet | elgafar-1 |
| 5 | [Neutron](https://neutron.org/) | testnet | baryon-1 |
| 6 | [Juno](https://www.junonetwork.io/) | localnet | testing |
| 7 | [Osmosis](https://osmosis.zone/) | localnet | localosmosis |
| 8 | [OKTC](https://www.okx.com/oktc) | localnet | exchain-67 |
| 9 | [OKTC](https://www.okx.com/oktc) | testnet | exchain-65 |
| 10 | [OKBC](https://www.okx.com/okbc) | localnet | okbchain-67 |
| 11 | [OKBC](https://www.okx.com/okbc) | testnet | okbchaintest-195 |
| 12 | [Finschia](https://www.finschia.network/) | localnet | simd-testing |
| 13 | [Finschia](https://www.finschia.network/) | testnet | ebony-2 |

You can set up the extension settings at
> File > Preferences > Settings > Extensions > Cosmy Wasmy
Expand Down
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,28 @@
"signType": "ethsecp256k1",
"accountExplorerLink": "https://www.oklink.com/okbc-test/address/${accountAddress}",
"txExplorerLink": "https://www.oklink.com/okbc-test/tx/${txHash}"
},
{
"configName": "Finschia localnet",
"chainId": "simd-testing",
"chainEnvironment": "localnet",
"addressPrefix": "link",
"rpcEndpoint": "http://localhost:26657",
"defaultGasPrice": "0.015",
"chainDenom": "cony",
"faucetEndpoint": "http://localhost:8081"
},
{
"configName": "Ebony",
"chainId": "ebony-2",
"chainEnvironment": "testnet",
"addressPrefix": "tlink",
"rpcEndpoint": "https://ebony-rpc.finschia.io/",
"defaultGasPrice": "0.015",
"chainDenom": "tcony",
"accountExplorerLink": "https://explorer.blockchain.line.me/ebony/address/${accountAddress}",
"txExplorerLink": "https://explorer.blockchain.line.me/ebony/transaction/${txHash}",
"faucetEndpoint": "https://faucet-ebonynw.line-apps.com"
}
]
},
Expand Down

0 comments on commit 77917a2

Please sign in to comment.