Skip to content

Commit

Permalink
feat: continue with injective
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Mar 11, 2024
1 parent 342fad5 commit 6e33072
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/screens/staking/lib/staking_sdk/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export const testnetNetworks = new Set([
export const ethermintNetworks = new Set([
StakingNetworkId.Dymension,
StakingNetworkId.IslamicCoin,
StakingNetworkId.Injective,
]);

export const keplrNetworks = new Set(
Expand All @@ -95,8 +96,9 @@ export const keplrNetworks = new Set(
// StakingNetworkId.CosmosHub,
// StakingNetworkId.CosmosHubTestnet,
// StakingNetworkId.DyDx,
StakingNetworkId.Dymension,
StakingNetworkId.IslamicCoin,
// StakingNetworkId.Dymension,
// StakingNetworkId.IslamicCoin,
StakingNetworkId.Injective,
// StakingNetworkId.Kava,
// StakingNetworkId.KavaTestnet,
// StakingNetworkId.Osmosis,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const signAndBroadcastEthermint = async (
}).finish();

await window.keplr
?.sendTx(account.networkId, tx, "async" as BroadcastMode)
?.sendTx(account.networkId, tx, "async" as BroadcastMode.Block)
.then((res) => {
// eslint-disable-next-line no-console
console.log("debug: cosmos.ts: res", res);
Expand Down

0 comments on commit 6e33072

Please sign in to comment.