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

Fix: Initia chain config #543

Merged
merged 2 commits into from
Sep 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 @@ -102,6 +102,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#543](https://github.com/alleslabs/celatone-frontend/pull/543) Fix Initia testnet chain config
- [#522](https://github.com/alleslabs/celatone-frontend/pull/522) Fix to support undefined execute msg
- [#520](https://github.com/alleslabs/celatone-frontend/pull/520) Fix update instantiated info height data and handle genesis height case
- [#518](https://github.com/alleslabs/celatone-frontend/pull/518) Fix contract migration remark data
Expand Down
6 changes: 3 additions & 3 deletions src/config/chain/initia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { wallets as keplrWallets } from "@cosmos-kit/keplr";
import type { ChainConfigs } from "./types";

export const INITIA_CHAIN_CONFIGS: ChainConfigs = {
"stone-9": {
"stone-10": {
chain: "initia",
registryChainName: "initiatestnet",
prettyName: "Initia Testnet",
lcd: "https://stone-rest.initia.tech",
rpc: "https://stone-rpc.initia.tech:443",
indexer: "https://initia-tesnet-graphql.alleslabs.dev/v1/graphql",
indexer: "https://stone-10-graphql.alleslabs.dev/v1/graphql",
api: "https://celatone-api.alleslabs.dev",
wallets: [...keplrWallets],
features: {
Expand Down Expand Up @@ -46,7 +46,7 @@ export const INITIA_CHAIN_CONFIGS: ChainConfigs = {
},
explorerLink: {
validator: "https://app.initia.tech/validator",
proposal: "https://app.initia.tech/proposals",
proposal: "https://app.initia.tech/proposal",
},
extra: {},
},
Expand Down