@xchainjs/xchain-ethereum
Version:
Ethereum EVM client for XChainJS
14 lines (13 loc) • 539 B
TypeScript
import { ClientKeystore as EVMClientKeystore, EVMClientParams } from '@xchainjs/xchain-evm';
/**
* Class definition for the Ethereum EVM client.
* Extends the `XchainEvmClient` class.
*/
export declare class ClientKeystore extends EVMClientKeystore {
/**
* Constructor for the Ethereum EVM client.
* @param {Object} config - Configuration object for the client (optional).
* Defaults to `defaultEthParams` if not provided.
*/
constructor(config?: Omit<EVMClientParams, 'signer'>);
}