From 7fac3fc49b241556011b0119296417aa909eb34a Mon Sep 17 00:00:00 2001 From: Otto Allmendinger Date: Wed, 11 Feb 2026 16:40:33 +0100 Subject: [PATCH] feat(wasm-utxo): export coinName utility functions Export additional utility functions from coinName module to help with network type checking and conversion. Issue: BTC-2650 Co-authored-by: llm-git --- packages/wasm-utxo/js/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wasm-utxo/js/index.ts b/packages/wasm-utxo/js/index.ts index b6412e1..333d72a 100644 --- a/packages/wasm-utxo/js/index.ts +++ b/packages/wasm-utxo/js/index.ts @@ -21,7 +21,7 @@ export { ECPair } from "./ecpair.js"; export { BIP32 } from "./bip32.js"; export { Dimensions } from "./fixedScriptWallet/Dimensions.js"; -export type { CoinName } from "./coinName.js"; +export type { CoinName, getMainnet, isMainnet, isTestnet, isCoinName } from "./coinName.js"; export type { Triple } from "./triple.js"; export type { AddressFormat } from "./address.js"; export type { TapLeafScript, PreparedInscriptionRevealData } from "./inscriptions.js";