import { StdFee } from "../../../types.js"; import { MsgEthereumTx, MsgUpdateParams } from "./tx.js"; import "../../../index.js"; import * as _interchainjs_cosmos0 from "@interchainjs/cosmos"; import * as _interchainjs_types0 from "@interchainjs/types"; //#region src/ethermint/evm/v1/tx.rpc.func.d.ts /** * EthereumTx defines a method submitting Ethereum transactions. * @name ethereumTx * @package ethermint.evm.v1 * @see proto service: ethermint.evm.v1.EthereumTx */ declare const ethereumTx: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgEthereumTx | MsgEthereumTx[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * 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 * @name updateParams * @package ethermint.evm.v1 * @see proto service: ethermint.evm.v1.UpdateParams */ declare const updateParams: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; //#endregion export { ethereumTx, updateParams };