UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

140 lines (139 loc) 5.58 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MessageComposer = exports.registry = void 0; const tx_1 = require("./tx"); exports.registry = [["/cosmos.distribution.v1beta1.MsgSetWithdrawAddress", tx_1.MsgSetWithdrawAddress], ["/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", tx_1.MsgWithdrawDelegatorReward], ["/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission", tx_1.MsgWithdrawValidatorCommission], ["/cosmos.distribution.v1beta1.MsgFundCommunityPool", tx_1.MsgFundCommunityPool], ["/cosmos.distribution.v1beta1.MsgUpdateParams", tx_1.MsgUpdateParams], ["/cosmos.distribution.v1beta1.MsgCommunityPoolSpend", tx_1.MsgCommunityPoolSpend], ["/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool", tx_1.MsgDepositValidatorRewardsPool]]; exports.MessageComposer = { encoded: { setWithdrawAddress(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress", value: tx_1.MsgSetWithdrawAddress.encode(value).finish() }; }, withdrawDelegatorReward(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", value: tx_1.MsgWithdrawDelegatorReward.encode(value).finish() }; }, withdrawValidatorCommission(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission", value: tx_1.MsgWithdrawValidatorCommission.encode(value).finish() }; }, fundCommunityPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool", value: tx_1.MsgFundCommunityPool.encode(value).finish() }; }, updateParams(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams", value: tx_1.MsgUpdateParams.encode(value).finish() }; }, communityPoolSpend(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend", value: tx_1.MsgCommunityPoolSpend.encode(value).finish() }; }, depositValidatorRewardsPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool", value: tx_1.MsgDepositValidatorRewardsPool.encode(value).finish() }; } }, withTypeUrl: { setWithdrawAddress(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress", value }; }, withdrawDelegatorReward(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", value }; }, withdrawValidatorCommission(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission", value }; }, fundCommunityPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool", value }; }, updateParams(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams", value }; }, communityPoolSpend(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend", value }; }, depositValidatorRewardsPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool", value }; } }, fromPartial: { setWithdrawAddress(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress", value: tx_1.MsgSetWithdrawAddress.fromPartial(value) }; }, withdrawDelegatorReward(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward", value: tx_1.MsgWithdrawDelegatorReward.fromPartial(value) }; }, withdrawValidatorCommission(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission", value: tx_1.MsgWithdrawValidatorCommission.fromPartial(value) }; }, fundCommunityPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool", value: tx_1.MsgFundCommunityPool.fromPartial(value) }; }, updateParams(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams", value: tx_1.MsgUpdateParams.fromPartial(value) }; }, communityPoolSpend(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend", value: tx_1.MsgCommunityPoolSpend.fromPartial(value) }; }, depositValidatorRewardsPool(value) { return { typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool", value: tx_1.MsgDepositValidatorRewardsPool.fromPartial(value) }; } } };