import { Coin, type CoinSDKType } from '../../base/v1beta1/coin.js'; import { Params, type ParamsSDKType } from './distribution.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** * MsgSetWithdrawAddress sets the withdraw address for * a delegator (or validator self-delegation). */ export interface MsgSetWithdrawAddress { delegatorAddress: string; withdrawAddress: string; } export interface MsgSetWithdrawAddressProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgSetWithdrawAddress'; value: Uint8Array; } /** * MsgSetWithdrawAddress sets the withdraw address for * a delegator (or validator self-delegation). */ export interface MsgSetWithdrawAddressSDKType { delegator_address: string; withdraw_address: string; } /** * MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response * type. */ export interface MsgSetWithdrawAddressResponse { } export interface MsgSetWithdrawAddressResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse'; value: Uint8Array; } /** * MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response * type. */ export interface MsgSetWithdrawAddressResponseSDKType { } /** * MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator * from a single validator. */ export interface MsgWithdrawDelegatorReward { delegatorAddress: string; validatorAddress: string; } export interface MsgWithdrawDelegatorRewardProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward'; value: Uint8Array; } /** * MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator * from a single validator. */ export interface MsgWithdrawDelegatorRewardSDKType { delegator_address: string; validator_address: string; } /** * MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward * response type. */ export interface MsgWithdrawDelegatorRewardResponse { /** Since: cosmos-sdk 0.46 */ amount: Coin[]; } export interface MsgWithdrawDelegatorRewardResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse'; value: Uint8Array; } /** * MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward * response type. */ export interface MsgWithdrawDelegatorRewardResponseSDKType { amount: CoinSDKType[]; } /** * MsgWithdrawValidatorCommission withdraws the full commission to the validator * address. */ export interface MsgWithdrawValidatorCommission { validatorAddress: string; } export interface MsgWithdrawValidatorCommissionProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission'; value: Uint8Array; } /** * MsgWithdrawValidatorCommission withdraws the full commission to the validator * address. */ export interface MsgWithdrawValidatorCommissionSDKType { validator_address: string; } /** * MsgWithdrawValidatorCommissionResponse defines the * Msg/WithdrawValidatorCommission response type. */ export interface MsgWithdrawValidatorCommissionResponse { /** Since: cosmos-sdk 0.46 */ amount: Coin[]; } export interface MsgWithdrawValidatorCommissionResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse'; value: Uint8Array; } /** * MsgWithdrawValidatorCommissionResponse defines the * Msg/WithdrawValidatorCommission response type. */ export interface MsgWithdrawValidatorCommissionResponseSDKType { amount: CoinSDKType[]; } /** * MsgFundCommunityPool allows an account to directly * fund the community pool. */ export interface MsgFundCommunityPool { amount: Coin[]; depositor: string; } export interface MsgFundCommunityPoolProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgFundCommunityPool'; value: Uint8Array; } /** * MsgFundCommunityPool allows an account to directly * fund the community pool. */ export interface MsgFundCommunityPoolSDKType { amount: CoinSDKType[]; depositor: string; } /** MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type. */ export interface MsgFundCommunityPoolResponse { } export interface MsgFundCommunityPoolResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse'; value: Uint8Array; } /** MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type. */ export interface MsgFundCommunityPoolResponseSDKType { } /** * MsgUpdateParams is the Msg/UpdateParams request type. * * Since: cosmos-sdk 0.47 */ export interface MsgUpdateParams { /** authority is the address that controls the module (defaults to x/gov unless overwritten). */ authority: string; /** * params defines the x/distribution parameters to update. * * NOTE: All parameters must be supplied. */ params: Params; } export interface MsgUpdateParamsProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgUpdateParams'; value: Uint8Array; } /** * MsgUpdateParams is the Msg/UpdateParams request type. * * Since: cosmos-sdk 0.47 */ export interface MsgUpdateParamsSDKType { authority: string; params: ParamsSDKType; } /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * * Since: cosmos-sdk 0.47 */ export interface MsgUpdateParamsResponse { } export interface MsgUpdateParamsResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgUpdateParamsResponse'; value: Uint8Array; } /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * * Since: cosmos-sdk 0.47 */ export interface MsgUpdateParamsResponseSDKType { } /** * MsgCommunityPoolSpend defines a message for sending tokens from the community * pool to another account. This message is typically executed via a governance * proposal with the governance module being the executing authority. * * Since: cosmos-sdk 0.47 */ export interface MsgCommunityPoolSpend { /** authority is the address that controls the module (defaults to x/gov unless overwritten). */ authority: string; recipient: string; amount: Coin[]; } export interface MsgCommunityPoolSpendProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgCommunityPoolSpend'; value: Uint8Array; } /** * MsgCommunityPoolSpend defines a message for sending tokens from the community * pool to another account. This message is typically executed via a governance * proposal with the governance module being the executing authority. * * Since: cosmos-sdk 0.47 */ export interface MsgCommunityPoolSpendSDKType { authority: string; recipient: string; amount: CoinSDKType[]; } /** * MsgCommunityPoolSpendResponse defines the response to executing a * MsgCommunityPoolSpend message. * * Since: cosmos-sdk 0.47 */ export interface MsgCommunityPoolSpendResponse { } export interface MsgCommunityPoolSpendResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse'; value: Uint8Array; } /** * MsgCommunityPoolSpendResponse defines the response to executing a * MsgCommunityPoolSpend message. * * Since: cosmos-sdk 0.47 */ export interface MsgCommunityPoolSpendResponseSDKType { } /** * DepositValidatorRewardsPool defines the request structure to provide * additional rewards to delegators from a specific validator. * * Since: cosmos-sdk 0.50 */ export interface MsgDepositValidatorRewardsPool { depositor: string; validatorAddress: string; amount: Coin[]; } export interface MsgDepositValidatorRewardsPoolProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool'; value: Uint8Array; } /** * DepositValidatorRewardsPool defines the request structure to provide * additional rewards to delegators from a specific validator. * * Since: cosmos-sdk 0.50 */ export interface MsgDepositValidatorRewardsPoolSDKType { depositor: string; validator_address: string; amount: CoinSDKType[]; } /** * MsgDepositValidatorRewardsPoolResponse defines the response to executing a * MsgDepositValidatorRewardsPool message. * * Since: cosmos-sdk 0.50 */ export interface MsgDepositValidatorRewardsPoolResponse { } export interface MsgDepositValidatorRewardsPoolResponseProtoMsg { typeUrl: '/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse'; value: Uint8Array; } /** * MsgDepositValidatorRewardsPoolResponse defines the response to executing a * MsgDepositValidatorRewardsPool message. * * Since: cosmos-sdk 0.50 */ export interface MsgDepositValidatorRewardsPoolResponseSDKType { } export declare const MsgSetWithdrawAddress: { typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress"; encode(message: MsgSetWithdrawAddress, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSetWithdrawAddress; fromJSON(object: any): MsgSetWithdrawAddress; toJSON(message: MsgSetWithdrawAddress): JsonSafe; fromPartial(object: Partial): MsgSetWithdrawAddress; fromProtoMsg(message: MsgSetWithdrawAddressProtoMsg): MsgSetWithdrawAddress; toProto(message: MsgSetWithdrawAddress): Uint8Array; toProtoMsg(message: MsgSetWithdrawAddress): MsgSetWithdrawAddressProtoMsg; }; export declare const MsgSetWithdrawAddressResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse"; encode(_: MsgSetWithdrawAddressResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSetWithdrawAddressResponse; fromJSON(_: any): MsgSetWithdrawAddressResponse; toJSON(_: MsgSetWithdrawAddressResponse): JsonSafe; fromPartial(_: Partial): MsgSetWithdrawAddressResponse; fromProtoMsg(message: MsgSetWithdrawAddressResponseProtoMsg): MsgSetWithdrawAddressResponse; toProto(message: MsgSetWithdrawAddressResponse): Uint8Array; toProtoMsg(message: MsgSetWithdrawAddressResponse): MsgSetWithdrawAddressResponseProtoMsg; }; export declare const MsgWithdrawDelegatorReward: { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward"; encode(message: MsgWithdrawDelegatorReward, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawDelegatorReward; fromJSON(object: any): MsgWithdrawDelegatorReward; toJSON(message: MsgWithdrawDelegatorReward): JsonSafe; fromPartial(object: Partial): MsgWithdrawDelegatorReward; fromProtoMsg(message: MsgWithdrawDelegatorRewardProtoMsg): MsgWithdrawDelegatorReward; toProto(message: MsgWithdrawDelegatorReward): Uint8Array; toProtoMsg(message: MsgWithdrawDelegatorReward): MsgWithdrawDelegatorRewardProtoMsg; }; export declare const MsgWithdrawDelegatorRewardResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse"; encode(message: MsgWithdrawDelegatorRewardResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawDelegatorRewardResponse; fromJSON(object: any): MsgWithdrawDelegatorRewardResponse; toJSON(message: MsgWithdrawDelegatorRewardResponse): JsonSafe; fromPartial(object: Partial): MsgWithdrawDelegatorRewardResponse; fromProtoMsg(message: MsgWithdrawDelegatorRewardResponseProtoMsg): MsgWithdrawDelegatorRewardResponse; toProto(message: MsgWithdrawDelegatorRewardResponse): Uint8Array; toProtoMsg(message: MsgWithdrawDelegatorRewardResponse): MsgWithdrawDelegatorRewardResponseProtoMsg; }; export declare const MsgWithdrawValidatorCommission: { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission"; encode(message: MsgWithdrawValidatorCommission, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawValidatorCommission; fromJSON(object: any): MsgWithdrawValidatorCommission; toJSON(message: MsgWithdrawValidatorCommission): JsonSafe; fromPartial(object: Partial): MsgWithdrawValidatorCommission; fromProtoMsg(message: MsgWithdrawValidatorCommissionProtoMsg): MsgWithdrawValidatorCommission; toProto(message: MsgWithdrawValidatorCommission): Uint8Array; toProtoMsg(message: MsgWithdrawValidatorCommission): MsgWithdrawValidatorCommissionProtoMsg; }; export declare const MsgWithdrawValidatorCommissionResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse"; encode(message: MsgWithdrawValidatorCommissionResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawValidatorCommissionResponse; fromJSON(object: any): MsgWithdrawValidatorCommissionResponse; toJSON(message: MsgWithdrawValidatorCommissionResponse): JsonSafe; fromPartial(object: Partial): MsgWithdrawValidatorCommissionResponse; fromProtoMsg(message: MsgWithdrawValidatorCommissionResponseProtoMsg): MsgWithdrawValidatorCommissionResponse; toProto(message: MsgWithdrawValidatorCommissionResponse): Uint8Array; toProtoMsg(message: MsgWithdrawValidatorCommissionResponse): MsgWithdrawValidatorCommissionResponseProtoMsg; }; export declare const MsgFundCommunityPool: { typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool"; encode(message: MsgFundCommunityPool, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgFundCommunityPool; fromJSON(object: any): MsgFundCommunityPool; toJSON(message: MsgFundCommunityPool): JsonSafe; fromPartial(object: Partial): MsgFundCommunityPool; fromProtoMsg(message: MsgFundCommunityPoolProtoMsg): MsgFundCommunityPool; toProto(message: MsgFundCommunityPool): Uint8Array; toProtoMsg(message: MsgFundCommunityPool): MsgFundCommunityPoolProtoMsg; }; export declare const MsgFundCommunityPoolResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse"; encode(_: MsgFundCommunityPoolResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgFundCommunityPoolResponse; fromJSON(_: any): MsgFundCommunityPoolResponse; toJSON(_: MsgFundCommunityPoolResponse): JsonSafe; fromPartial(_: Partial): MsgFundCommunityPoolResponse; fromProtoMsg(message: MsgFundCommunityPoolResponseProtoMsg): MsgFundCommunityPoolResponse; toProto(message: MsgFundCommunityPoolResponse): Uint8Array; toProtoMsg(message: MsgFundCommunityPoolResponse): MsgFundCommunityPoolResponseProtoMsg; }; export declare const MsgUpdateParams: { typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams"; encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams; fromJSON(object: any): MsgUpdateParams; toJSON(message: MsgUpdateParams): JsonSafe; fromPartial(object: Partial): MsgUpdateParams; fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams; toProto(message: MsgUpdateParams): Uint8Array; toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg; }; export declare const MsgUpdateParamsResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParamsResponse"; encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse; fromJSON(_: any): MsgUpdateParamsResponse; toJSON(_: MsgUpdateParamsResponse): JsonSafe; fromPartial(_: Partial): MsgUpdateParamsResponse; fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse; toProto(message: MsgUpdateParamsResponse): Uint8Array; toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg; }; export declare const MsgCommunityPoolSpend: { typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend"; encode(message: MsgCommunityPoolSpend, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgCommunityPoolSpend; fromJSON(object: any): MsgCommunityPoolSpend; toJSON(message: MsgCommunityPoolSpend): JsonSafe; fromPartial(object: Partial): MsgCommunityPoolSpend; fromProtoMsg(message: MsgCommunityPoolSpendProtoMsg): MsgCommunityPoolSpend; toProto(message: MsgCommunityPoolSpend): Uint8Array; toProtoMsg(message: MsgCommunityPoolSpend): MsgCommunityPoolSpendProtoMsg; }; export declare const MsgCommunityPoolSpendResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse"; encode(_: MsgCommunityPoolSpendResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgCommunityPoolSpendResponse; fromJSON(_: any): MsgCommunityPoolSpendResponse; toJSON(_: MsgCommunityPoolSpendResponse): JsonSafe; fromPartial(_: Partial): MsgCommunityPoolSpendResponse; fromProtoMsg(message: MsgCommunityPoolSpendResponseProtoMsg): MsgCommunityPoolSpendResponse; toProto(message: MsgCommunityPoolSpendResponse): Uint8Array; toProtoMsg(message: MsgCommunityPoolSpendResponse): MsgCommunityPoolSpendResponseProtoMsg; }; export declare const MsgDepositValidatorRewardsPool: { typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool"; encode(message: MsgDepositValidatorRewardsPool, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgDepositValidatorRewardsPool; fromJSON(object: any): MsgDepositValidatorRewardsPool; toJSON(message: MsgDepositValidatorRewardsPool): JsonSafe; fromPartial(object: Partial): MsgDepositValidatorRewardsPool; fromProtoMsg(message: MsgDepositValidatorRewardsPoolProtoMsg): MsgDepositValidatorRewardsPool; toProto(message: MsgDepositValidatorRewardsPool): Uint8Array; toProtoMsg(message: MsgDepositValidatorRewardsPool): MsgDepositValidatorRewardsPoolProtoMsg; }; export declare const MsgDepositValidatorRewardsPoolResponse: { typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse"; encode(_: MsgDepositValidatorRewardsPoolResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgDepositValidatorRewardsPoolResponse; fromJSON(_: any): MsgDepositValidatorRewardsPoolResponse; toJSON(_: MsgDepositValidatorRewardsPoolResponse): JsonSafe; fromPartial(_: Partial): MsgDepositValidatorRewardsPoolResponse; fromProtoMsg(message: MsgDepositValidatorRewardsPoolResponseProtoMsg): MsgDepositValidatorRewardsPoolResponse; toProto(message: MsgDepositValidatorRewardsPoolResponse): Uint8Array; toProtoMsg(message: MsgDepositValidatorRewardsPoolResponse): MsgDepositValidatorRewardsPoolResponseProtoMsg; }; //# sourceMappingURL=tx.d.ts.map