@breeztech/breez-sdk-spark 0.7.3 → 0.7.4
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/breez-sdk-spark.tgz +0 -0
- package/bundler/breez_sdk_spark_wasm.d.ts +385 -368
- package/bundler/breez_sdk_spark_wasm_bg.js +64 -36
- package/bundler/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/bundler/breez_sdk_spark_wasm_bg.wasm.d.ts +6 -4
- package/deno/breez_sdk_spark_wasm.d.ts +385 -368
- package/deno/breez_sdk_spark_wasm.js +63 -36
- package/deno/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/deno/breez_sdk_spark_wasm_bg.wasm.d.ts +6 -4
- package/nodejs/breez_sdk_spark_wasm.d.ts +385 -368
- package/nodejs/breez_sdk_spark_wasm.js +64 -36
- package/nodejs/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/nodejs/breez_sdk_spark_wasm_bg.wasm.d.ts +6 -4
- package/package.json +1 -1
- package/web/breez_sdk_spark_wasm.d.ts +391 -372
- package/web/breez_sdk_spark_wasm.js +63 -36
- package/web/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/web/breez_sdk_spark_wasm_bg.wasm.d.ts +6 -4
|
@@ -309,11 +309,11 @@ function __wbg_adapter_64(arg0, arg1) {
|
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
function __wbg_adapter_67(arg0, arg1, arg2) {
|
|
312
|
-
wasm.
|
|
312
|
+
wasm.closure1052_externref_shim(arg0, arg1, arg2);
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
function
|
|
316
|
-
wasm.
|
|
315
|
+
function __wbg_adapter_353(arg0, arg1, arg2, arg3) {
|
|
316
|
+
wasm.closure637_externref_shim(arg0, arg1, arg2, arg3);
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
const __wbindgen_enum_ReadableStreamType = ["bytes"];
|
|
@@ -360,6 +360,14 @@ class BreezSdk {
|
|
|
360
360
|
const ret = wasm.breezsdk_disconnect(this.__wbg_ptr);
|
|
361
361
|
return ret;
|
|
362
362
|
}
|
|
363
|
+
/**
|
|
364
|
+
* @param {LnurlAuthRequestDetails} request_data
|
|
365
|
+
* @returns {Promise<LnurlCallbackStatus>}
|
|
366
|
+
*/
|
|
367
|
+
lnurlAuth(request_data) {
|
|
368
|
+
const ret = wasm.breezsdk_lnurlAuth(this.__wbg_ptr, request_data);
|
|
369
|
+
return ret;
|
|
370
|
+
}
|
|
363
371
|
/**
|
|
364
372
|
* @param {GetPaymentRequest} request
|
|
365
373
|
* @returns {Promise<GetPaymentResponse>}
|
|
@@ -654,16 +662,14 @@ class DefaultSigner {
|
|
|
654
662
|
wasm.__wbg_defaultsigner_free(ptr, 0);
|
|
655
663
|
}
|
|
656
664
|
/**
|
|
657
|
-
* @param {
|
|
665
|
+
* @param {MessageBytes} message
|
|
658
666
|
* @param {string} path
|
|
659
667
|
* @returns {Promise<EcdsaSignatureBytes>}
|
|
660
668
|
*/
|
|
661
669
|
signEcdsa(message, path) {
|
|
662
|
-
const ptr0 =
|
|
670
|
+
const ptr0 = passStringToWasm0(path, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
663
671
|
const len0 = WASM_VECTOR_LEN;
|
|
664
|
-
const
|
|
665
|
-
const len1 = WASM_VECTOR_LEN;
|
|
666
|
-
const ret = wasm.defaultsigner_signEcdsa(this.__wbg_ptr, ptr0, len0, ptr1, len1);
|
|
672
|
+
const ret = wasm.defaultsigner_signEcdsa(this.__wbg_ptr, message, ptr0, len0);
|
|
667
673
|
return ret;
|
|
668
674
|
}
|
|
669
675
|
/**
|
|
@@ -674,6 +680,19 @@ class DefaultSigner {
|
|
|
674
680
|
const ret = wasm.defaultsigner_signFrost(this.__wbg_ptr, request);
|
|
675
681
|
return ret;
|
|
676
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* @param {Uint8Array} message
|
|
685
|
+
* @param {string} path
|
|
686
|
+
* @returns {Promise<HashedMessageBytes>}
|
|
687
|
+
*/
|
|
688
|
+
hmacSha256(message, path) {
|
|
689
|
+
const ptr0 = passArray8ToWasm0(message, wasm.__wbindgen_malloc);
|
|
690
|
+
const len0 = WASM_VECTOR_LEN;
|
|
691
|
+
const ptr1 = passStringToWasm0(path, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
692
|
+
const len1 = WASM_VECTOR_LEN;
|
|
693
|
+
const ret = wasm.defaultsigner_hmacSha256(this.__wbg_ptr, ptr0, len0, ptr1, len1);
|
|
694
|
+
return ret;
|
|
695
|
+
}
|
|
677
696
|
/**
|
|
678
697
|
* @param {Uint8Array} message
|
|
679
698
|
* @param {string} path
|
|
@@ -758,16 +777,14 @@ class DefaultSigner {
|
|
|
758
777
|
return ret;
|
|
759
778
|
}
|
|
760
779
|
/**
|
|
761
|
-
* @param {
|
|
780
|
+
* @param {MessageBytes} message
|
|
762
781
|
* @param {string} path
|
|
763
782
|
* @returns {Promise<RecoverableEcdsaSignatureBytes>}
|
|
764
783
|
*/
|
|
765
784
|
signEcdsaRecoverable(message, path) {
|
|
766
|
-
const ptr0 =
|
|
785
|
+
const ptr0 = passStringToWasm0(path, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
767
786
|
const len0 = WASM_VECTOR_LEN;
|
|
768
|
-
const
|
|
769
|
-
const len1 = WASM_VECTOR_LEN;
|
|
770
|
-
const ret = wasm.defaultsigner_signEcdsaRecoverable(this.__wbg_ptr, ptr0, len0, ptr1, len1);
|
|
787
|
+
const ret = wasm.defaultsigner_signEcdsaRecoverable(this.__wbg_ptr, message, ptr0, len0);
|
|
771
788
|
return ret;
|
|
772
789
|
}
|
|
773
790
|
/**
|
|
@@ -1642,6 +1659,21 @@ module.exports.__wbg_headers_9cb51cfd2ac780a4 = function(arg0) {
|
|
|
1642
1659
|
return ret;
|
|
1643
1660
|
};
|
|
1644
1661
|
|
|
1662
|
+
module.exports.__wbg_hmacSha256_c6633de6089f686f = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1663
|
+
let deferred1_0;
|
|
1664
|
+
let deferred1_1;
|
|
1665
|
+
try {
|
|
1666
|
+
var v0 = getArrayU8FromWasm0(arg1, arg2).slice();
|
|
1667
|
+
wasm.__wbindgen_free(arg1, arg2 * 1, 1);
|
|
1668
|
+
deferred1_0 = arg3;
|
|
1669
|
+
deferred1_1 = arg4;
|
|
1670
|
+
const ret = arg0.hmacSha256(v0, getStringFromWasm0(arg3, arg4));
|
|
1671
|
+
return ret;
|
|
1672
|
+
} finally {
|
|
1673
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
1674
|
+
}
|
|
1675
|
+
}, arguments) };
|
|
1676
|
+
|
|
1645
1677
|
module.exports.__wbg_identityPublicKey_c8b35005055a3df0 = function() { return handleError(function (arg0) {
|
|
1646
1678
|
const ret = arg0.identityPublicKey();
|
|
1647
1679
|
return ret;
|
|
@@ -1811,7 +1843,7 @@ module.exports.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
|
|
|
1811
1843
|
const a = state0.a;
|
|
1812
1844
|
state0.a = 0;
|
|
1813
1845
|
try {
|
|
1814
|
-
return
|
|
1846
|
+
return __wbg_adapter_353(a, state0.b, arg0, arg1);
|
|
1815
1847
|
} finally {
|
|
1816
1848
|
state0.a = a;
|
|
1817
1849
|
}
|
|
@@ -2098,33 +2130,29 @@ module.exports.__wbg_setsignal_75b21ef3a81de905 = function(arg0, arg1) {
|
|
|
2098
2130
|
arg0.signal = arg1;
|
|
2099
2131
|
};
|
|
2100
2132
|
|
|
2101
|
-
module.exports.
|
|
2102
|
-
let
|
|
2103
|
-
let
|
|
2133
|
+
module.exports.__wbg_signEcdsaRecoverable_756dd79f08e5ed39 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2134
|
+
let deferred0_0;
|
|
2135
|
+
let deferred0_1;
|
|
2104
2136
|
try {
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
deferred1_1 = arg4;
|
|
2109
|
-
const ret = arg0.signEcdsaRecoverable(v0, getStringFromWasm0(arg3, arg4));
|
|
2137
|
+
deferred0_0 = arg2;
|
|
2138
|
+
deferred0_1 = arg3;
|
|
2139
|
+
const ret = arg0.signEcdsaRecoverable(arg1, getStringFromWasm0(arg2, arg3));
|
|
2110
2140
|
return ret;
|
|
2111
2141
|
} finally {
|
|
2112
|
-
wasm.__wbindgen_free(
|
|
2142
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
2113
2143
|
}
|
|
2114
2144
|
}, arguments) };
|
|
2115
2145
|
|
|
2116
|
-
module.exports.
|
|
2117
|
-
let
|
|
2118
|
-
let
|
|
2146
|
+
module.exports.__wbg_signEcdsa_0ebea9dfc3b7c28f = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
2147
|
+
let deferred0_0;
|
|
2148
|
+
let deferred0_1;
|
|
2119
2149
|
try {
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
deferred1_1 = arg4;
|
|
2124
|
-
const ret = arg0.signEcdsa(v0, getStringFromWasm0(arg3, arg4));
|
|
2150
|
+
deferred0_0 = arg2;
|
|
2151
|
+
deferred0_1 = arg3;
|
|
2152
|
+
const ret = arg0.signEcdsa(arg1, getStringFromWasm0(arg2, arg3));
|
|
2125
2153
|
return ret;
|
|
2126
2154
|
} finally {
|
|
2127
|
-
wasm.__wbindgen_free(
|
|
2155
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
2128
2156
|
}
|
|
2129
2157
|
}, arguments) };
|
|
2130
2158
|
|
|
@@ -2358,13 +2386,13 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
2358
2386
|
return ret;
|
|
2359
2387
|
};
|
|
2360
2388
|
|
|
2361
|
-
module.exports.
|
|
2362
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2389
|
+
module.exports.__wbindgen_closure_wrapper11278 = function(arg0, arg1, arg2) {
|
|
2390
|
+
const ret = makeMutClosure(arg0, arg1, 817, __wbg_adapter_64);
|
|
2363
2391
|
return ret;
|
|
2364
2392
|
};
|
|
2365
2393
|
|
|
2366
|
-
module.exports.
|
|
2367
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2394
|
+
module.exports.__wbindgen_closure_wrapper13182 = function(arg0, arg1, arg2) {
|
|
2395
|
+
const ret = makeMutClosure(arg0, arg1, 1053, __wbg_adapter_67);
|
|
2368
2396
|
return ret;
|
|
2369
2397
|
};
|
|
2370
2398
|
|
|
Binary file
|
|
@@ -25,6 +25,7 @@ export const breezsdk_listFiatCurrencies: (a: number) => any;
|
|
|
25
25
|
export const breezsdk_listFiatRates: (a: number) => any;
|
|
26
26
|
export const breezsdk_listPayments: (a: number, b: any) => any;
|
|
27
27
|
export const breezsdk_listUnclaimedDeposits: (a: number, b: any) => any;
|
|
28
|
+
export const breezsdk_lnurlAuth: (a: number, b: any) => any;
|
|
28
29
|
export const breezsdk_lnurlPay: (a: number, b: any) => any;
|
|
29
30
|
export const breezsdk_lnurlWithdraw: (a: number, b: any) => any;
|
|
30
31
|
export const breezsdk_parse: (a: number, b: number, c: number) => any;
|
|
@@ -56,9 +57,10 @@ export const defaultsigner_getPublicKeyFromPrivateKeySource: (a: number, b: any)
|
|
|
56
57
|
export const defaultsigner_getStaticDepositPrivateKey: (a: number, b: number) => any;
|
|
57
58
|
export const defaultsigner_getStaticDepositPrivateKeySource: (a: number, b: number) => any;
|
|
58
59
|
export const defaultsigner_getStaticDepositPublicKey: (a: number, b: number) => any;
|
|
60
|
+
export const defaultsigner_hmacSha256: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
59
61
|
export const defaultsigner_identityPublicKey: (a: number) => [number, number, number];
|
|
60
|
-
export const defaultsigner_signEcdsa: (a: number, b:
|
|
61
|
-
export const defaultsigner_signEcdsaRecoverable: (a: number, b:
|
|
62
|
+
export const defaultsigner_signEcdsa: (a: number, b: any, c: number, d: number) => any;
|
|
63
|
+
export const defaultsigner_signEcdsaRecoverable: (a: number, b: any, c: number, d: number) => any;
|
|
62
64
|
export const defaultsigner_signFrost: (a: number, b: any) => any;
|
|
63
65
|
export const defaultsigner_signHashSchnorr: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
64
66
|
export const defaultsigner_splitSecretWithProofs: (a: number, b: any, c: number, d: number) => any;
|
|
@@ -110,6 +112,6 @@ export const __externref_drop_slice: (a: number, b: number) => void;
|
|
|
110
112
|
export const __wbindgen_export_7: WebAssembly.Table;
|
|
111
113
|
export const __externref_table_dealloc: (a: number) => void;
|
|
112
114
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hdf0ebd5238280272: (a: number, b: number) => void;
|
|
113
|
-
export const
|
|
114
|
-
export const
|
|
115
|
+
export const closure1052_externref_shim: (a: number, b: number, c: any) => void;
|
|
116
|
+
export const closure637_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
115
117
|
export const __wbindgen_start: () => void;
|
package/package.json
CHANGED