@btc-stamps/tx-builder
Version:
Transaction builder for Bitcoin Stamps and SRC-20 tokens with advanced UTXO selection
29 lines (22 loc) • 806 B
text/typescript
/**
* Ordinals Detectors
*
* External API integrations for detecting ordinals, inscriptions, and runes
*/
export {
HiroOrdinalsDetector,
type HiroOrdinalsDetectorOptions,
} from './hiro-ordinals-detector.ts';
export { OrdServerDetector, type OrdServerDetectorOptions } from './ord-server-detector.ts';
export { CounterpartyDetector, type CounterpartyDetectorOptions } from './counterparty-detector.ts';
export {
type DetectionStrategy,
OrdinalsMultiProviderDetector,
type OrdinalsMultiProviderDetectorOptions,
} from './ordinals-multi-provider-detector.ts';
export {
type AggregationStrategy,
MultiAssetProtectionDetector,
type MultiAssetProtectionDetectorOptions,
} from './multi-asset-protection-detector.ts';
export { MockOrdinalsDetector } from './mock-ordinals-detector.ts';