diff --git a/packages/stargate/src/aminotypes.ts b/packages/stargate/src/aminotypes.ts index 7df819fd..2055f0cf 100644 --- a/packages/stargate/src/aminotypes.ts +++ b/packages/stargate/src/aminotypes.ts @@ -59,6 +59,8 @@ function omitDefault(input: T): T | undefined function createDefaultTypes(prefix: string): Record { return { + // bank + "/cosmos.bank.v1beta1.MsgSend": { aminoType: "cosmos-sdk/MsgSend", toAmino: ({ fromAddress, toAddress, amount }: MsgSend): AminoMsgSend["value"] => ({ @@ -95,6 +97,9 @@ function createDefaultTypes(prefix: string): Record { })), }), }, + + // distribution + "/cosmos.distribution.v1beta1.MsgFundCommunityPool": { aminoType: "cosmos-sdk/MsgFundCommunityPool", toAmino: ({ amount, depositor }: MsgFundCommunityPool): AminoMsgFundCommunityPool["value"] => ({ @@ -153,6 +158,9 @@ function createDefaultTypes(prefix: string): Record { validatorAddress: validator_address, }), }, + + // staking + "/cosmos.staking.v1beta1.MsgBeginRedelegate": { aminoType: "cosmos-sdk/MsgBeginRedelegate", toAmino: ({ @@ -343,6 +351,9 @@ function createDefaultTypes(prefix: string): Record { amount: amount, }), }, + + // ibc + "/ibc.applications.transfer.v1.MsgTransfer": { aminoType: "cosmos-sdk/MsgTransfer", toAmino: ({