import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; import { Params, ParamsAmino, ParamsSDKType } from "./params"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** * MsgFundFairburnPool allows an account to directly * fund the fee collector pool. */ export interface MsgFundFairburnPool { sender: string; amount: Coin[]; } export interface MsgFundFairburnPoolProtoMsg { typeUrl: "/intento.alloc.v1.MsgFundFairburnPool"; value: Uint8Array; } /** * MsgFundFairburnPool allows an account to directly * fund the fee collector pool. * @name MsgFundFairburnPoolAmino * @package intento.alloc.v1 * @see proto type: intento.alloc.v1.MsgFundFairburnPool */ export interface MsgFundFairburnPoolAmino { sender?: string; amount: CoinAmino[]; } export interface MsgFundFairburnPoolAminoMsg { type: "alloc/MsgFundFairburnPool"; value: MsgFundFairburnPoolAmino; } /** * MsgFundFairburnPool allows an account to directly * fund the fee collector pool. */ export interface MsgFundFairburnPoolSDKType { sender: string; amount: CoinSDKType[]; } /** * MsgFundFairburnPoolResponse defines the Msg/MsgFundFairburnPool response * type. */ export interface MsgFundFairburnPoolResponse { } export interface MsgFundFairburnPoolResponseProtoMsg { typeUrl: "/intento.alloc.v1.MsgFundFairburnPoolResponse"; value: Uint8Array; } /** * MsgFundFairburnPoolResponse defines the Msg/MsgFundFairburnPool response * type. * @name MsgFundFairburnPoolResponseAmino * @package intento.alloc.v1 * @see proto type: intento.alloc.v1.MsgFundFairburnPoolResponse */ export interface MsgFundFairburnPoolResponseAmino { } export interface MsgFundFairburnPoolResponseAminoMsg { type: "/intento.alloc.v1.MsgFundFairburnPoolResponse"; value: MsgFundFairburnPoolResponseAmino; } /** * MsgFundFairburnPoolResponse defines the Msg/MsgFundFairburnPool response * type. */ export interface MsgFundFairburnPoolResponseSDKType { } /** * MsgUpdateParams is the request type for updating module's params. * * Since: v14 */ export interface MsgUpdateParams { /** Authority is the address of the governance account. */ authority: string; /** NOTE: All parameters must be supplied. */ params: Params; } export interface MsgUpdateParamsProtoMsg { typeUrl: "/intento.alloc.v1.MsgUpdateParams"; value: Uint8Array; } /** * MsgUpdateParams is the request type for updating module's params. * * Since: v14 * @name MsgUpdateParamsAmino * @package intento.alloc.v1 * @see proto type: intento.alloc.v1.MsgUpdateParams */ export interface MsgUpdateParamsAmino { /** * Authority is the address of the governance account. */ authority?: string; /** * NOTE: All parameters must be supplied. */ params: ParamsAmino; } export interface MsgUpdateParamsAminoMsg { type: "alloc/MsgUpdateParams"; value: MsgUpdateParamsAmino; } /** * MsgUpdateParams is the request type for updating module's params. * * Since: v14 */ export interface MsgUpdateParamsSDKType { authority: string; params: ParamsSDKType; } /** * MsgUpdateParamsResponse is the response type for executing * an update. * Since: v14 */ export interface MsgUpdateParamsResponse { } export interface MsgUpdateParamsResponseProtoMsg { typeUrl: "/intento.alloc.v1.MsgUpdateParamsResponse"; value: Uint8Array; } /** * MsgUpdateParamsResponse is the response type for executing * an update. * Since: v14 * @name MsgUpdateParamsResponseAmino * @package intento.alloc.v1 * @see proto type: intento.alloc.v1.MsgUpdateParamsResponse */ export interface MsgUpdateParamsResponseAmino { } export interface MsgUpdateParamsResponseAminoMsg { type: "/intento.alloc.v1.MsgUpdateParamsResponse"; value: MsgUpdateParamsResponseAmino; } /** * MsgUpdateParamsResponse is the response type for executing * an update. * Since: v14 */ export interface MsgUpdateParamsResponseSDKType { } export declare const MsgFundFairburnPool: { typeUrl: string; aminoType: string; is(o: any): o is MsgFundFairburnPool; isSDK(o: any): o is MsgFundFairburnPoolSDKType; isAmino(o: any): o is MsgFundFairburnPoolAmino; encode(message: MsgFundFairburnPool, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgFundFairburnPool; fromJSON(object: any): MsgFundFairburnPool; toJSON(message: MsgFundFairburnPool): JsonSafe; fromPartial(object: Partial): MsgFundFairburnPool; fromAmino(object: MsgFundFairburnPoolAmino): MsgFundFairburnPool; toAmino(message: MsgFundFairburnPool): MsgFundFairburnPoolAmino; fromAminoMsg(object: MsgFundFairburnPoolAminoMsg): MsgFundFairburnPool; toAminoMsg(message: MsgFundFairburnPool): MsgFundFairburnPoolAminoMsg; fromProtoMsg(message: MsgFundFairburnPoolProtoMsg): MsgFundFairburnPool; toProto(message: MsgFundFairburnPool): Uint8Array; toProtoMsg(message: MsgFundFairburnPool): MsgFundFairburnPoolProtoMsg; }; export declare const MsgFundFairburnPoolResponse: { typeUrl: string; is(o: any): o is MsgFundFairburnPoolResponse; isSDK(o: any): o is MsgFundFairburnPoolResponseSDKType; isAmino(o: any): o is MsgFundFairburnPoolResponseAmino; encode(_: MsgFundFairburnPoolResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgFundFairburnPoolResponse; fromJSON(_: any): MsgFundFairburnPoolResponse; toJSON(_: MsgFundFairburnPoolResponse): JsonSafe; fromPartial(_: Partial): MsgFundFairburnPoolResponse; fromAmino(_: MsgFundFairburnPoolResponseAmino): MsgFundFairburnPoolResponse; toAmino(_: MsgFundFairburnPoolResponse): MsgFundFairburnPoolResponseAmino; fromAminoMsg(object: MsgFundFairburnPoolResponseAminoMsg): MsgFundFairburnPoolResponse; fromProtoMsg(message: MsgFundFairburnPoolResponseProtoMsg): MsgFundFairburnPoolResponse; toProto(message: MsgFundFairburnPoolResponse): Uint8Array; toProtoMsg(message: MsgFundFairburnPoolResponse): MsgFundFairburnPoolResponseProtoMsg; }; export declare const MsgUpdateParams: { typeUrl: string; aminoType: string; is(o: any): o is MsgUpdateParams; isSDK(o: any): o is MsgUpdateParamsSDKType; isAmino(o: any): o is MsgUpdateParamsAmino; 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; fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams; toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino; fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams; toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg; fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams; toProto(message: MsgUpdateParams): Uint8Array; toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg; }; export declare const MsgUpdateParamsResponse: { typeUrl: string; is(o: any): o is MsgUpdateParamsResponse; isSDK(o: any): o is MsgUpdateParamsResponseSDKType; isAmino(o: any): o is MsgUpdateParamsResponseAmino; encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse; fromJSON(_: any): MsgUpdateParamsResponse; toJSON(_: MsgUpdateParamsResponse): JsonSafe; fromPartial(_: Partial): MsgUpdateParamsResponse; fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse; toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino; fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse; fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse; toProto(message: MsgUpdateParamsResponse): Uint8Array; toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg; };