import { BinaryReader, BinaryWriter } from "../../../binary.js"; import { DeepPartial } from "../../../helpers.js"; import { Params, ParamsAmino } from "./feemarket.js"; //#region src/ethermint/feemarket/v1/tx.d.ts /** * MsgUpdateParams defines a Msg for updating the x/feemarket module parameters. * @name MsgUpdateParams * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParams */ interface MsgUpdateParams { /** * authority is the address of the governance account. */ authority: string; /** * params defines the x/feemarket parameters to update. * NOTE: All parameters must be supplied. */ params: Params; } interface MsgUpdateParamsProtoMsg { typeUrl: "/ethermint.feemarket.v1.MsgUpdateParams"; value: Uint8Array; } /** * MsgUpdateParams defines a Msg for updating the x/feemarket module parameters. * @name MsgUpdateParamsAmino * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParams */ interface MsgUpdateParamsAmino { /** * authority is the address of the governance account. */ authority: string; /** * params defines the x/feemarket parameters to update. * NOTE: All parameters must be supplied. */ params: ParamsAmino; } interface MsgUpdateParamsAminoMsg { type: "ethermint/x/feemarket/MsgUpdateParams"; value: MsgUpdateParamsAmino; } /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * @name MsgUpdateParamsResponse * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParamsResponse */ interface MsgUpdateParamsResponse {} interface MsgUpdateParamsResponseProtoMsg { typeUrl: "/ethermint.feemarket.v1.MsgUpdateParamsResponse"; value: Uint8Array; } /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * @name MsgUpdateParamsResponseAmino * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParamsResponse */ interface MsgUpdateParamsResponseAmino {} interface MsgUpdateParamsResponseAminoMsg { type: "/ethermint.feemarket.v1.MsgUpdateParamsResponse"; value: MsgUpdateParamsResponseAmino; } /** * MsgUpdateParams defines a Msg for updating the x/feemarket module parameters. * @name MsgUpdateParams * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParams */ declare const MsgUpdateParams: { typeUrl: string; aminoType: string; is(o: any): o is MsgUpdateParams; isAmino(o: any): o is MsgUpdateParamsAmino; encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams; fromPartial(object: DeepPartial): 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; registerTypeUrl(): void; }; /** * MsgUpdateParamsResponse defines the response structure for executing a * MsgUpdateParams message. * @name MsgUpdateParamsResponse * @package ethermint.feemarket.v1 * @see proto type: ethermint.feemarket.v1.MsgUpdateParamsResponse */ declare const MsgUpdateParamsResponse: { typeUrl: string; is(o: any): o is MsgUpdateParamsResponse; isAmino(o: any): o is MsgUpdateParamsResponseAmino; encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse; fromPartial(_: DeepPartial): MsgUpdateParamsResponse; fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse; toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino; fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse; fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse; toProto(message: MsgUpdateParamsResponse): Uint8Array; toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg; registerTypeUrl(): void; }; //#endregion export { MsgUpdateParams, MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg, MsgUpdateParamsProtoMsg, MsgUpdateParamsResponse, MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg, MsgUpdateParamsResponseProtoMsg };