@xchainjs/xchain-bitcoincash
Version:
Custom bitcoincash client and utilities used by XChainJS clients
25 lines (24 loc) • 588 B
TypeScript
/**
* Re-exports all types from the 'types' module.
*/
export * from './types';
/**
* Export the 'ClientKeystore' class as 'Client'
*/
export { ClientKeystore as Client } from './clientKeystore';
/**
* Export the 'ClientLedger' class
*/
export { ClientLedger } from './clientLedger';
/**
* Export the 'defaultBchParams' constant from the 'client' file
*/
export { defaultBchParams } from './client';
/**
* Re-exports all utility functions from the 'utils' module.
*/
export * from './utils';
/**
* Re-exports all constants from the 'const' module.
*/
export * from './const';