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 40e80ea commit 1720ac3Copy full SHA for 1720ac3
modules/sdk-core/src/bitgo/wallet/iWallet.ts
@@ -323,6 +323,7 @@ export interface UnspentsOptions extends PaginationOptions {
323
target?: number | string;
324
segwit?: boolean;
325
chains?: number[];
326
+ unspentIds?: string[];
327
}
328
329
export interface ManageUnspentReservationOptions {
modules/sdk-core/src/bitgo/wallet/wallet.ts
@@ -641,6 +641,7 @@ export class Wallet implements IWallet {
641
'prevId',
642
'segwit',
643
'target',
644
+ 'unspentIds',
645
]);
646
647
return this.bitgo.get(this.url('/unspents')).query(query).result();
0 commit comments