Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Finschia config #83

Merged
merged 3 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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