From 0e3f36680d23a915c8304ab3d883f7878f2524c0 Mon Sep 17 00:00:00 2001 From: Otto Allmendinger Date: Wed, 20 May 2026 13:47:39 +0200 Subject: [PATCH] feat(abstract-utxo): restrict utxolib backend to BTC and LTC Disable supportedSdkBackends.utxolib for all mainnet coins except BTC and LTC, trialing the removal on lower-usage coins first. Refs: T1-3280 Co-authored-by: llm-git --- modules/abstract-utxo/src/abstractUtxoCoin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/abstract-utxo/src/abstractUtxoCoin.ts b/modules/abstract-utxo/src/abstractUtxoCoin.ts index 82e013f602..41bd688757 100644 --- a/modules/abstract-utxo/src/abstractUtxoCoin.ts +++ b/modules/abstract-utxo/src/abstractUtxoCoin.ts @@ -435,7 +435,7 @@ export abstract class AbstractUtxoCoin }; protected supportedSdkBackends: { utxolib: boolean; 'wasm-utxo': boolean } = { - utxolib: this.isMainnet(), + utxolib: this.getChain() === 'btc' || this.getChain() === 'ltc', 'wasm-utxo': true, };