charms-js
Version:
TypeScript SDK for decoding Bitcoin transactions containing Charms data
12 lines (11 loc) • 521 B
TypeScript
/**
* Browser-optimized entry point for charms-js
* Provides clean, direct function imports with automatic WASM initialization
*/
export { extractCharmsForWallet, extractAndVerifySpell, isWasmReady } from './browser.js';
export * from './shared/types.js';
export * from './shared/utils.js';
export { normalizeCharmForWallet } from './shared/wallet-adapter.js';
export { initializeWasm } from './shared/wasm-integration.js';
import { extractCharmsForWallet } from './browser.js';
export default extractCharmsForWallet;