@xchainjs/xchain-litecoin
Version:
Custom Litecoin client and utilities used by XChainJS clients
19 lines (18 loc) • 580 B
TypeScript
/**
* Export all types from the 'types' module.
*/
export * from './types';
/**
* Export the 'Client' class from the 'client' module.
*/
export { NodeUrls, defaultLtcParams } from './client';
export { ClientKeystore, ClientKeystore as Client } from './ClientKeystore';
export { ClientLedger } from './ClientLedger';
/**
* Export utility functions 'broadcastTx', 'getPrefix', and 'validateAddress' from the 'utils' module.
*/
export { broadcastTx, getPrefix, validateAddress } from './utils';
/**
* Export all constants from the 'const' module.
*/
export * from './const';