Skip to content

Commit

Permalink
Merge pull request #1228 from shentufoundation/shentu-update
Browse files Browse the repository at this point in the history
chore: Update Shentu chain bank send msgs type to 'cosmos-sdk/MsgSend'
  • Loading branch information
Thunnini authored Nov 7, 2024
2 parents cb7d266 + 1bb1efe commit 3d792ff
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions apps/extension/src/stores/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,17 +352,6 @@ export class RootStore {
CosmosAccount.use({
queriesStore: this.queriesStore,
msgOptsCreator: (chainId) => {
// In certik, change the msg type of the MsgSend to "bank/MsgSend"
if (chainId.startsWith("shentu-")) {
return {
send: {
native: {
type: "bank/MsgSend",
},
},
};
}

// In akash or sifchain, increase the default gas for sending
if (
chainId.startsWith("akashnet-") ||
Expand Down
11 changes: 0 additions & 11 deletions apps/mobile/src/stores/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,17 +231,6 @@ export class RootStore {
CosmosAccount.use({
queriesStore: this.queriesStore,
msgOptsCreator: chainId => {
// In certik, change the msg type of the MsgSend to "bank/MsgSend"
if (chainId.startsWith('shentu-')) {
return {
send: {
native: {
type: 'bank/MsgSend',
},
},
};
}

// In akash or sifchain, increase the default gas for sending
if (
chainId.startsWith('akashnet-') ||
Expand Down

0 comments on commit 3d792ff

Please sign in to comment.