From bb8bf45c3cc134fda2ef64a4971102b7caee151a Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Thu, 5 Feb 2026 12:27:10 -0800 Subject: [PATCH] feat(abstract-utxo): export UtxoCoinName types and type guards BTC-3011 Export the following from @bitgo/abstract-utxo main entry point: - UtxoCoinName, UtxoCoinNameMainnet, UtxoCoinNameTestnet types - isUtxoCoinName, isUtxoCoinNameMainnet, isUtxoCoinNameTestnet type guards - utxoCoinsMainnet, utxoCoinsTestnet constants This allows consumers to properly type check coin names instead of using `as any` casts when calling functions like getTransactionExplanation. TICKET: BTC-3011 --- modules/abstract-utxo/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/abstract-utxo/src/index.ts b/modules/abstract-utxo/src/index.ts index 5c733d099a..7957ac614d 100644 --- a/modules/abstract-utxo/src/index.ts +++ b/modules/abstract-utxo/src/index.ts @@ -1,6 +1,7 @@ export * from './abstractUtxoCoin'; export * from './address'; export * from './config'; +export * from './names'; export * from './recovery'; export * from './transaction/fixedScript/replayProtection'; export * from './transaction/fixedScript/signLegacyTransaction';