import { TxRpc } from "../../../types.js"; import { MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/ethermint/feemarket/v1/tx.rpc.msg.d.ts /** Msg defines the feemarket Msg service. */ interface Msg { /** * UpdateParams defined a governance operation for updating the x/feemarket module parameters. * The authority is hard-coded to the Cosmos SDK x/gov module account */ updateParams(request: MsgUpdateParams): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };