interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
140 lines (139 loc) • 4.57 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageComposer = exports.registry = void 0;
const tx_1 = require("./tx");
exports.registry = [["/cosmos.gov.v1.MsgSubmitProposal", tx_1.MsgSubmitProposal], ["/cosmos.gov.v1.MsgExecLegacyContent", tx_1.MsgExecLegacyContent], ["/cosmos.gov.v1.MsgVote", tx_1.MsgVote], ["/cosmos.gov.v1.MsgVoteWeighted", tx_1.MsgVoteWeighted], ["/cosmos.gov.v1.MsgDeposit", tx_1.MsgDeposit], ["/cosmos.gov.v1.MsgUpdateParams", tx_1.MsgUpdateParams], ["/cosmos.gov.v1.MsgCancelProposal", tx_1.MsgCancelProposal]];
exports.MessageComposer = {
encoded: {
submitProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
value: tx_1.MsgSubmitProposal.encode(value).finish()
};
},
execLegacyContent(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
value: tx_1.MsgExecLegacyContent.encode(value).finish()
};
},
vote(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVote",
value: tx_1.MsgVote.encode(value).finish()
};
},
voteWeighted(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
value: tx_1.MsgVoteWeighted.encode(value).finish()
};
},
deposit(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgDeposit",
value: tx_1.MsgDeposit.encode(value).finish()
};
},
updateParams(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
value: tx_1.MsgUpdateParams.encode(value).finish()
};
},
cancelProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
value: tx_1.MsgCancelProposal.encode(value).finish()
};
}
},
withTypeUrl: {
submitProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
value
};
},
execLegacyContent(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
value
};
},
vote(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVote",
value
};
},
voteWeighted(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
value
};
},
deposit(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgDeposit",
value
};
},
updateParams(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
value
};
},
cancelProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
value
};
}
},
fromPartial: {
submitProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgSubmitProposal",
value: tx_1.MsgSubmitProposal.fromPartial(value)
};
},
execLegacyContent(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContent",
value: tx_1.MsgExecLegacyContent.fromPartial(value)
};
},
vote(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVote",
value: tx_1.MsgVote.fromPartial(value)
};
},
voteWeighted(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgVoteWeighted",
value: tx_1.MsgVoteWeighted.fromPartial(value)
};
},
deposit(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgDeposit",
value: tx_1.MsgDeposit.fromPartial(value)
};
},
updateParams(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgUpdateParams",
value: tx_1.MsgUpdateParams.fromPartial(value)
};
},
cancelProposal(value) {
return {
typeUrl: "/cosmos.gov.v1.MsgCancelProposal",
value: tx_1.MsgCancelProposal.fromPartial(value)
};
}
}
};