From ae4da15972a7f8e5bf0612d9d9feccffea95cbfa Mon Sep 17 00:00:00 2001 From: David Kaplan Date: Fri, 3 Oct 2025 14:36:24 -0400 Subject: [PATCH] feat(sdk-core): add psbt-lite as a transaction format option Add 'psbt-lite' as a valid option for txFormat in PrebuildTransactionOptions interface. Issue: BTC-2272 Co-authored-by: llm-git --- modules/sdk-core/src/bitgo/wallet/iWallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sdk-core/src/bitgo/wallet/iWallet.ts b/modules/sdk-core/src/bitgo/wallet/iWallet.ts index 8e5aa37d4c..2f9938caef 100644 --- a/modules/sdk-core/src/bitgo/wallet/iWallet.ts +++ b/modules/sdk-core/src/bitgo/wallet/iWallet.ts @@ -167,7 +167,7 @@ export interface PrebuildTransactionOptions { * This comment applies to UTXO coins. It's asking which transaction format to use: * the legacy format defined by bitcoinjs-lib, or the 'psbt' format, which follows the BIP-174. */ - txFormat?: 'legacy' | 'psbt'; + txFormat?: 'legacy' | 'psbt' | 'psbt-lite'; /** * Custom Solana instructions to include in the transaction. * Each instruction contains a program ID, accounts array, and data buffer.