Skip to content

Commit

Permalink
npm run build:telescope
Browse files Browse the repository at this point in the history
  • Loading branch information
puneet2019 committed Sep 18, 2023
1 parent 05ebe2a commit fca4240
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/cosmos/distribution/v1beta1/tx.amino.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ export interface MsgCommunityPoolSpendAminoType extends AminoMsg {
};
}
export interface MsgWithdrawTokenizeShareRecordRewardAminoType extends AminoMsg {
type: "cosmos-sdk/MsgWithdrawTokenizeShareRecordReward";
type: "cosmos-sdk/MsgWithdrawTokenizeReward";
value: {
owner_address: string;
record_id: string;
};
}
export interface MsgWithdrawAllTokenizeShareRecordRewardAminoType extends AminoMsg {
type: "cosmos-sdk/MsgWithdrawAllTokenizeShareRecordReward";
type: "cosmos-sdk/MsgWithdrawAllTokenizeReward";
value: {
owner_address: string;
};
Expand Down Expand Up @@ -214,7 +214,7 @@ export const AminoConverter = {
},
},
"/cosmos.distribution.v1beta1.MsgWithdrawTokenizeShareRecordReward": {
aminoType: "cosmos-sdk/MsgWithdrawTokenizeShareRecordReward",
aminoType: "cosmos-sdk/MsgWithdrawTokenizeReward",
toAmino: ({
ownerAddress,
recordId,
Expand All @@ -235,7 +235,7 @@ export const AminoConverter = {
},
},
"/cosmos.distribution.v1beta1.MsgWithdrawAllTokenizeShareRecordReward": {
aminoType: "cosmos-sdk/MsgWithdrawAllTokenizeShareRecordReward",
aminoType: "cosmos-sdk/MsgWithdrawAllTokenizeReward",
toAmino: ({
ownerAddress,
}: MsgWithdrawAllTokenizeShareRecordReward): MsgWithdrawAllTokenizeShareRecordRewardAminoType["value"] => {
Expand Down
4 changes: 2 additions & 2 deletions src/cosmos/staking/v1beta1/tx.amino.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export interface MsgRedeemTokensForSharesAminoType extends AminoMsg {
};
}
export interface MsgTransferTokenizeShareRecordAminoType extends AminoMsg {
type: "cosmos-sdk/MsgTransferTokenizeShareRecord";
type: "cosmos-sdk/MsgTransferTokenizeRecord";
value: {
tokenize_share_record_id: string;
sender: string;
Expand Down Expand Up @@ -530,7 +530,7 @@ export const AminoConverter = {
},
},
"/cosmos.staking.v1beta1.MsgTransferTokenizeShareRecord": {
aminoType: "cosmos-sdk/MsgTransferTokenizeShareRecord",
aminoType: "cosmos-sdk/MsgTransferTokenizeRecord",
toAmino: ({
tokenizeShareRecordId,
sender,
Expand Down

0 comments on commit fca4240

Please sign in to comment.