UNPKG

@xchainjs/xchain-dash

Version:

Custom Dash client and utilities used by XChainJS clients

18 lines (17 loc) 616 B
/** * Exporting constants related to the Dash client module. */ export * from './const'; /** * Exporting the Dash client class. */ export { defaultDashParams } from './client'; export { ClientKeystore, ClientKeystore as Client } from './clientKeystore'; export { ClientLedger } from './clientLedger'; /** * Exporting utility functions for the Dash client module. * - `buildTx`: Function to build a Dash transaction. * - `getPrefix`: Function to get the prefix for a given network. * - `validateAddress`: Function to validate a Dash address. */ export { buildTx, getPrefix, validateAddress } from './utils';