import { TxRpc } from "../../../../types.js"; import { MsgEthereumTx, MsgEthereumTxResponse, MsgRegisterPreinstalls, MsgRegisterPreinstallsResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/cosmos/evm/vm/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/vm module * parameters. The authority is hard-coded to the Cosmos SDK x/gov module * account */ updateParams(request: MsgUpdateParams): Promise; /** * RegisterPreinstalls defines a governance operation for directly registering * preinstalled contracts in the EVM. The authority is the same as is used for * Params updates. */ registerPreinstalls(request: MsgRegisterPreinstalls): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); ethereumTx: (request: MsgEthereumTx) => Promise; updateParams: (request: MsgUpdateParams) => Promise; registerPreinstalls: (request: MsgRegisterPreinstalls) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };