UNPKG

@xchainjs/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

19 lines (18 loc) 570 B
/** * Export all types from the 'types' module. */ export * from './types'; /** * Export the 'Client' class from the 'client' module. */ export { 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';