@xchainjs/xchain-doge
Version:
Custom Doge client and utilities used by XChain clients
22 lines (21 loc) • 690 B
TypeScript
/**
* Export all types defined in the 'types.ts' file.
*/
export * from './types';
export { ClientKeystore as Client } from './clientKeystore';
export { ClientLedger } from './clientLedger';
/**
* Export all constants defined in the 'const.ts' file.
*/
export * from './const';
export { defaultDogeParams } from './client';
/**
* Export utility functions for validating Dogecoin addresses and getting address prefixes
* from the 'utils.ts' file.
*/
export { validateAddress, getPrefix } from './utils';
/**
* Export a function for getting the transaction send URL from the Blockcypher API
* from the 'blockcypher-api.ts' file.
*/
export { getSendTxUrl } from './blockcypher-api';