import { TxRpc } from "../../../types.js"; import { MsgEthereumTx, MsgEthereumTxResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/ethermint/evm/v1/tx.rpc.msg.d.ts /** Msg defines the evm Msg service. */ interface Msg { /** EthereumTx defines a method submitting Ethereum transactions. */ ethereumTx(request: MsgEthereumTx): Promise; /** * UpdateParams defined a governance operation for updating the x/evm 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); ethereumTx: (request: MsgEthereumTx) => Promise; updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };