@btc-stamps/tx-builder
Version:
Transaction builder for Bitcoin Stamps and SRC-20 tokens with advanced UTXO selection
38 lines (33 loc) • 761 B
text/typescript
/**
* Core Types Export
*
* Central export point for all core domain types
*/
// UTXO types
export type {
IndexedUTXOData,
UTXO,
UTXOCacheEntry,
UTXOChunk,
UTXOSelectionCriteria,
WitnessUTXO,
} from './utxo.interface.ts';
// Transaction types
export type {
AddressHistory,
Balance,
Transaction,
TransactionInput,
TransactionOutput,
TransactionValidation,
} from './transaction.interface.ts';
// Re-export network types from existing interface
export type { ChainParams, NetworkConfig, NetworkType } from '../network.interface.ts';
// Re-export hardware wallet types from existing interface
export type {
DerivationPath,
IHardwareWallet,
SigningError,
SignPsbtOptions,
SignPsbtResult,
} from '../hardware.interface.ts';