@btc-vision/transaction 1.6.16 → 1.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/_version.d.ts +1 -1
- package/browser/index.js +1 -1
- package/browser/transaction/browser/types/Unisat.d.ts +3 -0
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/transaction/browser/types/Unisat.d.ts +3 -0
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/transaction/browser/types/Unisat.ts +4 -0
|
@@ -22,6 +22,9 @@ export interface Balance {
|
|
|
22
22
|
readonly confirmed: number;
|
|
23
23
|
readonly unconfirmed: number;
|
|
24
24
|
readonly total: number;
|
|
25
|
+
readonly csv1_unlocked?: number;
|
|
26
|
+
readonly csv1_locked?: number;
|
|
27
|
+
readonly p2wda_total_amount?: number;
|
|
25
28
|
}
|
|
26
29
|
export declare enum MessageType {
|
|
27
30
|
ecdsa = "ecdsa",
|
package/build/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.6.
|
|
1
|
+
export declare const version = "1.6.17";
|
package/build/_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
1
|
+
export const version = '1.6.17';
|
|
@@ -22,6 +22,9 @@ export interface Balance {
|
|
|
22
22
|
readonly confirmed: number;
|
|
23
23
|
readonly unconfirmed: number;
|
|
24
24
|
readonly total: number;
|
|
25
|
+
readonly csv1_unlocked?: number;
|
|
26
|
+
readonly csv1_locked?: number;
|
|
27
|
+
readonly p2wda_total_amount?: number;
|
|
25
28
|
}
|
|
26
29
|
export declare enum MessageType {
|
|
27
30
|
ecdsa = "ecdsa",
|
package/package.json
CHANGED
package/src/_version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
1
|
+
export const version = '1.6.17';
|
|
@@ -26,6 +26,10 @@ export interface Balance {
|
|
|
26
26
|
readonly confirmed: number;
|
|
27
27
|
readonly unconfirmed: number;
|
|
28
28
|
readonly total: number;
|
|
29
|
+
|
|
30
|
+
readonly csv1_unlocked?: number;
|
|
31
|
+
readonly csv1_locked?: number;
|
|
32
|
+
readonly p2wda_total_amount?: number;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
export enum MessageType {
|