import { ApiClient, BigNumber } from '../.'; /** * EVM RPCs for DeFi Blockchain */ export declare class Evm { private readonly client; constructor(client: ApiClient); /** * Creates an EVM transaction submitted to local node and network * @param {string} from * @param {number} nonce * @param {number} gasPrice * @param {number} gasLimit * @param {string} to * @param {BigNumber} value * @param {string} [data] * @returns {Promise} */ evmtx({ from, nonce, gasPrice, gasLimit, to, value, data }: EvmTxOptions): Promise; } export interface EvmTxOptions { from: string; nonce: number; gasPrice: number; gasLimit: number; to: string; value: BigNumber; data?: string; } //# sourceMappingURL=evm.d.ts.map