We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c941b08 commit cc67073Copy full SHA for cc67073
modules/abstract-utxo/src/transaction/types.ts
@@ -1,4 +1,5 @@
1
import * as utxolib from '@bitgo/utxo-lib';
2
+import { fixedScriptWallet } from '@bitgo/wasm-utxo';
3
4
import type { UtxoNamedKeychains } from '../keychains';
5
@@ -8,7 +9,8 @@ export type SdkBackend = 'utxolib' | 'wasm-utxo';
8
9
10
export type DecodedTransaction<TNumber extends number | bigint> =
11
| utxolib.bitgo.UtxoTransaction<TNumber>
- | utxolib.bitgo.UtxoPsbt;
12
+ | utxolib.bitgo.UtxoPsbt
13
+ | fixedScriptWallet.BitGoPsbt;
14
15
export interface BaseOutput<TAmount = string | number> {
16
address: string;
0 commit comments