@xchainjs/xchain-bsc
Version:
Binance Smart Chain EVM client for XChainJS
13 lines (12 loc) • 466 B
TypeScript
import { ClientKeystore as EVMClientKeystore, EVMClientParams } from '@xchainjs/xchain-evm';
/**
* Customized BSC client extending the base XchainEvmClient.
*/
export declare class ClientKeystore extends EVMClientKeystore {
/**
* Constructor for the BSC client.
*
* @param {Object} config Configuration parameters for the client. Defaults to defaultBscParams if not provided.
*/
constructor(config?: Omit<EVMClientParams, 'signer'>);
}