import { Coin, type CoinSDKType } from '../../base/v1beta1/coin.js'; import { Input, type InputSDKType, Output, type OutputSDKType, Params, type ParamsSDKType, SendEnabled, type SendEnabledSDKType } from './bank.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** MsgSend represents a message to send coins from one account to another. */ export interface MsgSend { fromAddress: string; toAddress: string; amount: Coin[]; } export interface MsgSendProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgSend'; value: Uint8Array; } /** MsgSend represents a message to send coins from one account to another. */ export interface MsgSendSDKType { from_address: string; to_address: string; amount: CoinSDKType[]; } /** MsgSendResponse defines the Msg/Send response type. */ export interface MsgSendResponse { } export interface MsgSendResponseProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgSendResponse'; value: Uint8Array; } /** MsgSendResponse defines the Msg/Send response type. */ export interface MsgSendResponseSDKType { } /** MsgMultiSend represents an arbitrary multi-in, multi-out send message. */ export interface MsgMultiSend { /** * Inputs, despite being `repeated`, only allows one sender input. This is * checked in MsgMultiSend's ValidateBasic. */ inputs: Input[]; outputs: Output[]; } export interface MsgMultiSendProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgMultiSend'; value: Uint8Array; } /** MsgMultiSend represents an arbitrary multi-in, multi-out send message. */ export interface MsgMultiSendSDKType { inputs: InputSDKType[]; outputs: OutputSDKType[]; } /** MsgMultiSendResponse defines the Msg/MultiSend response type. */ export interface MsgMultiSendResponse { } export interface MsgMultiSendResponseProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgMultiSendResponse'; value: Uint8Array; } /** MsgMultiSendResponse defines the Msg/MultiSend response type. */ export interface MsgMultiSendResponseSDKType { } /** * 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/bank parameters to update. * * NOTE: All parameters must be supplied. */ params: Params; } export interface MsgUpdateParamsProtoMsg { typeUrl: '/cosmos.bank.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.bank.v1beta1.MsgUpdateParamsResponse'; value: Uint8Array; } /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * * Since: cosmos-sdk 0.47 */ export interface MsgUpdateParamsResponseSDKType { } /** * MsgSetSendEnabled is the Msg/SetSendEnabled request type. * * Only entries to add/update/delete need to be included. * Existing SendEnabled entries that are not included in this * message are left unchanged. * * Since: cosmos-sdk 0.47 */ export interface MsgSetSendEnabled { /** authority is the address that controls the module. */ authority: string; /** send_enabled is the list of entries to add or update. */ sendEnabled: SendEnabled[]; /** * use_default_for is a list of denoms that should use the params.default_send_enabled value. * Denoms listed here will have their SendEnabled entries deleted. * If a denom is included that doesn't have a SendEnabled entry, * it will be ignored. */ useDefaultFor: string[]; } export interface MsgSetSendEnabledProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgSetSendEnabled'; value: Uint8Array; } /** * MsgSetSendEnabled is the Msg/SetSendEnabled request type. * * Only entries to add/update/delete need to be included. * Existing SendEnabled entries that are not included in this * message are left unchanged. * * Since: cosmos-sdk 0.47 */ export interface MsgSetSendEnabledSDKType { authority: string; send_enabled: SendEnabledSDKType[]; use_default_for: string[]; } /** * MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type. * * Since: cosmos-sdk 0.47 */ export interface MsgSetSendEnabledResponse { } export interface MsgSetSendEnabledResponseProtoMsg { typeUrl: '/cosmos.bank.v1beta1.MsgSetSendEnabledResponse'; value: Uint8Array; } /** * MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type. * * Since: cosmos-sdk 0.47 */ export interface MsgSetSendEnabledResponseSDKType { } export declare const MsgSend: { typeUrl: "/cosmos.bank.v1beta1.MsgSend"; encode(message: MsgSend, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSend; fromJSON(object: any): MsgSend; toJSON(message: MsgSend): JsonSafe; fromPartial(object: Partial): MsgSend; fromProtoMsg(message: MsgSendProtoMsg): MsgSend; toProto(message: MsgSend): Uint8Array; toProtoMsg(message: MsgSend): MsgSendProtoMsg; }; export declare const MsgSendResponse: { typeUrl: "/cosmos.bank.v1beta1.MsgSendResponse"; encode(_: MsgSendResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSendResponse; fromJSON(_: any): MsgSendResponse; toJSON(_: MsgSendResponse): JsonSafe; fromPartial(_: Partial): MsgSendResponse; fromProtoMsg(message: MsgSendResponseProtoMsg): MsgSendResponse; toProto(message: MsgSendResponse): Uint8Array; toProtoMsg(message: MsgSendResponse): MsgSendResponseProtoMsg; }; export declare const MsgMultiSend: { typeUrl: "/cosmos.bank.v1beta1.MsgMultiSend"; encode(message: MsgMultiSend, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgMultiSend; fromJSON(object: any): MsgMultiSend; toJSON(message: MsgMultiSend): JsonSafe; fromPartial(object: Partial): MsgMultiSend; fromProtoMsg(message: MsgMultiSendProtoMsg): MsgMultiSend; toProto(message: MsgMultiSend): Uint8Array; toProtoMsg(message: MsgMultiSend): MsgMultiSendProtoMsg; }; export declare const MsgMultiSendResponse: { typeUrl: "/cosmos.bank.v1beta1.MsgMultiSendResponse"; encode(_: MsgMultiSendResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgMultiSendResponse; fromJSON(_: any): MsgMultiSendResponse; toJSON(_: MsgMultiSendResponse): JsonSafe; fromPartial(_: Partial): MsgMultiSendResponse; fromProtoMsg(message: MsgMultiSendResponseProtoMsg): MsgMultiSendResponse; toProto(message: MsgMultiSendResponse): Uint8Array; toProtoMsg(message: MsgMultiSendResponse): MsgMultiSendResponseProtoMsg; }; export declare const MsgUpdateParams: { typeUrl: "/cosmos.bank.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.bank.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 MsgSetSendEnabled: { typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabled"; encode(message: MsgSetSendEnabled, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSetSendEnabled; fromJSON(object: any): MsgSetSendEnabled; toJSON(message: MsgSetSendEnabled): JsonSafe; fromPartial(object: Partial): MsgSetSendEnabled; fromProtoMsg(message: MsgSetSendEnabledProtoMsg): MsgSetSendEnabled; toProto(message: MsgSetSendEnabled): Uint8Array; toProtoMsg(message: MsgSetSendEnabled): MsgSetSendEnabledProtoMsg; }; export declare const MsgSetSendEnabledResponse: { typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabledResponse"; encode(_: MsgSetSendEnabledResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSetSendEnabledResponse; fromJSON(_: any): MsgSetSendEnabledResponse; toJSON(_: MsgSetSendEnabledResponse): JsonSafe; fromPartial(_: Partial): MsgSetSendEnabledResponse; fromProtoMsg(message: MsgSetSendEnabledResponseProtoMsg): MsgSetSendEnabledResponse; toProto(message: MsgSetSendEnabledResponse): Uint8Array; toProtoMsg(message: MsgSetSendEnabledResponse): MsgSetSendEnabledResponseProtoMsg; }; //# sourceMappingURL=tx.d.ts.map