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 cd44b10 commit d2570eeCopy full SHA for d2570ee
index.d.ts
@@ -10,11 +10,11 @@ export interface UTXO {
10
}
11
export interface Target {
12
address: string,
13
- value: number
+ value?: number
14
15
export interface SelectedUTXO {
16
- inputs: UTXO[],
17
- outputs: Target[],
+ inputs?: UTXO[],
+ outputs?: Target[],
18
fee: number
19
20
export default function coinSelect(utxos: UTXO[], outputs: Target[], feeRate: number): SelectedUTXO;
0 commit comments