@xstoicunicornx/payjoin_test 0.1.6 → 0.1.8
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/README.md +44 -3
- package/dist/{generated/payjoin_ffi.d.ts → nodejs/bindings/payjoin.d.ts} +3078 -324
- package/dist/nodejs/bindings/payjoin.d.ts.map +1 -0
- package/dist/{generated/payjoin_ffi.js → nodejs/bindings/payjoin.js} +5754 -2165
- package/dist/nodejs/bindings/payjoin.js.map +1 -0
- package/dist/{generated → nodejs/bindings}/wasm-bindgen/index.d.ts +459 -136
- package/dist/{generated → nodejs/bindings}/wasm-bindgen/index.js +2712 -965
- package/dist/nodejs/bindings/wasm-bindgen/index_bg.wasm +0 -0
- package/dist/{generated → nodejs/bindings}/wasm-bindgen/index_bg.wasm.d.ts +715 -569
- package/dist/nodejs/index.d.ts +8 -0
- package/dist/nodejs/index.d.ts.map +1 -0
- package/dist/{index.js → nodejs/index.js} +3 -7
- package/dist/nodejs/index.js.map +1 -0
- package/dist/web/bindings/payjoin.d.ts +6865 -0
- package/dist/web/bindings/payjoin.d.ts.map +1 -0
- package/dist/web/bindings/payjoin.js +14435 -0
- package/dist/web/bindings/payjoin.js.map +1 -0
- package/dist/web/bindings/wasm-bindgen/index.d.ts +2504 -0
- package/dist/web/bindings/wasm-bindgen/index.js +6808 -0
- package/dist/web/bindings/wasm-bindgen/index_bg.wasm +0 -0
- package/dist/web/bindings/wasm-bindgen/index_bg.wasm.d.ts +1211 -0
- package/dist/web/index.d.ts +8 -0
- package/dist/web/index.d.ts.map +1 -0
- package/dist/web/index.js +20 -0
- package/dist/web/index.js.map +1 -0
- package/dist/web/vite.index.d.ts +8 -0
- package/dist/web/vite.index.d.ts.map +1 -0
- package/dist/web/vite.index.js +24 -0
- package/dist/web/vite.index.js.map +1 -0
- package/package.json +44 -37
- package/dist/generated/bitcoin.d.ts +0 -4633
- package/dist/generated/bitcoin.d.ts.map +0 -1
- package/dist/generated/bitcoin.js +0 -3861
- package/dist/generated/bitcoin.js.map +0 -1
- package/dist/generated/payjoin_ffi.d.ts.map +0 -1
- package/dist/generated/payjoin_ffi.js.map +0 -1
- package/dist/generated/wasm-bindgen/index_bg.wasm +0 -0
- package/dist/index.d.ts +0 -11
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/index.web.js +0 -30
|
@@ -1,5 +1,331 @@
|
|
|
1
1
|
/* @ts-self-types="./index.d.ts" */
|
|
2
2
|
|
|
3
|
+
class ForeignFutureCompleteF32 {
|
|
4
|
+
__destroy_into_raw() {
|
|
5
|
+
const ptr = this.__wbg_ptr;
|
|
6
|
+
this.__wbg_ptr = 0;
|
|
7
|
+
ForeignFutureCompleteF32Finalization.unregister(this);
|
|
8
|
+
return ptr;
|
|
9
|
+
}
|
|
10
|
+
free() {
|
|
11
|
+
const ptr = this.__destroy_into_raw();
|
|
12
|
+
wasm.__wbg_foreignfuturecompletef32_free(ptr, 0);
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @param {ForeignFutureCompleteF32} _ctx
|
|
16
|
+
* @param {bigint} callback_data
|
|
17
|
+
* @param {any} result
|
|
18
|
+
*/
|
|
19
|
+
call(_ctx, callback_data, result) {
|
|
20
|
+
_assertClass(_ctx, ForeignFutureCompleteF32);
|
|
21
|
+
wasm.foreignfuturecompletef32_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
if (Symbol.dispose) ForeignFutureCompleteF32.prototype[Symbol.dispose] = ForeignFutureCompleteF32.prototype.free;
|
|
25
|
+
exports.ForeignFutureCompleteF32 = ForeignFutureCompleteF32;
|
|
26
|
+
|
|
27
|
+
class ForeignFutureCompleteF64 {
|
|
28
|
+
__destroy_into_raw() {
|
|
29
|
+
const ptr = this.__wbg_ptr;
|
|
30
|
+
this.__wbg_ptr = 0;
|
|
31
|
+
ForeignFutureCompleteF64Finalization.unregister(this);
|
|
32
|
+
return ptr;
|
|
33
|
+
}
|
|
34
|
+
free() {
|
|
35
|
+
const ptr = this.__destroy_into_raw();
|
|
36
|
+
wasm.__wbg_foreignfuturecompletef64_free(ptr, 0);
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @param {ForeignFutureCompleteF64} _ctx
|
|
40
|
+
* @param {bigint} callback_data
|
|
41
|
+
* @param {any} result
|
|
42
|
+
*/
|
|
43
|
+
call(_ctx, callback_data, result) {
|
|
44
|
+
_assertClass(_ctx, ForeignFutureCompleteF64);
|
|
45
|
+
wasm.foreignfuturecompletef64_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
if (Symbol.dispose) ForeignFutureCompleteF64.prototype[Symbol.dispose] = ForeignFutureCompleteF64.prototype.free;
|
|
49
|
+
exports.ForeignFutureCompleteF64 = ForeignFutureCompleteF64;
|
|
50
|
+
|
|
51
|
+
class ForeignFutureCompleteI16 {
|
|
52
|
+
__destroy_into_raw() {
|
|
53
|
+
const ptr = this.__wbg_ptr;
|
|
54
|
+
this.__wbg_ptr = 0;
|
|
55
|
+
ForeignFutureCompleteI16Finalization.unregister(this);
|
|
56
|
+
return ptr;
|
|
57
|
+
}
|
|
58
|
+
free() {
|
|
59
|
+
const ptr = this.__destroy_into_raw();
|
|
60
|
+
wasm.__wbg_foreignfuturecompletei16_free(ptr, 0);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* @param {ForeignFutureCompleteI16} _ctx
|
|
64
|
+
* @param {bigint} callback_data
|
|
65
|
+
* @param {any} result
|
|
66
|
+
*/
|
|
67
|
+
call(_ctx, callback_data, result) {
|
|
68
|
+
_assertClass(_ctx, ForeignFutureCompleteI16);
|
|
69
|
+
wasm.foreignfuturecompletei16_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
if (Symbol.dispose) ForeignFutureCompleteI16.prototype[Symbol.dispose] = ForeignFutureCompleteI16.prototype.free;
|
|
73
|
+
exports.ForeignFutureCompleteI16 = ForeignFutureCompleteI16;
|
|
74
|
+
|
|
75
|
+
class ForeignFutureCompleteI32 {
|
|
76
|
+
__destroy_into_raw() {
|
|
77
|
+
const ptr = this.__wbg_ptr;
|
|
78
|
+
this.__wbg_ptr = 0;
|
|
79
|
+
ForeignFutureCompleteI32Finalization.unregister(this);
|
|
80
|
+
return ptr;
|
|
81
|
+
}
|
|
82
|
+
free() {
|
|
83
|
+
const ptr = this.__destroy_into_raw();
|
|
84
|
+
wasm.__wbg_foreignfuturecompletei32_free(ptr, 0);
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* @param {ForeignFutureCompleteI32} _ctx
|
|
88
|
+
* @param {bigint} callback_data
|
|
89
|
+
* @param {any} result
|
|
90
|
+
*/
|
|
91
|
+
call(_ctx, callback_data, result) {
|
|
92
|
+
_assertClass(_ctx, ForeignFutureCompleteI32);
|
|
93
|
+
wasm.foreignfuturecompletei32_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
if (Symbol.dispose) ForeignFutureCompleteI32.prototype[Symbol.dispose] = ForeignFutureCompleteI32.prototype.free;
|
|
97
|
+
exports.ForeignFutureCompleteI32 = ForeignFutureCompleteI32;
|
|
98
|
+
|
|
99
|
+
class ForeignFutureCompleteI64 {
|
|
100
|
+
__destroy_into_raw() {
|
|
101
|
+
const ptr = this.__wbg_ptr;
|
|
102
|
+
this.__wbg_ptr = 0;
|
|
103
|
+
ForeignFutureCompleteI64Finalization.unregister(this);
|
|
104
|
+
return ptr;
|
|
105
|
+
}
|
|
106
|
+
free() {
|
|
107
|
+
const ptr = this.__destroy_into_raw();
|
|
108
|
+
wasm.__wbg_foreignfuturecompletei64_free(ptr, 0);
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @param {ForeignFutureCompleteI64} _ctx
|
|
112
|
+
* @param {bigint} callback_data
|
|
113
|
+
* @param {any} result
|
|
114
|
+
*/
|
|
115
|
+
call(_ctx, callback_data, result) {
|
|
116
|
+
_assertClass(_ctx, ForeignFutureCompleteI64);
|
|
117
|
+
wasm.foreignfuturecompletei64_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
if (Symbol.dispose) ForeignFutureCompleteI64.prototype[Symbol.dispose] = ForeignFutureCompleteI64.prototype.free;
|
|
121
|
+
exports.ForeignFutureCompleteI64 = ForeignFutureCompleteI64;
|
|
122
|
+
|
|
123
|
+
class ForeignFutureCompleteI8 {
|
|
124
|
+
__destroy_into_raw() {
|
|
125
|
+
const ptr = this.__wbg_ptr;
|
|
126
|
+
this.__wbg_ptr = 0;
|
|
127
|
+
ForeignFutureCompleteI8Finalization.unregister(this);
|
|
128
|
+
return ptr;
|
|
129
|
+
}
|
|
130
|
+
free() {
|
|
131
|
+
const ptr = this.__destroy_into_raw();
|
|
132
|
+
wasm.__wbg_foreignfuturecompletei8_free(ptr, 0);
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* @param {ForeignFutureCompleteI8} _ctx
|
|
136
|
+
* @param {bigint} callback_data
|
|
137
|
+
* @param {any} result
|
|
138
|
+
*/
|
|
139
|
+
call(_ctx, callback_data, result) {
|
|
140
|
+
_assertClass(_ctx, ForeignFutureCompleteI8);
|
|
141
|
+
wasm.foreignfuturecompletei8_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
if (Symbol.dispose) ForeignFutureCompleteI8.prototype[Symbol.dispose] = ForeignFutureCompleteI8.prototype.free;
|
|
145
|
+
exports.ForeignFutureCompleteI8 = ForeignFutureCompleteI8;
|
|
146
|
+
|
|
147
|
+
class ForeignFutureCompletePointer {
|
|
148
|
+
__destroy_into_raw() {
|
|
149
|
+
const ptr = this.__wbg_ptr;
|
|
150
|
+
this.__wbg_ptr = 0;
|
|
151
|
+
ForeignFutureCompletePointerFinalization.unregister(this);
|
|
152
|
+
return ptr;
|
|
153
|
+
}
|
|
154
|
+
free() {
|
|
155
|
+
const ptr = this.__destroy_into_raw();
|
|
156
|
+
wasm.__wbg_foreignfuturecompletepointer_free(ptr, 0);
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @param {ForeignFutureCompletePointer} _ctx
|
|
160
|
+
* @param {bigint} callback_data
|
|
161
|
+
* @param {any} result
|
|
162
|
+
*/
|
|
163
|
+
call(_ctx, callback_data, result) {
|
|
164
|
+
_assertClass(_ctx, ForeignFutureCompletePointer);
|
|
165
|
+
wasm.foreignfuturecompletepointer_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
if (Symbol.dispose) ForeignFutureCompletePointer.prototype[Symbol.dispose] = ForeignFutureCompletePointer.prototype.free;
|
|
169
|
+
exports.ForeignFutureCompletePointer = ForeignFutureCompletePointer;
|
|
170
|
+
|
|
171
|
+
class ForeignFutureCompleteRustBuffer {
|
|
172
|
+
static __wrap(ptr) {
|
|
173
|
+
ptr = ptr >>> 0;
|
|
174
|
+
const obj = Object.create(ForeignFutureCompleteRustBuffer.prototype);
|
|
175
|
+
obj.__wbg_ptr = ptr;
|
|
176
|
+
ForeignFutureCompleteRustBufferFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
177
|
+
return obj;
|
|
178
|
+
}
|
|
179
|
+
__destroy_into_raw() {
|
|
180
|
+
const ptr = this.__wbg_ptr;
|
|
181
|
+
this.__wbg_ptr = 0;
|
|
182
|
+
ForeignFutureCompleteRustBufferFinalization.unregister(this);
|
|
183
|
+
return ptr;
|
|
184
|
+
}
|
|
185
|
+
free() {
|
|
186
|
+
const ptr = this.__destroy_into_raw();
|
|
187
|
+
wasm.__wbg_foreignfuturecompleterustbuffer_free(ptr, 0);
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* @param {ForeignFutureCompleteRustBuffer} _ctx
|
|
191
|
+
* @param {bigint} callback_data
|
|
192
|
+
* @param {any} result
|
|
193
|
+
*/
|
|
194
|
+
call(_ctx, callback_data, result) {
|
|
195
|
+
_assertClass(_ctx, ForeignFutureCompleteRustBuffer);
|
|
196
|
+
wasm.foreignfuturecompleterustbuffer_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
if (Symbol.dispose) ForeignFutureCompleteRustBuffer.prototype[Symbol.dispose] = ForeignFutureCompleteRustBuffer.prototype.free;
|
|
200
|
+
exports.ForeignFutureCompleteRustBuffer = ForeignFutureCompleteRustBuffer;
|
|
201
|
+
|
|
202
|
+
class ForeignFutureCompleteU16 {
|
|
203
|
+
__destroy_into_raw() {
|
|
204
|
+
const ptr = this.__wbg_ptr;
|
|
205
|
+
this.__wbg_ptr = 0;
|
|
206
|
+
ForeignFutureCompleteU16Finalization.unregister(this);
|
|
207
|
+
return ptr;
|
|
208
|
+
}
|
|
209
|
+
free() {
|
|
210
|
+
const ptr = this.__destroy_into_raw();
|
|
211
|
+
wasm.__wbg_foreignfuturecompleteu16_free(ptr, 0);
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* @param {ForeignFutureCompleteU16} _ctx
|
|
215
|
+
* @param {bigint} callback_data
|
|
216
|
+
* @param {any} result
|
|
217
|
+
*/
|
|
218
|
+
call(_ctx, callback_data, result) {
|
|
219
|
+
_assertClass(_ctx, ForeignFutureCompleteU16);
|
|
220
|
+
wasm.foreignfuturecompleteu16_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
if (Symbol.dispose) ForeignFutureCompleteU16.prototype[Symbol.dispose] = ForeignFutureCompleteU16.prototype.free;
|
|
224
|
+
exports.ForeignFutureCompleteU16 = ForeignFutureCompleteU16;
|
|
225
|
+
|
|
226
|
+
class ForeignFutureCompleteU32 {
|
|
227
|
+
__destroy_into_raw() {
|
|
228
|
+
const ptr = this.__wbg_ptr;
|
|
229
|
+
this.__wbg_ptr = 0;
|
|
230
|
+
ForeignFutureCompleteU32Finalization.unregister(this);
|
|
231
|
+
return ptr;
|
|
232
|
+
}
|
|
233
|
+
free() {
|
|
234
|
+
const ptr = this.__destroy_into_raw();
|
|
235
|
+
wasm.__wbg_foreignfuturecompleteu32_free(ptr, 0);
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* @param {ForeignFutureCompleteU32} _ctx
|
|
239
|
+
* @param {bigint} callback_data
|
|
240
|
+
* @param {any} result
|
|
241
|
+
*/
|
|
242
|
+
call(_ctx, callback_data, result) {
|
|
243
|
+
_assertClass(_ctx, ForeignFutureCompleteU32);
|
|
244
|
+
wasm.foreignfuturecompleteu32_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
if (Symbol.dispose) ForeignFutureCompleteU32.prototype[Symbol.dispose] = ForeignFutureCompleteU32.prototype.free;
|
|
248
|
+
exports.ForeignFutureCompleteU32 = ForeignFutureCompleteU32;
|
|
249
|
+
|
|
250
|
+
class ForeignFutureCompleteU64 {
|
|
251
|
+
__destroy_into_raw() {
|
|
252
|
+
const ptr = this.__wbg_ptr;
|
|
253
|
+
this.__wbg_ptr = 0;
|
|
254
|
+
ForeignFutureCompleteU64Finalization.unregister(this);
|
|
255
|
+
return ptr;
|
|
256
|
+
}
|
|
257
|
+
free() {
|
|
258
|
+
const ptr = this.__destroy_into_raw();
|
|
259
|
+
wasm.__wbg_foreignfuturecompleteu64_free(ptr, 0);
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* @param {ForeignFutureCompleteU64} _ctx
|
|
263
|
+
* @param {bigint} callback_data
|
|
264
|
+
* @param {any} result
|
|
265
|
+
*/
|
|
266
|
+
call(_ctx, callback_data, result) {
|
|
267
|
+
_assertClass(_ctx, ForeignFutureCompleteU64);
|
|
268
|
+
wasm.foreignfuturecompleteu64_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
if (Symbol.dispose) ForeignFutureCompleteU64.prototype[Symbol.dispose] = ForeignFutureCompleteU64.prototype.free;
|
|
272
|
+
exports.ForeignFutureCompleteU64 = ForeignFutureCompleteU64;
|
|
273
|
+
|
|
274
|
+
class ForeignFutureCompleteU8 {
|
|
275
|
+
__destroy_into_raw() {
|
|
276
|
+
const ptr = this.__wbg_ptr;
|
|
277
|
+
this.__wbg_ptr = 0;
|
|
278
|
+
ForeignFutureCompleteU8Finalization.unregister(this);
|
|
279
|
+
return ptr;
|
|
280
|
+
}
|
|
281
|
+
free() {
|
|
282
|
+
const ptr = this.__destroy_into_raw();
|
|
283
|
+
wasm.__wbg_foreignfuturecompleteu8_free(ptr, 0);
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* @param {ForeignFutureCompleteU8} _ctx
|
|
287
|
+
* @param {bigint} callback_data
|
|
288
|
+
* @param {any} result
|
|
289
|
+
*/
|
|
290
|
+
call(_ctx, callback_data, result) {
|
|
291
|
+
_assertClass(_ctx, ForeignFutureCompleteU8);
|
|
292
|
+
wasm.foreignfuturecompleteu8_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
if (Symbol.dispose) ForeignFutureCompleteU8.prototype[Symbol.dispose] = ForeignFutureCompleteU8.prototype.free;
|
|
296
|
+
exports.ForeignFutureCompleteU8 = ForeignFutureCompleteU8;
|
|
297
|
+
|
|
298
|
+
class ForeignFutureCompleteVoid {
|
|
299
|
+
static __wrap(ptr) {
|
|
300
|
+
ptr = ptr >>> 0;
|
|
301
|
+
const obj = Object.create(ForeignFutureCompleteVoid.prototype);
|
|
302
|
+
obj.__wbg_ptr = ptr;
|
|
303
|
+
ForeignFutureCompleteVoidFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
304
|
+
return obj;
|
|
305
|
+
}
|
|
306
|
+
__destroy_into_raw() {
|
|
307
|
+
const ptr = this.__wbg_ptr;
|
|
308
|
+
this.__wbg_ptr = 0;
|
|
309
|
+
ForeignFutureCompleteVoidFinalization.unregister(this);
|
|
310
|
+
return ptr;
|
|
311
|
+
}
|
|
312
|
+
free() {
|
|
313
|
+
const ptr = this.__destroy_into_raw();
|
|
314
|
+
wasm.__wbg_foreignfuturecompletevoid_free(ptr, 0);
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* @param {ForeignFutureCompleteVoid} _ctx
|
|
318
|
+
* @param {bigint} callback_data
|
|
319
|
+
* @param {any} result
|
|
320
|
+
*/
|
|
321
|
+
call(_ctx, callback_data, result) {
|
|
322
|
+
_assertClass(_ctx, ForeignFutureCompleteVoid);
|
|
323
|
+
wasm.foreignfuturecompletevoid_call(this.__wbg_ptr, _ctx.__wbg_ptr, callback_data, result);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
if (Symbol.dispose) ForeignFutureCompleteVoid.prototype[Symbol.dispose] = ForeignFutureCompleteVoid.prototype.free;
|
|
327
|
+
exports.ForeignFutureCompleteVoid = ForeignFutureCompleteVoid;
|
|
328
|
+
|
|
3
329
|
class RustCallStatus {
|
|
4
330
|
__destroy_into_raw() {
|
|
5
331
|
const ptr = this.__wbg_ptr;
|
|
@@ -56,1004 +382,507 @@ if (Symbol.dispose) RustCallStatus.prototype[Symbol.dispose] = RustCallStatus.pr
|
|
|
56
382
|
exports.RustCallStatus = RustCallStatus;
|
|
57
383
|
|
|
58
384
|
/**
|
|
59
|
-
* @
|
|
60
|
-
*/
|
|
61
|
-
function ubrn_ffi_bitcoin_ffi_uniffi_contract_version() {
|
|
62
|
-
const ret = wasm.ubrn_ffi_bitcoin_ffi_uniffi_contract_version();
|
|
63
|
-
return ret >>> 0;
|
|
64
|
-
}
|
|
65
|
-
exports.ubrn_ffi_bitcoin_ffi_uniffi_contract_version = ubrn_ffi_bitcoin_ffi_uniffi_contract_version;
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* @returns {number}
|
|
69
|
-
*/
|
|
70
|
-
function ubrn_ffi_payjoin_ffi_uniffi_contract_version() {
|
|
71
|
-
const ret = wasm.ubrn_ffi_payjoin_ffi_uniffi_contract_version();
|
|
72
|
-
return ret >>> 0;
|
|
73
|
-
}
|
|
74
|
-
exports.ubrn_ffi_payjoin_ffi_uniffi_contract_version = ubrn_ffi_payjoin_ffi_uniffi_contract_version;
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* @returns {number}
|
|
78
|
-
*/
|
|
79
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_from_script() {
|
|
80
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_from_script();
|
|
81
|
-
return ret;
|
|
82
|
-
}
|
|
83
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_from_script = ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_from_script;
|
|
84
|
-
|
|
85
|
-
/**
|
|
86
|
-
* @returns {number}
|
|
87
|
-
*/
|
|
88
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_new() {
|
|
89
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_new();
|
|
90
|
-
return ret;
|
|
91
|
-
}
|
|
92
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_new = ubrn_uniffi_bitcoin_ffi_checksum_constructor_address_new;
|
|
93
|
-
|
|
94
|
-
/**
|
|
95
|
-
* @returns {number}
|
|
96
|
-
*/
|
|
97
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_constructor_amount_from_btc() {
|
|
98
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_constructor_amount_from_btc();
|
|
99
|
-
return ret;
|
|
100
|
-
}
|
|
101
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_constructor_amount_from_btc = ubrn_uniffi_bitcoin_ffi_checksum_constructor_amount_from_btc;
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* @returns {number}
|
|
385
|
+
* @param {bigint} handle
|
|
105
386
|
*/
|
|
106
|
-
function
|
|
107
|
-
|
|
108
|
-
return ret;
|
|
387
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_f32(handle) {
|
|
388
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_f32(handle);
|
|
109
389
|
}
|
|
110
|
-
exports.
|
|
390
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_f32 = ubrn_ffi_payjoin_ffi_rust_future_cancel_f32;
|
|
111
391
|
|
|
112
392
|
/**
|
|
113
|
-
* @
|
|
393
|
+
* @param {bigint} handle
|
|
114
394
|
*/
|
|
115
|
-
function
|
|
116
|
-
|
|
117
|
-
return ret;
|
|
395
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_f64(handle) {
|
|
396
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_f64(handle);
|
|
118
397
|
}
|
|
119
|
-
exports.
|
|
398
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_f64 = ubrn_ffi_payjoin_ffi_rust_future_cancel_f64;
|
|
120
399
|
|
|
121
400
|
/**
|
|
122
|
-
* @
|
|
401
|
+
* @param {bigint} handle
|
|
123
402
|
*/
|
|
124
|
-
function
|
|
125
|
-
|
|
126
|
-
return ret;
|
|
403
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_i16(handle) {
|
|
404
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_i16(handle);
|
|
127
405
|
}
|
|
128
|
-
exports.
|
|
406
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_i16 = ubrn_ffi_payjoin_ffi_rust_future_cancel_i16;
|
|
129
407
|
|
|
130
408
|
/**
|
|
131
|
-
* @
|
|
409
|
+
* @param {bigint} handle
|
|
132
410
|
*/
|
|
133
|
-
function
|
|
134
|
-
|
|
135
|
-
return ret;
|
|
411
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_i32(handle) {
|
|
412
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_i32(handle);
|
|
136
413
|
}
|
|
137
|
-
exports.
|
|
414
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_i32 = ubrn_ffi_payjoin_ffi_rust_future_cancel_i32;
|
|
138
415
|
|
|
139
416
|
/**
|
|
140
|
-
* @
|
|
417
|
+
* @param {bigint} handle
|
|
141
418
|
*/
|
|
142
|
-
function
|
|
143
|
-
|
|
144
|
-
return ret;
|
|
419
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_i64(handle) {
|
|
420
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_i64(handle);
|
|
145
421
|
}
|
|
146
|
-
exports.
|
|
422
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_i64 = ubrn_ffi_payjoin_ffi_rust_future_cancel_i64;
|
|
147
423
|
|
|
148
424
|
/**
|
|
149
|
-
* @
|
|
425
|
+
* @param {bigint} handle
|
|
150
426
|
*/
|
|
151
|
-
function
|
|
152
|
-
|
|
153
|
-
return ret;
|
|
427
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_i8(handle) {
|
|
428
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_i8(handle);
|
|
154
429
|
}
|
|
155
|
-
exports.
|
|
430
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_i8 = ubrn_ffi_payjoin_ffi_rust_future_cancel_i8;
|
|
156
431
|
|
|
157
432
|
/**
|
|
158
|
-
* @
|
|
433
|
+
* @param {bigint} handle
|
|
159
434
|
*/
|
|
160
|
-
function
|
|
161
|
-
|
|
162
|
-
return ret;
|
|
435
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_pointer(handle) {
|
|
436
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_pointer(handle);
|
|
163
437
|
}
|
|
164
|
-
exports.
|
|
438
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_pointer = ubrn_ffi_payjoin_ffi_rust_future_cancel_pointer;
|
|
165
439
|
|
|
166
440
|
/**
|
|
167
|
-
* @
|
|
441
|
+
* @param {bigint} handle
|
|
168
442
|
*/
|
|
169
|
-
function
|
|
170
|
-
|
|
171
|
-
return ret;
|
|
443
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_rust_buffer(handle) {
|
|
444
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_rust_buffer(handle);
|
|
172
445
|
}
|
|
173
|
-
exports.
|
|
446
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_rust_buffer = ubrn_ffi_payjoin_ffi_rust_future_cancel_rust_buffer;
|
|
174
447
|
|
|
175
448
|
/**
|
|
176
|
-
* @
|
|
449
|
+
* @param {bigint} handle
|
|
177
450
|
*/
|
|
178
|
-
function
|
|
179
|
-
|
|
180
|
-
return ret;
|
|
451
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_u16(handle) {
|
|
452
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_u16(handle);
|
|
181
453
|
}
|
|
182
|
-
exports.
|
|
454
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_u16 = ubrn_ffi_payjoin_ffi_rust_future_cancel_u16;
|
|
183
455
|
|
|
184
456
|
/**
|
|
185
|
-
* @
|
|
186
|
-
*/
|
|
187
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_address_script_pubkey() {
|
|
188
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_address_script_pubkey();
|
|
189
|
-
return ret;
|
|
190
|
-
}
|
|
191
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_address_script_pubkey = ubrn_uniffi_bitcoin_ffi_checksum_method_address_script_pubkey;
|
|
192
|
-
|
|
193
|
-
/**
|
|
194
|
-
* @returns {number}
|
|
195
|
-
*/
|
|
196
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_address_to_qr_uri() {
|
|
197
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_address_to_qr_uri();
|
|
198
|
-
return ret;
|
|
199
|
-
}
|
|
200
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_address_to_qr_uri = ubrn_uniffi_bitcoin_ffi_checksum_method_address_to_qr_uri;
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* @returns {number}
|
|
204
|
-
*/
|
|
205
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_btc() {
|
|
206
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_btc();
|
|
207
|
-
return ret;
|
|
208
|
-
}
|
|
209
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_btc = ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_btc;
|
|
210
|
-
|
|
211
|
-
/**
|
|
212
|
-
* @returns {number}
|
|
213
|
-
*/
|
|
214
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_sat() {
|
|
215
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_sat();
|
|
216
|
-
return ret;
|
|
217
|
-
}
|
|
218
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_sat = ubrn_uniffi_bitcoin_ffi_checksum_method_amount_to_sat;
|
|
219
|
-
|
|
220
|
-
/**
|
|
221
|
-
* @returns {number}
|
|
222
|
-
*/
|
|
223
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_kwu() {
|
|
224
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_kwu();
|
|
225
|
-
return ret;
|
|
226
|
-
}
|
|
227
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_kwu = ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_kwu;
|
|
228
|
-
|
|
229
|
-
/**
|
|
230
|
-
* @returns {number}
|
|
231
|
-
*/
|
|
232
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_ceil() {
|
|
233
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_ceil();
|
|
234
|
-
return ret;
|
|
235
|
-
}
|
|
236
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_ceil = ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_ceil;
|
|
237
|
-
|
|
238
|
-
/**
|
|
239
|
-
* @returns {number}
|
|
240
|
-
*/
|
|
241
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_floor() {
|
|
242
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_floor();
|
|
243
|
-
return ret;
|
|
244
|
-
}
|
|
245
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_floor = ubrn_uniffi_bitcoin_ffi_checksum_method_feerate_to_sat_per_vb_floor;
|
|
246
|
-
|
|
247
|
-
/**
|
|
248
|
-
* @returns {number}
|
|
249
|
-
*/
|
|
250
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_combine() {
|
|
251
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_combine();
|
|
252
|
-
return ret;
|
|
253
|
-
}
|
|
254
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_combine = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_combine;
|
|
255
|
-
|
|
256
|
-
/**
|
|
257
|
-
* @returns {number}
|
|
258
|
-
*/
|
|
259
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_extract_tx() {
|
|
260
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_extract_tx();
|
|
261
|
-
return ret;
|
|
262
|
-
}
|
|
263
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_extract_tx = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_extract_tx;
|
|
264
|
-
|
|
265
|
-
/**
|
|
266
|
-
* @returns {number}
|
|
267
|
-
*/
|
|
268
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_fee() {
|
|
269
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_fee();
|
|
270
|
-
return ret;
|
|
271
|
-
}
|
|
272
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_fee = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_fee;
|
|
273
|
-
|
|
274
|
-
/**
|
|
275
|
-
* @returns {number}
|
|
276
|
-
*/
|
|
277
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize() {
|
|
278
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize();
|
|
279
|
-
return ret;
|
|
280
|
-
}
|
|
281
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize;
|
|
282
|
-
|
|
283
|
-
/**
|
|
284
|
-
* @returns {number}
|
|
285
|
-
*/
|
|
286
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_base64() {
|
|
287
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_base64();
|
|
288
|
-
return ret;
|
|
289
|
-
}
|
|
290
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_base64 = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_base64;
|
|
291
|
-
|
|
292
|
-
/**
|
|
293
|
-
* @returns {number}
|
|
294
|
-
*/
|
|
295
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_hex() {
|
|
296
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_hex();
|
|
297
|
-
return ret;
|
|
298
|
-
}
|
|
299
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_hex = ubrn_uniffi_bitcoin_ffi_checksum_method_psbt_serialize_hex;
|
|
300
|
-
|
|
301
|
-
/**
|
|
302
|
-
* @returns {number}
|
|
303
|
-
*/
|
|
304
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_script_to_bytes() {
|
|
305
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_script_to_bytes();
|
|
306
|
-
return ret;
|
|
307
|
-
}
|
|
308
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_script_to_bytes = ubrn_uniffi_bitcoin_ffi_checksum_method_script_to_bytes;
|
|
309
|
-
|
|
310
|
-
/**
|
|
311
|
-
* @returns {number}
|
|
312
|
-
*/
|
|
313
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_compute_txid() {
|
|
314
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_compute_txid();
|
|
315
|
-
return ret;
|
|
316
|
-
}
|
|
317
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_compute_txid = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_compute_txid;
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* @returns {number}
|
|
321
|
-
*/
|
|
322
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_input() {
|
|
323
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_input();
|
|
324
|
-
return ret;
|
|
325
|
-
}
|
|
326
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_input = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_input;
|
|
327
|
-
|
|
328
|
-
/**
|
|
329
|
-
* @returns {number}
|
|
330
|
-
*/
|
|
331
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_coinbase() {
|
|
332
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_coinbase();
|
|
333
|
-
return ret;
|
|
334
|
-
}
|
|
335
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_coinbase = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_coinbase;
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* @returns {number}
|
|
339
|
-
*/
|
|
340
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_explicitly_rbf() {
|
|
341
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_explicitly_rbf();
|
|
342
|
-
return ret;
|
|
343
|
-
}
|
|
344
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_explicitly_rbf = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_explicitly_rbf;
|
|
345
|
-
|
|
346
|
-
/**
|
|
347
|
-
* @returns {number}
|
|
348
|
-
*/
|
|
349
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_lock_time_enabled() {
|
|
350
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_lock_time_enabled();
|
|
351
|
-
return ret;
|
|
352
|
-
}
|
|
353
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_lock_time_enabled = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_is_lock_time_enabled;
|
|
354
|
-
|
|
355
|
-
/**
|
|
356
|
-
* @returns {number}
|
|
357
|
-
*/
|
|
358
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_lock_time() {
|
|
359
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_lock_time();
|
|
360
|
-
return ret;
|
|
361
|
-
}
|
|
362
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_lock_time = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_lock_time;
|
|
363
|
-
|
|
364
|
-
/**
|
|
365
|
-
* @returns {number}
|
|
366
|
-
*/
|
|
367
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_output() {
|
|
368
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_output();
|
|
369
|
-
return ret;
|
|
370
|
-
}
|
|
371
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_output = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_output;
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* @returns {number}
|
|
375
|
-
*/
|
|
376
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_serialize() {
|
|
377
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_serialize();
|
|
378
|
-
return ret;
|
|
379
|
-
}
|
|
380
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_serialize = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_serialize;
|
|
381
|
-
|
|
382
|
-
/**
|
|
383
|
-
* @returns {number}
|
|
384
|
-
*/
|
|
385
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_total_size() {
|
|
386
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_total_size();
|
|
387
|
-
return ret;
|
|
388
|
-
}
|
|
389
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_total_size = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_total_size;
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* @returns {number}
|
|
393
|
-
*/
|
|
394
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_version() {
|
|
395
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_version();
|
|
396
|
-
return ret;
|
|
397
|
-
}
|
|
398
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_version = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_version;
|
|
399
|
-
|
|
400
|
-
/**
|
|
401
|
-
* @returns {number}
|
|
402
|
-
*/
|
|
403
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_vsize() {
|
|
404
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_vsize();
|
|
405
|
-
return ret;
|
|
406
|
-
}
|
|
407
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_vsize = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_vsize;
|
|
408
|
-
|
|
409
|
-
/**
|
|
410
|
-
* @returns {number}
|
|
411
|
-
*/
|
|
412
|
-
function ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_weight() {
|
|
413
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_weight();
|
|
414
|
-
return ret;
|
|
415
|
-
}
|
|
416
|
-
exports.ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_weight = ubrn_uniffi_bitcoin_ffi_checksum_method_transaction_weight;
|
|
417
|
-
|
|
418
|
-
/**
|
|
419
|
-
* @param {bigint} ptr
|
|
420
|
-
* @param {RustCallStatus} f_status_
|
|
421
|
-
* @returns {bigint}
|
|
422
|
-
*/
|
|
423
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_address(ptr, f_status_) {
|
|
424
|
-
_assertClass(f_status_, RustCallStatus);
|
|
425
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_address(ptr, f_status_.__wbg_ptr);
|
|
426
|
-
return BigInt.asUintN(64, ret);
|
|
427
|
-
}
|
|
428
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_address = ubrn_uniffi_bitcoin_ffi_fn_clone_address;
|
|
429
|
-
|
|
430
|
-
/**
|
|
431
|
-
* @param {bigint} ptr
|
|
432
|
-
* @param {RustCallStatus} f_status_
|
|
433
|
-
* @returns {bigint}
|
|
434
|
-
*/
|
|
435
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_amount(ptr, f_status_) {
|
|
436
|
-
_assertClass(f_status_, RustCallStatus);
|
|
437
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_amount(ptr, f_status_.__wbg_ptr);
|
|
438
|
-
return BigInt.asUintN(64, ret);
|
|
439
|
-
}
|
|
440
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_amount = ubrn_uniffi_bitcoin_ffi_fn_clone_amount;
|
|
441
|
-
|
|
442
|
-
/**
|
|
443
|
-
* @param {bigint} ptr
|
|
444
|
-
* @param {RustCallStatus} f_status_
|
|
445
|
-
* @returns {bigint}
|
|
446
|
-
*/
|
|
447
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_feerate(ptr, f_status_) {
|
|
448
|
-
_assertClass(f_status_, RustCallStatus);
|
|
449
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_feerate(ptr, f_status_.__wbg_ptr);
|
|
450
|
-
return BigInt.asUintN(64, ret);
|
|
451
|
-
}
|
|
452
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_feerate = ubrn_uniffi_bitcoin_ffi_fn_clone_feerate;
|
|
453
|
-
|
|
454
|
-
/**
|
|
455
|
-
* @param {bigint} ptr
|
|
456
|
-
* @param {RustCallStatus} f_status_
|
|
457
|
-
* @returns {bigint}
|
|
458
|
-
*/
|
|
459
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_psbt(ptr, f_status_) {
|
|
460
|
-
_assertClass(f_status_, RustCallStatus);
|
|
461
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_psbt(ptr, f_status_.__wbg_ptr);
|
|
462
|
-
return BigInt.asUintN(64, ret);
|
|
463
|
-
}
|
|
464
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_psbt = ubrn_uniffi_bitcoin_ffi_fn_clone_psbt;
|
|
465
|
-
|
|
466
|
-
/**
|
|
467
|
-
* @param {bigint} ptr
|
|
468
|
-
* @param {RustCallStatus} f_status_
|
|
469
|
-
* @returns {bigint}
|
|
470
|
-
*/
|
|
471
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_script(ptr, f_status_) {
|
|
472
|
-
_assertClass(f_status_, RustCallStatus);
|
|
473
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_script(ptr, f_status_.__wbg_ptr);
|
|
474
|
-
return BigInt.asUintN(64, ret);
|
|
475
|
-
}
|
|
476
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_script = ubrn_uniffi_bitcoin_ffi_fn_clone_script;
|
|
477
|
-
|
|
478
|
-
/**
|
|
479
|
-
* @param {bigint} ptr
|
|
480
|
-
* @param {RustCallStatus} f_status_
|
|
481
|
-
* @returns {bigint}
|
|
482
|
-
*/
|
|
483
|
-
function ubrn_uniffi_bitcoin_ffi_fn_clone_transaction(ptr, f_status_) {
|
|
484
|
-
_assertClass(f_status_, RustCallStatus);
|
|
485
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_clone_transaction(ptr, f_status_.__wbg_ptr);
|
|
486
|
-
return BigInt.asUintN(64, ret);
|
|
487
|
-
}
|
|
488
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_clone_transaction = ubrn_uniffi_bitcoin_ffi_fn_clone_transaction;
|
|
489
|
-
|
|
490
|
-
/**
|
|
491
|
-
* @param {bigint} script
|
|
492
|
-
* @param {Uint8Array} network
|
|
493
|
-
* @param {RustCallStatus} f_status_
|
|
494
|
-
* @returns {bigint}
|
|
495
|
-
*/
|
|
496
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_address_from_script(script, network, f_status_) {
|
|
497
|
-
const ptr0 = passArray8ToWasm0(network, wasm.__wbindgen_malloc);
|
|
498
|
-
const len0 = WASM_VECTOR_LEN;
|
|
499
|
-
_assertClass(f_status_, RustCallStatus);
|
|
500
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_address_from_script(script, ptr0, len0, f_status_.__wbg_ptr);
|
|
501
|
-
return BigInt.asUintN(64, ret);
|
|
502
|
-
}
|
|
503
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_address_from_script = ubrn_uniffi_bitcoin_ffi_fn_constructor_address_from_script;
|
|
504
|
-
|
|
505
|
-
/**
|
|
506
|
-
* @param {Uint8Array} address
|
|
507
|
-
* @param {Uint8Array} network
|
|
508
|
-
* @param {RustCallStatus} f_status_
|
|
509
|
-
* @returns {bigint}
|
|
510
|
-
*/
|
|
511
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_address_new(address, network, f_status_) {
|
|
512
|
-
const ptr0 = passArray8ToWasm0(address, wasm.__wbindgen_malloc);
|
|
513
|
-
const len0 = WASM_VECTOR_LEN;
|
|
514
|
-
const ptr1 = passArray8ToWasm0(network, wasm.__wbindgen_malloc);
|
|
515
|
-
const len1 = WASM_VECTOR_LEN;
|
|
516
|
-
_assertClass(f_status_, RustCallStatus);
|
|
517
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_address_new(ptr0, len0, ptr1, len1, f_status_.__wbg_ptr);
|
|
518
|
-
return BigInt.asUintN(64, ret);
|
|
519
|
-
}
|
|
520
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_address_new = ubrn_uniffi_bitcoin_ffi_fn_constructor_address_new;
|
|
521
|
-
|
|
522
|
-
/**
|
|
523
|
-
* @param {number} btc
|
|
524
|
-
* @param {RustCallStatus} f_status_
|
|
525
|
-
* @returns {bigint}
|
|
526
|
-
*/
|
|
527
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_btc(btc, f_status_) {
|
|
528
|
-
_assertClass(f_status_, RustCallStatus);
|
|
529
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_btc(btc, f_status_.__wbg_ptr);
|
|
530
|
-
return BigInt.asUintN(64, ret);
|
|
531
|
-
}
|
|
532
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_btc = ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_btc;
|
|
533
|
-
|
|
534
|
-
/**
|
|
535
|
-
* @param {bigint} sat
|
|
536
|
-
* @param {RustCallStatus} f_status_
|
|
537
|
-
* @returns {bigint}
|
|
538
|
-
*/
|
|
539
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_sat(sat, f_status_) {
|
|
540
|
-
_assertClass(f_status_, RustCallStatus);
|
|
541
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_sat(sat, f_status_.__wbg_ptr);
|
|
542
|
-
return BigInt.asUintN(64, ret);
|
|
543
|
-
}
|
|
544
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_sat = ubrn_uniffi_bitcoin_ffi_fn_constructor_amount_from_sat;
|
|
545
|
-
|
|
546
|
-
/**
|
|
547
|
-
* @param {bigint} sat_per_kwu
|
|
548
|
-
* @param {RustCallStatus} f_status_
|
|
549
|
-
* @returns {bigint}
|
|
550
|
-
*/
|
|
551
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_kwu(sat_per_kwu, f_status_) {
|
|
552
|
-
_assertClass(f_status_, RustCallStatus);
|
|
553
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_kwu(sat_per_kwu, f_status_.__wbg_ptr);
|
|
554
|
-
return BigInt.asUintN(64, ret);
|
|
555
|
-
}
|
|
556
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_kwu = ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_kwu;
|
|
557
|
-
|
|
558
|
-
/**
|
|
559
|
-
* @param {bigint} sat_per_vb
|
|
560
|
-
* @param {RustCallStatus} f_status_
|
|
561
|
-
* @returns {bigint}
|
|
562
|
-
*/
|
|
563
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_vb(sat_per_vb, f_status_) {
|
|
564
|
-
_assertClass(f_status_, RustCallStatus);
|
|
565
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_vb(sat_per_vb, f_status_.__wbg_ptr);
|
|
566
|
-
return BigInt.asUintN(64, ret);
|
|
567
|
-
}
|
|
568
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_vb = ubrn_uniffi_bitcoin_ffi_fn_constructor_feerate_from_sat_per_vb;
|
|
569
|
-
|
|
570
|
-
/**
|
|
571
|
-
* @param {Uint8Array} psbt_bytes
|
|
572
|
-
* @param {RustCallStatus} f_status_
|
|
573
|
-
* @returns {bigint}
|
|
574
|
-
*/
|
|
575
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize(psbt_bytes, f_status_) {
|
|
576
|
-
const ptr0 = passArray8ToWasm0(psbt_bytes, wasm.__wbindgen_malloc);
|
|
577
|
-
const len0 = WASM_VECTOR_LEN;
|
|
578
|
-
_assertClass(f_status_, RustCallStatus);
|
|
579
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize(ptr0, len0, f_status_.__wbg_ptr);
|
|
580
|
-
return BigInt.asUintN(64, ret);
|
|
581
|
-
}
|
|
582
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize = ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize;
|
|
583
|
-
|
|
584
|
-
/**
|
|
585
|
-
* @param {Uint8Array} psbt_base64
|
|
586
|
-
* @param {RustCallStatus} f_status_
|
|
587
|
-
* @returns {bigint}
|
|
588
|
-
*/
|
|
589
|
-
function ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize_base64(psbt_base64, f_status_) {
|
|
590
|
-
const ptr0 = passArray8ToWasm0(psbt_base64, wasm.__wbindgen_malloc);
|
|
591
|
-
const len0 = WASM_VECTOR_LEN;
|
|
592
|
-
_assertClass(f_status_, RustCallStatus);
|
|
593
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize_base64(ptr0, len0, f_status_.__wbg_ptr);
|
|
594
|
-
return BigInt.asUintN(64, ret);
|
|
595
|
-
}
|
|
596
|
-
exports.ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize_base64 = ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_deserialize_base64;
|
|
597
|
-
|
|
598
|
-
/**
|
|
599
|
-
* @param {bigint} tx
|
|
600
|
-
* @param {RustCallStatus} f_status_
|
|
601
|
-
* @returns {bigint}
|
|
457
|
+
* @param {bigint} handle
|
|
602
458
|
*/
|
|
603
|
-
function
|
|
604
|
-
|
|
605
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_psbt_from_unsigned_tx(tx, f_status_.__wbg_ptr);
|
|
606
|
-
return BigInt.asUintN(64, ret);
|
|
459
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_u32(handle) {
|
|
460
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_u32(handle);
|
|
607
461
|
}
|
|
608
|
-
exports.
|
|
462
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_u32 = ubrn_ffi_payjoin_ffi_rust_future_cancel_u32;
|
|
609
463
|
|
|
610
464
|
/**
|
|
611
|
-
* @param {
|
|
612
|
-
* @param {RustCallStatus} f_status_
|
|
613
|
-
* @returns {bigint}
|
|
465
|
+
* @param {bigint} handle
|
|
614
466
|
*/
|
|
615
|
-
function
|
|
616
|
-
|
|
617
|
-
const len0 = WASM_VECTOR_LEN;
|
|
618
|
-
_assertClass(f_status_, RustCallStatus);
|
|
619
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_script_new(ptr0, len0, f_status_.__wbg_ptr);
|
|
620
|
-
return BigInt.asUintN(64, ret);
|
|
467
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_u64(handle) {
|
|
468
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_u64(handle);
|
|
621
469
|
}
|
|
622
|
-
exports.
|
|
470
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_u64 = ubrn_ffi_payjoin_ffi_rust_future_cancel_u64;
|
|
623
471
|
|
|
624
472
|
/**
|
|
625
|
-
* @param {
|
|
626
|
-
* @param {RustCallStatus} f_status_
|
|
627
|
-
* @returns {bigint}
|
|
473
|
+
* @param {bigint} handle
|
|
628
474
|
*/
|
|
629
|
-
function
|
|
630
|
-
|
|
631
|
-
const len0 = WASM_VECTOR_LEN;
|
|
632
|
-
_assertClass(f_status_, RustCallStatus);
|
|
633
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_constructor_transaction_deserialize(ptr0, len0, f_status_.__wbg_ptr);
|
|
634
|
-
return BigInt.asUintN(64, ret);
|
|
475
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_u8(handle) {
|
|
476
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_u8(handle);
|
|
635
477
|
}
|
|
636
|
-
exports.
|
|
478
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_u8 = ubrn_ffi_payjoin_ffi_rust_future_cancel_u8;
|
|
637
479
|
|
|
638
480
|
/**
|
|
639
|
-
* @param {bigint}
|
|
640
|
-
* @param {RustCallStatus} f_status_
|
|
481
|
+
* @param {bigint} handle
|
|
641
482
|
*/
|
|
642
|
-
function
|
|
643
|
-
|
|
644
|
-
wasm.ubrn_uniffi_bitcoin_ffi_fn_free_address(ptr, f_status_.__wbg_ptr);
|
|
483
|
+
function ubrn_ffi_payjoin_ffi_rust_future_cancel_void(handle) {
|
|
484
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_cancel_void(handle);
|
|
645
485
|
}
|
|
646
|
-
exports.
|
|
486
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_cancel_void = ubrn_ffi_payjoin_ffi_rust_future_cancel_void;
|
|
647
487
|
|
|
648
488
|
/**
|
|
649
|
-
* @param {bigint}
|
|
489
|
+
* @param {bigint} handle
|
|
650
490
|
* @param {RustCallStatus} f_status_
|
|
491
|
+
* @returns {number}
|
|
651
492
|
*/
|
|
652
|
-
function
|
|
493
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_f32(handle, f_status_) {
|
|
653
494
|
_assertClass(f_status_, RustCallStatus);
|
|
654
|
-
wasm.
|
|
495
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_f32(handle, f_status_.__wbg_ptr);
|
|
496
|
+
return ret;
|
|
655
497
|
}
|
|
656
|
-
exports.
|
|
498
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_f32 = ubrn_ffi_payjoin_ffi_rust_future_complete_f32;
|
|
657
499
|
|
|
658
500
|
/**
|
|
659
|
-
* @param {bigint}
|
|
501
|
+
* @param {bigint} handle
|
|
660
502
|
* @param {RustCallStatus} f_status_
|
|
503
|
+
* @returns {number}
|
|
661
504
|
*/
|
|
662
|
-
function
|
|
505
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_f64(handle, f_status_) {
|
|
663
506
|
_assertClass(f_status_, RustCallStatus);
|
|
664
|
-
wasm.
|
|
507
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_f64(handle, f_status_.__wbg_ptr);
|
|
508
|
+
return ret;
|
|
665
509
|
}
|
|
666
|
-
exports.
|
|
510
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_f64 = ubrn_ffi_payjoin_ffi_rust_future_complete_f64;
|
|
667
511
|
|
|
668
512
|
/**
|
|
669
|
-
* @param {bigint}
|
|
513
|
+
* @param {bigint} handle
|
|
670
514
|
* @param {RustCallStatus} f_status_
|
|
515
|
+
* @returns {number}
|
|
671
516
|
*/
|
|
672
|
-
function
|
|
517
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_i16(handle, f_status_) {
|
|
673
518
|
_assertClass(f_status_, RustCallStatus);
|
|
674
|
-
wasm.
|
|
519
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_i16(handle, f_status_.__wbg_ptr);
|
|
520
|
+
return ret;
|
|
675
521
|
}
|
|
676
|
-
exports.
|
|
522
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_i16 = ubrn_ffi_payjoin_ffi_rust_future_complete_i16;
|
|
677
523
|
|
|
678
524
|
/**
|
|
679
|
-
* @param {bigint}
|
|
525
|
+
* @param {bigint} handle
|
|
680
526
|
* @param {RustCallStatus} f_status_
|
|
527
|
+
* @returns {number}
|
|
681
528
|
*/
|
|
682
|
-
function
|
|
529
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_i32(handle, f_status_) {
|
|
683
530
|
_assertClass(f_status_, RustCallStatus);
|
|
684
|
-
wasm.
|
|
531
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_i32(handle, f_status_.__wbg_ptr);
|
|
532
|
+
return ret;
|
|
685
533
|
}
|
|
686
|
-
exports.
|
|
534
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_i32 = ubrn_ffi_payjoin_ffi_rust_future_complete_i32;
|
|
687
535
|
|
|
688
536
|
/**
|
|
689
|
-
* @param {bigint}
|
|
537
|
+
* @param {bigint} handle
|
|
690
538
|
* @param {RustCallStatus} f_status_
|
|
539
|
+
* @returns {bigint}
|
|
691
540
|
*/
|
|
692
|
-
function
|
|
541
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_i64(handle, f_status_) {
|
|
693
542
|
_assertClass(f_status_, RustCallStatus);
|
|
694
|
-
wasm.
|
|
543
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_i64(handle, f_status_.__wbg_ptr);
|
|
544
|
+
return ret;
|
|
695
545
|
}
|
|
696
|
-
exports.
|
|
546
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_i64 = ubrn_ffi_payjoin_ffi_rust_future_complete_i64;
|
|
697
547
|
|
|
698
548
|
/**
|
|
699
|
-
* @param {bigint}
|
|
700
|
-
* @param {Uint8Array} network
|
|
549
|
+
* @param {bigint} handle
|
|
701
550
|
* @param {RustCallStatus} f_status_
|
|
702
551
|
* @returns {number}
|
|
703
552
|
*/
|
|
704
|
-
function
|
|
705
|
-
const ptr0 = passArray8ToWasm0(network, wasm.__wbindgen_malloc);
|
|
706
|
-
const len0 = WASM_VECTOR_LEN;
|
|
553
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_i8(handle, f_status_) {
|
|
707
554
|
_assertClass(f_status_, RustCallStatus);
|
|
708
|
-
const ret = wasm.
|
|
555
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_i8(handle, f_status_.__wbg_ptr);
|
|
709
556
|
return ret;
|
|
710
557
|
}
|
|
711
|
-
exports.
|
|
558
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_i8 = ubrn_ffi_payjoin_ffi_rust_future_complete_i8;
|
|
712
559
|
|
|
713
560
|
/**
|
|
714
|
-
* @param {bigint}
|
|
561
|
+
* @param {bigint} handle
|
|
715
562
|
* @param {RustCallStatus} f_status_
|
|
716
563
|
* @returns {bigint}
|
|
717
564
|
*/
|
|
718
|
-
function
|
|
565
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_pointer(handle, f_status_) {
|
|
719
566
|
_assertClass(f_status_, RustCallStatus);
|
|
720
|
-
const ret = wasm.
|
|
567
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_pointer(handle, f_status_.__wbg_ptr);
|
|
721
568
|
return BigInt.asUintN(64, ret);
|
|
722
569
|
}
|
|
723
|
-
exports.
|
|
570
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_pointer = ubrn_ffi_payjoin_ffi_rust_future_complete_pointer;
|
|
724
571
|
|
|
725
572
|
/**
|
|
726
|
-
* @param {bigint}
|
|
573
|
+
* @param {bigint} handle
|
|
727
574
|
* @param {RustCallStatus} f_status_
|
|
728
575
|
* @returns {Uint8Array}
|
|
729
576
|
*/
|
|
730
|
-
function
|
|
577
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_rust_buffer(handle, f_status_) {
|
|
731
578
|
_assertClass(f_status_, RustCallStatus);
|
|
732
|
-
const ret = wasm.
|
|
579
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_rust_buffer(handle, f_status_.__wbg_ptr);
|
|
733
580
|
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
734
581
|
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
735
582
|
return v1;
|
|
736
583
|
}
|
|
737
|
-
exports.
|
|
584
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_rust_buffer = ubrn_ffi_payjoin_ffi_rust_future_complete_rust_buffer;
|
|
738
585
|
|
|
739
586
|
/**
|
|
740
|
-
* @param {bigint}
|
|
587
|
+
* @param {bigint} handle
|
|
741
588
|
* @param {RustCallStatus} f_status_
|
|
742
|
-
* @returns {
|
|
589
|
+
* @returns {number}
|
|
743
590
|
*/
|
|
744
|
-
function
|
|
591
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_u16(handle, f_status_) {
|
|
745
592
|
_assertClass(f_status_, RustCallStatus);
|
|
746
|
-
const ret = wasm.
|
|
747
|
-
|
|
748
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
749
|
-
return v1;
|
|
593
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_u16(handle, f_status_.__wbg_ptr);
|
|
594
|
+
return ret;
|
|
750
595
|
}
|
|
751
|
-
exports.
|
|
596
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_u16 = ubrn_ffi_payjoin_ffi_rust_future_complete_u16;
|
|
752
597
|
|
|
753
598
|
/**
|
|
754
|
-
* @param {bigint}
|
|
599
|
+
* @param {bigint} handle
|
|
755
600
|
* @param {RustCallStatus} f_status_
|
|
756
601
|
* @returns {number}
|
|
757
602
|
*/
|
|
758
|
-
function
|
|
603
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_u32(handle, f_status_) {
|
|
759
604
|
_assertClass(f_status_, RustCallStatus);
|
|
760
|
-
const ret = wasm.
|
|
761
|
-
return ret;
|
|
605
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_u32(handle, f_status_.__wbg_ptr);
|
|
606
|
+
return ret >>> 0;
|
|
762
607
|
}
|
|
763
|
-
exports.
|
|
608
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_u32 = ubrn_ffi_payjoin_ffi_rust_future_complete_u32;
|
|
764
609
|
|
|
765
610
|
/**
|
|
766
|
-
* @param {bigint}
|
|
611
|
+
* @param {bigint} handle
|
|
767
612
|
* @param {RustCallStatus} f_status_
|
|
768
613
|
* @returns {bigint}
|
|
769
614
|
*/
|
|
770
|
-
function
|
|
615
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_u64(handle, f_status_) {
|
|
771
616
|
_assertClass(f_status_, RustCallStatus);
|
|
772
|
-
const ret = wasm.
|
|
617
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_u64(handle, f_status_.__wbg_ptr);
|
|
773
618
|
return BigInt.asUintN(64, ret);
|
|
774
619
|
}
|
|
775
|
-
exports.
|
|
620
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_u64 = ubrn_ffi_payjoin_ffi_rust_future_complete_u64;
|
|
776
621
|
|
|
777
622
|
/**
|
|
778
|
-
* @param {bigint}
|
|
623
|
+
* @param {bigint} handle
|
|
779
624
|
* @param {RustCallStatus} f_status_
|
|
780
|
-
* @returns {
|
|
625
|
+
* @returns {number}
|
|
781
626
|
*/
|
|
782
|
-
function
|
|
627
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_u8(handle, f_status_) {
|
|
783
628
|
_assertClass(f_status_, RustCallStatus);
|
|
784
|
-
const ret = wasm.
|
|
785
|
-
return
|
|
629
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_u8(handle, f_status_.__wbg_ptr);
|
|
630
|
+
return ret;
|
|
786
631
|
}
|
|
787
|
-
exports.
|
|
632
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_u8 = ubrn_ffi_payjoin_ffi_rust_future_complete_u8;
|
|
788
633
|
|
|
789
634
|
/**
|
|
790
|
-
* @param {bigint}
|
|
635
|
+
* @param {bigint} handle
|
|
791
636
|
* @param {RustCallStatus} f_status_
|
|
792
|
-
* @returns {bigint}
|
|
793
637
|
*/
|
|
794
|
-
function
|
|
638
|
+
function ubrn_ffi_payjoin_ffi_rust_future_complete_void(handle, f_status_) {
|
|
795
639
|
_assertClass(f_status_, RustCallStatus);
|
|
796
|
-
|
|
797
|
-
return BigInt.asUintN(64, ret);
|
|
640
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_complete_void(handle, f_status_.__wbg_ptr);
|
|
798
641
|
}
|
|
799
|
-
exports.
|
|
642
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_complete_void = ubrn_ffi_payjoin_ffi_rust_future_complete_void;
|
|
800
643
|
|
|
801
644
|
/**
|
|
802
|
-
* @param {bigint}
|
|
803
|
-
* @param {RustCallStatus} f_status_
|
|
804
|
-
* @returns {bigint}
|
|
645
|
+
* @param {bigint} handle
|
|
805
646
|
*/
|
|
806
|
-
function
|
|
807
|
-
|
|
808
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_feerate_to_sat_per_vb_floor(ptr, f_status_.__wbg_ptr);
|
|
809
|
-
return BigInt.asUintN(64, ret);
|
|
647
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_f32(handle) {
|
|
648
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_f32(handle);
|
|
810
649
|
}
|
|
811
|
-
exports.
|
|
650
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_f32 = ubrn_ffi_payjoin_ffi_rust_future_free_f32;
|
|
812
651
|
|
|
813
652
|
/**
|
|
814
|
-
* @param {bigint}
|
|
815
|
-
* @param {bigint} other
|
|
816
|
-
* @param {RustCallStatus} f_status_
|
|
817
|
-
* @returns {bigint}
|
|
653
|
+
* @param {bigint} handle
|
|
818
654
|
*/
|
|
819
|
-
function
|
|
820
|
-
|
|
821
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_combine(ptr, other, f_status_.__wbg_ptr);
|
|
822
|
-
return BigInt.asUintN(64, ret);
|
|
655
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_f64(handle) {
|
|
656
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_f64(handle);
|
|
823
657
|
}
|
|
824
|
-
exports.
|
|
658
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_f64 = ubrn_ffi_payjoin_ffi_rust_future_free_f64;
|
|
825
659
|
|
|
826
660
|
/**
|
|
827
|
-
* @param {bigint}
|
|
828
|
-
* @param {RustCallStatus} f_status_
|
|
829
|
-
* @returns {bigint}
|
|
661
|
+
* @param {bigint} handle
|
|
830
662
|
*/
|
|
831
|
-
function
|
|
832
|
-
|
|
833
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_extract_tx(ptr, f_status_.__wbg_ptr);
|
|
834
|
-
return BigInt.asUintN(64, ret);
|
|
663
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_i16(handle) {
|
|
664
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_i16(handle);
|
|
835
665
|
}
|
|
836
|
-
exports.
|
|
666
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_i16 = ubrn_ffi_payjoin_ffi_rust_future_free_i16;
|
|
837
667
|
|
|
838
668
|
/**
|
|
839
|
-
* @param {bigint}
|
|
840
|
-
* @param {RustCallStatus} f_status_
|
|
841
|
-
* @returns {bigint}
|
|
669
|
+
* @param {bigint} handle
|
|
842
670
|
*/
|
|
843
|
-
function
|
|
844
|
-
|
|
845
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_fee(ptr, f_status_.__wbg_ptr);
|
|
846
|
-
return BigInt.asUintN(64, ret);
|
|
671
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_i32(handle) {
|
|
672
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_i32(handle);
|
|
847
673
|
}
|
|
848
|
-
exports.
|
|
674
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_i32 = ubrn_ffi_payjoin_ffi_rust_future_free_i32;
|
|
849
675
|
|
|
850
676
|
/**
|
|
851
|
-
* @param {bigint}
|
|
852
|
-
* @param {RustCallStatus} f_status_
|
|
853
|
-
* @returns {Uint8Array}
|
|
677
|
+
* @param {bigint} handle
|
|
854
678
|
*/
|
|
855
|
-
function
|
|
856
|
-
|
|
857
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_serialize(ptr, f_status_.__wbg_ptr);
|
|
858
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
859
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
860
|
-
return v1;
|
|
679
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_i64(handle) {
|
|
680
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_i64(handle);
|
|
861
681
|
}
|
|
862
|
-
exports.
|
|
682
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_i64 = ubrn_ffi_payjoin_ffi_rust_future_free_i64;
|
|
863
683
|
|
|
864
684
|
/**
|
|
865
|
-
* @param {bigint}
|
|
866
|
-
* @param {RustCallStatus} f_status_
|
|
867
|
-
* @returns {Uint8Array}
|
|
685
|
+
* @param {bigint} handle
|
|
868
686
|
*/
|
|
869
|
-
function
|
|
870
|
-
|
|
871
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_serialize_base64(ptr, f_status_.__wbg_ptr);
|
|
872
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
873
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
874
|
-
return v1;
|
|
687
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_i8(handle) {
|
|
688
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_i8(handle);
|
|
875
689
|
}
|
|
876
|
-
exports.
|
|
690
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_i8 = ubrn_ffi_payjoin_ffi_rust_future_free_i8;
|
|
877
691
|
|
|
878
692
|
/**
|
|
879
|
-
* @param {bigint}
|
|
880
|
-
* @param {RustCallStatus} f_status_
|
|
881
|
-
* @returns {Uint8Array}
|
|
693
|
+
* @param {bigint} handle
|
|
882
694
|
*/
|
|
883
|
-
function
|
|
884
|
-
|
|
885
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_psbt_serialize_hex(ptr, f_status_.__wbg_ptr);
|
|
886
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
887
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
888
|
-
return v1;
|
|
695
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_pointer(handle) {
|
|
696
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_pointer(handle);
|
|
889
697
|
}
|
|
890
|
-
exports.
|
|
698
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_pointer = ubrn_ffi_payjoin_ffi_rust_future_free_pointer;
|
|
891
699
|
|
|
892
700
|
/**
|
|
893
|
-
* @param {bigint}
|
|
894
|
-
* @param {RustCallStatus} f_status_
|
|
895
|
-
* @returns {Uint8Array}
|
|
701
|
+
* @param {bigint} handle
|
|
896
702
|
*/
|
|
897
|
-
function
|
|
898
|
-
|
|
899
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_script_to_bytes(ptr, f_status_.__wbg_ptr);
|
|
900
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
901
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
902
|
-
return v1;
|
|
703
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_rust_buffer(handle) {
|
|
704
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_rust_buffer(handle);
|
|
903
705
|
}
|
|
904
|
-
exports.
|
|
706
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_rust_buffer = ubrn_ffi_payjoin_ffi_rust_future_free_rust_buffer;
|
|
905
707
|
|
|
906
708
|
/**
|
|
907
|
-
* @param {bigint}
|
|
908
|
-
* @param {RustCallStatus} f_status_
|
|
909
|
-
* @returns {Uint8Array}
|
|
709
|
+
* @param {bigint} handle
|
|
910
710
|
*/
|
|
911
|
-
function
|
|
912
|
-
|
|
913
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_compute_txid(ptr, f_status_.__wbg_ptr);
|
|
914
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
915
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
916
|
-
return v1;
|
|
711
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_u16(handle) {
|
|
712
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_u16(handle);
|
|
917
713
|
}
|
|
918
|
-
exports.
|
|
714
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_u16 = ubrn_ffi_payjoin_ffi_rust_future_free_u16;
|
|
919
715
|
|
|
920
716
|
/**
|
|
921
|
-
* @param {bigint}
|
|
922
|
-
* @param {RustCallStatus} f_status_
|
|
923
|
-
* @returns {Uint8Array}
|
|
717
|
+
* @param {bigint} handle
|
|
924
718
|
*/
|
|
925
|
-
function
|
|
926
|
-
|
|
927
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_input(ptr, f_status_.__wbg_ptr);
|
|
928
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
929
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
930
|
-
return v1;
|
|
719
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_u32(handle) {
|
|
720
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_u32(handle);
|
|
931
721
|
}
|
|
932
|
-
exports.
|
|
722
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_u32 = ubrn_ffi_payjoin_ffi_rust_future_free_u32;
|
|
933
723
|
|
|
934
724
|
/**
|
|
935
|
-
* @param {bigint}
|
|
936
|
-
* @param {RustCallStatus} f_status_
|
|
937
|
-
* @returns {number}
|
|
725
|
+
* @param {bigint} handle
|
|
938
726
|
*/
|
|
939
|
-
function
|
|
940
|
-
|
|
941
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_is_coinbase(ptr, f_status_.__wbg_ptr);
|
|
942
|
-
return ret;
|
|
727
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_u64(handle) {
|
|
728
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_u64(handle);
|
|
943
729
|
}
|
|
944
|
-
exports.
|
|
730
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_u64 = ubrn_ffi_payjoin_ffi_rust_future_free_u64;
|
|
945
731
|
|
|
946
732
|
/**
|
|
947
|
-
* @param {bigint}
|
|
948
|
-
* @param {RustCallStatus} f_status_
|
|
949
|
-
* @returns {number}
|
|
733
|
+
* @param {bigint} handle
|
|
950
734
|
*/
|
|
951
|
-
function
|
|
952
|
-
|
|
953
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_is_explicitly_rbf(ptr, f_status_.__wbg_ptr);
|
|
954
|
-
return ret;
|
|
735
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_u8(handle) {
|
|
736
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_u8(handle);
|
|
955
737
|
}
|
|
956
|
-
exports.
|
|
738
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_u8 = ubrn_ffi_payjoin_ffi_rust_future_free_u8;
|
|
957
739
|
|
|
958
740
|
/**
|
|
959
|
-
* @param {bigint}
|
|
960
|
-
* @param {RustCallStatus} f_status_
|
|
961
|
-
* @returns {number}
|
|
741
|
+
* @param {bigint} handle
|
|
962
742
|
*/
|
|
963
|
-
function
|
|
964
|
-
|
|
965
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_is_lock_time_enabled(ptr, f_status_.__wbg_ptr);
|
|
966
|
-
return ret;
|
|
743
|
+
function ubrn_ffi_payjoin_ffi_rust_future_free_void(handle) {
|
|
744
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_free_void(handle);
|
|
967
745
|
}
|
|
968
|
-
exports.
|
|
746
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_free_void = ubrn_ffi_payjoin_ffi_rust_future_free_void;
|
|
969
747
|
|
|
970
748
|
/**
|
|
971
|
-
* @param {bigint}
|
|
972
|
-
* @param {
|
|
973
|
-
* @
|
|
749
|
+
* @param {bigint} handle
|
|
750
|
+
* @param {any} callback
|
|
751
|
+
* @param {bigint} callback_data
|
|
974
752
|
*/
|
|
975
|
-
function
|
|
976
|
-
|
|
977
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_lock_time(ptr, f_status_.__wbg_ptr);
|
|
978
|
-
return ret >>> 0;
|
|
753
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_f32(handle, callback, callback_data) {
|
|
754
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_f32(handle, callback, callback_data);
|
|
979
755
|
}
|
|
980
|
-
exports.
|
|
756
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_f32 = ubrn_ffi_payjoin_ffi_rust_future_poll_f32;
|
|
981
757
|
|
|
982
758
|
/**
|
|
983
|
-
* @param {bigint}
|
|
984
|
-
* @param {
|
|
985
|
-
* @
|
|
759
|
+
* @param {bigint} handle
|
|
760
|
+
* @param {any} callback
|
|
761
|
+
* @param {bigint} callback_data
|
|
986
762
|
*/
|
|
987
|
-
function
|
|
988
|
-
|
|
989
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_output(ptr, f_status_.__wbg_ptr);
|
|
990
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
991
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
992
|
-
return v1;
|
|
763
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_f64(handle, callback, callback_data) {
|
|
764
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_f64(handle, callback, callback_data);
|
|
993
765
|
}
|
|
994
|
-
exports.
|
|
766
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_f64 = ubrn_ffi_payjoin_ffi_rust_future_poll_f64;
|
|
995
767
|
|
|
996
768
|
/**
|
|
997
|
-
* @param {bigint}
|
|
998
|
-
* @param {
|
|
999
|
-
* @
|
|
769
|
+
* @param {bigint} handle
|
|
770
|
+
* @param {any} callback
|
|
771
|
+
* @param {bigint} callback_data
|
|
1000
772
|
*/
|
|
1001
|
-
function
|
|
1002
|
-
|
|
1003
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_serialize(ptr, f_status_.__wbg_ptr);
|
|
1004
|
-
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
1005
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
1006
|
-
return v1;
|
|
773
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_i16(handle, callback, callback_data) {
|
|
774
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_i16(handle, callback, callback_data);
|
|
1007
775
|
}
|
|
1008
|
-
exports.
|
|
776
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_i16 = ubrn_ffi_payjoin_ffi_rust_future_poll_i16;
|
|
1009
777
|
|
|
1010
778
|
/**
|
|
1011
|
-
* @param {bigint}
|
|
1012
|
-
* @param {
|
|
1013
|
-
* @
|
|
779
|
+
* @param {bigint} handle
|
|
780
|
+
* @param {any} callback
|
|
781
|
+
* @param {bigint} callback_data
|
|
1014
782
|
*/
|
|
1015
|
-
function
|
|
1016
|
-
|
|
1017
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_total_size(ptr, f_status_.__wbg_ptr);
|
|
1018
|
-
return BigInt.asUintN(64, ret);
|
|
783
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_i32(handle, callback, callback_data) {
|
|
784
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_i32(handle, callback, callback_data);
|
|
1019
785
|
}
|
|
1020
|
-
exports.
|
|
786
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_i32 = ubrn_ffi_payjoin_ffi_rust_future_poll_i32;
|
|
1021
787
|
|
|
1022
788
|
/**
|
|
1023
|
-
* @param {bigint}
|
|
1024
|
-
* @param {
|
|
1025
|
-
* @
|
|
789
|
+
* @param {bigint} handle
|
|
790
|
+
* @param {any} callback
|
|
791
|
+
* @param {bigint} callback_data
|
|
1026
792
|
*/
|
|
1027
|
-
function
|
|
1028
|
-
|
|
1029
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_version(ptr, f_status_.__wbg_ptr);
|
|
1030
|
-
return ret;
|
|
793
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_i64(handle, callback, callback_data) {
|
|
794
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_i64(handle, callback, callback_data);
|
|
1031
795
|
}
|
|
1032
|
-
exports.
|
|
796
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_i64 = ubrn_ffi_payjoin_ffi_rust_future_poll_i64;
|
|
1033
797
|
|
|
1034
798
|
/**
|
|
1035
|
-
* @param {bigint}
|
|
1036
|
-
* @param {
|
|
1037
|
-
* @
|
|
799
|
+
* @param {bigint} handle
|
|
800
|
+
* @param {any} callback
|
|
801
|
+
* @param {bigint} callback_data
|
|
1038
802
|
*/
|
|
1039
|
-
function
|
|
1040
|
-
|
|
1041
|
-
const ret = wasm.ubrn_uniffi_bitcoin_ffi_fn_method_transaction_vsize(ptr, f_status_.__wbg_ptr);
|
|
1042
|
-
return BigInt.asUintN(64, ret);
|
|
803
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_i8(handle, callback, callback_data) {
|
|
804
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_i8(handle, callback, callback_data);
|
|
1043
805
|
}
|
|
1044
|
-
exports.
|
|
806
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_i8 = ubrn_ffi_payjoin_ffi_rust_future_poll_i8;
|
|
1045
807
|
|
|
1046
808
|
/**
|
|
1047
|
-
* @param {bigint}
|
|
1048
|
-
* @param {
|
|
1049
|
-
* @
|
|
809
|
+
* @param {bigint} handle
|
|
810
|
+
* @param {any} callback
|
|
811
|
+
* @param {bigint} callback_data
|
|
1050
812
|
*/
|
|
1051
|
-
function
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
813
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_pointer(handle, callback, callback_data) {
|
|
814
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_pointer(handle, callback, callback_data);
|
|
815
|
+
}
|
|
816
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_pointer = ubrn_ffi_payjoin_ffi_rust_future_poll_pointer;
|
|
817
|
+
|
|
818
|
+
/**
|
|
819
|
+
* @param {bigint} handle
|
|
820
|
+
* @param {any} callback
|
|
821
|
+
* @param {bigint} callback_data
|
|
822
|
+
*/
|
|
823
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_rust_buffer(handle, callback, callback_data) {
|
|
824
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_rust_buffer(handle, callback, callback_data);
|
|
825
|
+
}
|
|
826
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_rust_buffer = ubrn_ffi_payjoin_ffi_rust_future_poll_rust_buffer;
|
|
827
|
+
|
|
828
|
+
/**
|
|
829
|
+
* @param {bigint} handle
|
|
830
|
+
* @param {any} callback
|
|
831
|
+
* @param {bigint} callback_data
|
|
832
|
+
*/
|
|
833
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_u16(handle, callback, callback_data) {
|
|
834
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_u16(handle, callback, callback_data);
|
|
835
|
+
}
|
|
836
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_u16 = ubrn_ffi_payjoin_ffi_rust_future_poll_u16;
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* @param {bigint} handle
|
|
840
|
+
* @param {any} callback
|
|
841
|
+
* @param {bigint} callback_data
|
|
842
|
+
*/
|
|
843
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_u32(handle, callback, callback_data) {
|
|
844
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_u32(handle, callback, callback_data);
|
|
845
|
+
}
|
|
846
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_u32 = ubrn_ffi_payjoin_ffi_rust_future_poll_u32;
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* @param {bigint} handle
|
|
850
|
+
* @param {any} callback
|
|
851
|
+
* @param {bigint} callback_data
|
|
852
|
+
*/
|
|
853
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_u64(handle, callback, callback_data) {
|
|
854
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_u64(handle, callback, callback_data);
|
|
855
|
+
}
|
|
856
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_u64 = ubrn_ffi_payjoin_ffi_rust_future_poll_u64;
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* @param {bigint} handle
|
|
860
|
+
* @param {any} callback
|
|
861
|
+
* @param {bigint} callback_data
|
|
862
|
+
*/
|
|
863
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_u8(handle, callback, callback_data) {
|
|
864
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_u8(handle, callback, callback_data);
|
|
865
|
+
}
|
|
866
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_u8 = ubrn_ffi_payjoin_ffi_rust_future_poll_u8;
|
|
867
|
+
|
|
868
|
+
/**
|
|
869
|
+
* @param {bigint} handle
|
|
870
|
+
* @param {any} callback
|
|
871
|
+
* @param {bigint} callback_data
|
|
872
|
+
*/
|
|
873
|
+
function ubrn_ffi_payjoin_ffi_rust_future_poll_void(handle, callback, callback_data) {
|
|
874
|
+
wasm.ubrn_ffi_payjoin_ffi_rust_future_poll_void(handle, callback, callback_data);
|
|
875
|
+
}
|
|
876
|
+
exports.ubrn_ffi_payjoin_ffi_rust_future_poll_void = ubrn_ffi_payjoin_ffi_rust_future_poll_void;
|
|
877
|
+
|
|
878
|
+
/**
|
|
879
|
+
* @returns {number}
|
|
880
|
+
*/
|
|
881
|
+
function ubrn_ffi_payjoin_ffi_uniffi_contract_version() {
|
|
882
|
+
const ret = wasm.ubrn_ffi_payjoin_ffi_uniffi_contract_version();
|
|
883
|
+
return ret >>> 0;
|
|
1055
884
|
}
|
|
1056
|
-
exports.
|
|
885
|
+
exports.ubrn_ffi_payjoin_ffi_uniffi_contract_version = ubrn_ffi_payjoin_ffi_uniffi_contract_version;
|
|
1057
886
|
|
|
1058
887
|
/**
|
|
1059
888
|
* @returns {number}
|
|
@@ -1136,6 +965,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log() {
|
|
|
1136
965
|
}
|
|
1137
966
|
exports.ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log = ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log;
|
|
1138
967
|
|
|
968
|
+
/**
|
|
969
|
+
* @returns {number}
|
|
970
|
+
*/
|
|
971
|
+
function ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log_async() {
|
|
972
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log_async();
|
|
973
|
+
return ret;
|
|
974
|
+
}
|
|
975
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log_async = ubrn_uniffi_payjoin_ffi_checksum_func_replay_receiver_event_log_async;
|
|
976
|
+
|
|
1139
977
|
/**
|
|
1140
978
|
* @returns {number}
|
|
1141
979
|
*/
|
|
@@ -1145,6 +983,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log() {
|
|
|
1145
983
|
}
|
|
1146
984
|
exports.ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log = ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log;
|
|
1147
985
|
|
|
986
|
+
/**
|
|
987
|
+
* @returns {number}
|
|
988
|
+
*/
|
|
989
|
+
function ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log_async() {
|
|
990
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log_async();
|
|
991
|
+
return ret;
|
|
992
|
+
}
|
|
993
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log_async = ubrn_uniffi_payjoin_ffi_checksum_func_replay_sender_event_log_async;
|
|
994
|
+
|
|
1148
995
|
/**
|
|
1149
996
|
* @returns {number}
|
|
1150
997
|
*/
|
|
@@ -1154,6 +1001,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_sav
|
|
|
1154
1001
|
}
|
|
1155
1002
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save;
|
|
1156
1003
|
|
|
1004
|
+
/**
|
|
1005
|
+
* @returns {number}
|
|
1006
|
+
*/
|
|
1007
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save_async() {
|
|
1008
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save_async();
|
|
1009
|
+
return ret;
|
|
1010
|
+
}
|
|
1011
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_assumeinteractivetransition_save_async;
|
|
1012
|
+
|
|
1157
1013
|
/**
|
|
1158
1014
|
* @returns {number}
|
|
1159
1015
|
*/
|
|
@@ -1163,6 +1019,33 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_canbroadcast_callback() {
|
|
|
1163
1019
|
}
|
|
1164
1020
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_canbroadcast_callback = ubrn_uniffi_payjoin_ffi_checksum_method_canbroadcast_callback;
|
|
1165
1021
|
|
|
1022
|
+
/**
|
|
1023
|
+
* @returns {number}
|
|
1024
|
+
*/
|
|
1025
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save() {
|
|
1026
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save();
|
|
1027
|
+
return ret;
|
|
1028
|
+
}
|
|
1029
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save;
|
|
1030
|
+
|
|
1031
|
+
/**
|
|
1032
|
+
* @returns {number}
|
|
1033
|
+
*/
|
|
1034
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save_async() {
|
|
1035
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save_async();
|
|
1036
|
+
return ret;
|
|
1037
|
+
}
|
|
1038
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_canceltransition_save_async;
|
|
1039
|
+
|
|
1040
|
+
/**
|
|
1041
|
+
* @returns {number}
|
|
1042
|
+
*/
|
|
1043
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_cancel() {
|
|
1044
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_cancel();
|
|
1045
|
+
return ret;
|
|
1046
|
+
}
|
|
1047
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_cancel;
|
|
1048
|
+
|
|
1166
1049
|
/**
|
|
1167
1050
|
* @returns {number}
|
|
1168
1051
|
*/
|
|
@@ -1175,20 +1058,38 @@ exports.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_create_error_r
|
|
|
1175
1058
|
/**
|
|
1176
1059
|
* @returns {number}
|
|
1177
1060
|
*/
|
|
1178
|
-
function ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response() {
|
|
1179
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response();
|
|
1061
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response() {
|
|
1062
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response();
|
|
1063
|
+
return ret;
|
|
1064
|
+
}
|
|
1065
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response = ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerror_process_error_response;
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* @returns {number}
|
|
1069
|
+
*/
|
|
1070
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save() {
|
|
1071
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save();
|
|
1072
|
+
return ret;
|
|
1073
|
+
}
|
|
1074
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save;
|
|
1075
|
+
|
|
1076
|
+
/**
|
|
1077
|
+
* @returns {number}
|
|
1078
|
+
*/
|
|
1079
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save_async() {
|
|
1080
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save_async();
|
|
1180
1081
|
return ret;
|
|
1181
1082
|
}
|
|
1182
|
-
exports.
|
|
1083
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_hasreplyableerrortransition_save_async;
|
|
1183
1084
|
|
|
1184
1085
|
/**
|
|
1185
1086
|
* @returns {number}
|
|
1186
1087
|
*/
|
|
1187
|
-
function
|
|
1188
|
-
const ret = wasm.
|
|
1088
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_initialized_cancel() {
|
|
1089
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_initialized_cancel();
|
|
1189
1090
|
return ret;
|
|
1190
1091
|
}
|
|
1191
|
-
exports.
|
|
1092
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initialized_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_initialized_cancel;
|
|
1192
1093
|
|
|
1193
1094
|
/**
|
|
1194
1095
|
* @returns {number}
|
|
@@ -1226,6 +1127,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save() {
|
|
|
1226
1127
|
}
|
|
1227
1128
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save;
|
|
1228
1129
|
|
|
1130
|
+
/**
|
|
1131
|
+
* @returns {number}
|
|
1132
|
+
*/
|
|
1133
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save_async() {
|
|
1134
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save_async();
|
|
1135
|
+
return ret;
|
|
1136
|
+
}
|
|
1137
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_initializedtransition_save_async;
|
|
1138
|
+
|
|
1229
1139
|
/**
|
|
1230
1140
|
* @returns {number}
|
|
1231
1141
|
*/
|
|
@@ -1235,6 +1145,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save()
|
|
|
1235
1145
|
}
|
|
1236
1146
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save;
|
|
1237
1147
|
|
|
1148
|
+
/**
|
|
1149
|
+
* @returns {number}
|
|
1150
|
+
*/
|
|
1151
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save_async() {
|
|
1152
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save_async();
|
|
1153
|
+
return ret;
|
|
1154
|
+
}
|
|
1155
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_initialreceivetransition_save_async;
|
|
1156
|
+
|
|
1238
1157
|
/**
|
|
1239
1158
|
* @returns {number}
|
|
1240
1159
|
*/
|
|
@@ -1244,6 +1163,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save() {
|
|
|
1244
1163
|
}
|
|
1245
1164
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save;
|
|
1246
1165
|
|
|
1166
|
+
/**
|
|
1167
|
+
* @returns {number}
|
|
1168
|
+
*/
|
|
1169
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save_async() {
|
|
1170
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save_async();
|
|
1171
|
+
return ret;
|
|
1172
|
+
}
|
|
1173
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_initialsendtransition_save_async;
|
|
1174
|
+
|
|
1247
1175
|
/**
|
|
1248
1176
|
* @returns {number}
|
|
1249
1177
|
*/
|
|
@@ -1289,6 +1217,33 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersister_sa
|
|
|
1289
1217
|
}
|
|
1290
1218
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersister_save = ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersister_save;
|
|
1291
1219
|
|
|
1220
|
+
/**
|
|
1221
|
+
* @returns {number}
|
|
1222
|
+
*/
|
|
1223
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_close() {
|
|
1224
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_close();
|
|
1225
|
+
return ret;
|
|
1226
|
+
}
|
|
1227
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_close = ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_close;
|
|
1228
|
+
|
|
1229
|
+
/**
|
|
1230
|
+
* @returns {number}
|
|
1231
|
+
*/
|
|
1232
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_load() {
|
|
1233
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_load();
|
|
1234
|
+
return ret;
|
|
1235
|
+
}
|
|
1236
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_load = ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_load;
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* @returns {number}
|
|
1240
|
+
*/
|
|
1241
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_save() {
|
|
1242
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_save();
|
|
1243
|
+
return ret;
|
|
1244
|
+
}
|
|
1245
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_save = ubrn_uniffi_payjoin_ffi_checksum_method_jsonreceiversessionpersisterasync_save;
|
|
1246
|
+
|
|
1292
1247
|
/**
|
|
1293
1248
|
* @returns {number}
|
|
1294
1249
|
*/
|
|
@@ -1316,6 +1271,42 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersister_save
|
|
|
1316
1271
|
}
|
|
1317
1272
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersister_save = ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersister_save;
|
|
1318
1273
|
|
|
1274
|
+
/**
|
|
1275
|
+
* @returns {number}
|
|
1276
|
+
*/
|
|
1277
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_close() {
|
|
1278
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_close();
|
|
1279
|
+
return ret;
|
|
1280
|
+
}
|
|
1281
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_close = ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_close;
|
|
1282
|
+
|
|
1283
|
+
/**
|
|
1284
|
+
* @returns {number}
|
|
1285
|
+
*/
|
|
1286
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_load() {
|
|
1287
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_load();
|
|
1288
|
+
return ret;
|
|
1289
|
+
}
|
|
1290
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_load = ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_load;
|
|
1291
|
+
|
|
1292
|
+
/**
|
|
1293
|
+
* @returns {number}
|
|
1294
|
+
*/
|
|
1295
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_save() {
|
|
1296
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_save();
|
|
1297
|
+
return ret;
|
|
1298
|
+
}
|
|
1299
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_save = ubrn_uniffi_payjoin_ffi_checksum_method_jsonsendersessionpersisterasync_save;
|
|
1300
|
+
|
|
1301
|
+
/**
|
|
1302
|
+
* @returns {number}
|
|
1303
|
+
*/
|
|
1304
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsowned_cancel() {
|
|
1305
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsowned_cancel();
|
|
1306
|
+
return ret;
|
|
1307
|
+
}
|
|
1308
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsowned_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsowned_cancel;
|
|
1309
|
+
|
|
1319
1310
|
/**
|
|
1320
1311
|
* @returns {number}
|
|
1321
1312
|
*/
|
|
@@ -1343,6 +1334,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save
|
|
|
1343
1334
|
}
|
|
1344
1335
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save;
|
|
1345
1336
|
|
|
1337
|
+
/**
|
|
1338
|
+
* @returns {number}
|
|
1339
|
+
*/
|
|
1340
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save_async() {
|
|
1341
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save_async();
|
|
1342
|
+
return ret;
|
|
1343
|
+
}
|
|
1344
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsownedtransition_save_async;
|
|
1345
|
+
|
|
1346
|
+
/**
|
|
1347
|
+
* @returns {number}
|
|
1348
|
+
*/
|
|
1349
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseen_cancel() {
|
|
1350
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseen_cancel();
|
|
1351
|
+
return ret;
|
|
1352
|
+
}
|
|
1353
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseen_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseen_cancel;
|
|
1354
|
+
|
|
1346
1355
|
/**
|
|
1347
1356
|
* @returns {number}
|
|
1348
1357
|
*/
|
|
@@ -1361,6 +1370,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save(
|
|
|
1361
1370
|
}
|
|
1362
1371
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save;
|
|
1363
1372
|
|
|
1373
|
+
/**
|
|
1374
|
+
* @returns {number}
|
|
1375
|
+
*/
|
|
1376
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save_async() {
|
|
1377
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save_async();
|
|
1378
|
+
return ret;
|
|
1379
|
+
}
|
|
1380
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_maybeinputsseentransition_save_async;
|
|
1381
|
+
|
|
1382
|
+
/**
|
|
1383
|
+
* @returns {number}
|
|
1384
|
+
*/
|
|
1385
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_monitor_cancel() {
|
|
1386
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_monitor_cancel();
|
|
1387
|
+
return ret;
|
|
1388
|
+
}
|
|
1389
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_monitor_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_monitor_cancel;
|
|
1390
|
+
|
|
1364
1391
|
/**
|
|
1365
1392
|
* @returns {number}
|
|
1366
1393
|
*/
|
|
@@ -1382,11 +1409,20 @@ exports.ubrn_uniffi_payjoin_ffi_checksum_method_monitortransition_save = ubrn_un
|
|
|
1382
1409
|
/**
|
|
1383
1410
|
* @returns {number}
|
|
1384
1411
|
*/
|
|
1385
|
-
function
|
|
1386
|
-
const ret = wasm.
|
|
1412
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_monitortransition_save_async() {
|
|
1413
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_monitortransition_save_async();
|
|
1414
|
+
return ret;
|
|
1415
|
+
}
|
|
1416
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_monitortransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_monitortransition_save_async;
|
|
1417
|
+
|
|
1418
|
+
/**
|
|
1419
|
+
* @returns {number}
|
|
1420
|
+
*/
|
|
1421
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknown_cancel() {
|
|
1422
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknown_cancel();
|
|
1387
1423
|
return ret;
|
|
1388
1424
|
}
|
|
1389
|
-
exports.
|
|
1425
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknown_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknown_cancel;
|
|
1390
1426
|
|
|
1391
1427
|
/**
|
|
1392
1428
|
* @returns {number}
|
|
@@ -1406,6 +1442,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save()
|
|
|
1406
1442
|
}
|
|
1407
1443
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save;
|
|
1408
1444
|
|
|
1445
|
+
/**
|
|
1446
|
+
* @returns {number}
|
|
1447
|
+
*/
|
|
1448
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save_async() {
|
|
1449
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save_async();
|
|
1450
|
+
return ret;
|
|
1451
|
+
}
|
|
1452
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_outputsunknowntransition_save_async;
|
|
1453
|
+
|
|
1454
|
+
/**
|
|
1455
|
+
* @returns {number}
|
|
1456
|
+
*/
|
|
1457
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposal_cancel() {
|
|
1458
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposal_cancel();
|
|
1459
|
+
return ret;
|
|
1460
|
+
}
|
|
1461
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposal_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposal_cancel;
|
|
1462
|
+
|
|
1409
1463
|
/**
|
|
1410
1464
|
* @returns {number}
|
|
1411
1465
|
*/
|
|
@@ -1451,6 +1505,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save(
|
|
|
1451
1505
|
}
|
|
1452
1506
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save;
|
|
1453
1507
|
|
|
1508
|
+
/**
|
|
1509
|
+
* @returns {number}
|
|
1510
|
+
*/
|
|
1511
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save_async() {
|
|
1512
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save_async();
|
|
1513
|
+
return ret;
|
|
1514
|
+
}
|
|
1515
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_payjoinproposaltransition_save_async;
|
|
1516
|
+
|
|
1454
1517
|
/**
|
|
1455
1518
|
* @returns {number}
|
|
1456
1519
|
*/
|
|
@@ -1496,6 +1559,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_pjuri_set_amount_sats() {
|
|
|
1496
1559
|
}
|
|
1497
1560
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_pjuri_set_amount_sats = ubrn_uniffi_payjoin_ffi_checksum_method_pjuri_set_amount_sats;
|
|
1498
1561
|
|
|
1562
|
+
/**
|
|
1563
|
+
* @returns {number}
|
|
1564
|
+
*/
|
|
1565
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposal_cancel() {
|
|
1566
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposal_cancel();
|
|
1567
|
+
return ret;
|
|
1568
|
+
}
|
|
1569
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposal_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposal_cancel;
|
|
1570
|
+
|
|
1499
1571
|
/**
|
|
1500
1572
|
* @returns {number}
|
|
1501
1573
|
*/
|
|
@@ -1523,6 +1595,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_sa
|
|
|
1523
1595
|
}
|
|
1524
1596
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save;
|
|
1525
1597
|
|
|
1598
|
+
/**
|
|
1599
|
+
* @returns {number}
|
|
1600
|
+
*/
|
|
1601
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save_async() {
|
|
1602
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save_async();
|
|
1603
|
+
return ret;
|
|
1604
|
+
}
|
|
1605
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_pollingforproposaltransition_save_async;
|
|
1606
|
+
|
|
1526
1607
|
/**
|
|
1527
1608
|
* @returns {number}
|
|
1528
1609
|
*/
|
|
@@ -1532,6 +1613,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_processpsbt_callback() {
|
|
|
1532
1613
|
}
|
|
1533
1614
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_processpsbt_callback = ubrn_uniffi_payjoin_ffi_checksum_method_processpsbt_callback;
|
|
1534
1615
|
|
|
1616
|
+
/**
|
|
1617
|
+
* @returns {number}
|
|
1618
|
+
*/
|
|
1619
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposal_cancel() {
|
|
1620
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposal_cancel();
|
|
1621
|
+
return ret;
|
|
1622
|
+
}
|
|
1623
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposal_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposal_cancel;
|
|
1624
|
+
|
|
1535
1625
|
/**
|
|
1536
1626
|
* @returns {number}
|
|
1537
1627
|
*/
|
|
@@ -1559,6 +1649,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_s
|
|
|
1559
1649
|
}
|
|
1560
1650
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save;
|
|
1561
1651
|
|
|
1652
|
+
/**
|
|
1653
|
+
* @returns {number}
|
|
1654
|
+
*/
|
|
1655
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save_async() {
|
|
1656
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save_async();
|
|
1657
|
+
return ret;
|
|
1658
|
+
}
|
|
1659
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_provisionalproposaltransition_save_async;
|
|
1660
|
+
|
|
1562
1661
|
/**
|
|
1563
1662
|
* @returns {number}
|
|
1564
1663
|
*/
|
|
@@ -1685,6 +1784,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_senderbuilder_build_with_additi
|
|
|
1685
1784
|
}
|
|
1686
1785
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_senderbuilder_build_with_additional_fee = ubrn_uniffi_payjoin_ffi_checksum_method_senderbuilder_build_with_additional_fee;
|
|
1687
1786
|
|
|
1787
|
+
/**
|
|
1788
|
+
* @returns {number}
|
|
1789
|
+
*/
|
|
1790
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save() {
|
|
1791
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save();
|
|
1792
|
+
return ret;
|
|
1793
|
+
}
|
|
1794
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save;
|
|
1795
|
+
|
|
1796
|
+
/**
|
|
1797
|
+
* @returns {number}
|
|
1798
|
+
*/
|
|
1799
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save_async() {
|
|
1800
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save_async();
|
|
1801
|
+
return ret;
|
|
1802
|
+
}
|
|
1803
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_sendercanceltransition_save_async;
|
|
1804
|
+
|
|
1688
1805
|
/**
|
|
1689
1806
|
* @returns {number}
|
|
1690
1807
|
*/
|
|
@@ -1739,6 +1856,42 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionhistory_status() {
|
|
|
1739
1856
|
}
|
|
1740
1857
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionhistory_status = ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionhistory_status;
|
|
1741
1858
|
|
|
1859
|
+
/**
|
|
1860
|
+
* @returns {number}
|
|
1861
|
+
*/
|
|
1862
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_cancelled() {
|
|
1863
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_cancelled();
|
|
1864
|
+
return ret;
|
|
1865
|
+
}
|
|
1866
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_cancelled = ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_cancelled;
|
|
1867
|
+
|
|
1868
|
+
/**
|
|
1869
|
+
* @returns {number}
|
|
1870
|
+
*/
|
|
1871
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_failure() {
|
|
1872
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_failure();
|
|
1873
|
+
return ret;
|
|
1874
|
+
}
|
|
1875
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_failure = ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_failure;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* @returns {number}
|
|
1879
|
+
*/
|
|
1880
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_success() {
|
|
1881
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_success();
|
|
1882
|
+
return ret;
|
|
1883
|
+
}
|
|
1884
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_success = ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_is_success;
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* @returns {number}
|
|
1888
|
+
*/
|
|
1889
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_success_psbt_base64() {
|
|
1890
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_success_psbt_base64();
|
|
1891
|
+
return ret;
|
|
1892
|
+
}
|
|
1893
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_success_psbt_base64 = ubrn_uniffi_payjoin_ffi_checksum_method_sendersessionoutcome_success_psbt_base64;
|
|
1894
|
+
|
|
1742
1895
|
/**
|
|
1743
1896
|
* @returns {number}
|
|
1744
1897
|
*/
|
|
@@ -1757,6 +1910,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_assume
|
|
|
1757
1910
|
}
|
|
1758
1911
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_assume_interactive_receiver = ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_assume_interactive_receiver;
|
|
1759
1912
|
|
|
1913
|
+
/**
|
|
1914
|
+
* @returns {number}
|
|
1915
|
+
*/
|
|
1916
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_cancel() {
|
|
1917
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_cancel();
|
|
1918
|
+
return ret;
|
|
1919
|
+
}
|
|
1920
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayload_cancel;
|
|
1921
|
+
|
|
1760
1922
|
/**
|
|
1761
1923
|
* @returns {number}
|
|
1762
1924
|
*/
|
|
@@ -1775,6 +1937,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransit
|
|
|
1775
1937
|
}
|
|
1776
1938
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save;
|
|
1777
1939
|
|
|
1940
|
+
/**
|
|
1941
|
+
* @returns {number}
|
|
1942
|
+
*/
|
|
1943
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save_async() {
|
|
1944
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save_async();
|
|
1945
|
+
return ret;
|
|
1946
|
+
}
|
|
1947
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_uncheckedoriginalpayloadtransition_save_async;
|
|
1948
|
+
|
|
1778
1949
|
/**
|
|
1779
1950
|
* @returns {number}
|
|
1780
1951
|
*/
|
|
@@ -1865,6 +2036,15 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_apply_fee_range()
|
|
|
1865
2036
|
}
|
|
1866
2037
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_apply_fee_range = ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_apply_fee_range;
|
|
1867
2038
|
|
|
2039
|
+
/**
|
|
2040
|
+
* @returns {number}
|
|
2041
|
+
*/
|
|
2042
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_cancel() {
|
|
2043
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_cancel();
|
|
2044
|
+
return ret;
|
|
2045
|
+
}
|
|
2046
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerange_cancel;
|
|
2047
|
+
|
|
1868
2048
|
/**
|
|
1869
2049
|
* @returns {number}
|
|
1870
2050
|
*/
|
|
@@ -1874,6 +2054,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save()
|
|
|
1874
2054
|
}
|
|
1875
2055
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save;
|
|
1876
2056
|
|
|
2057
|
+
/**
|
|
2058
|
+
* @returns {number}
|
|
2059
|
+
*/
|
|
2060
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save_async() {
|
|
2061
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save_async();
|
|
2062
|
+
return ret;
|
|
2063
|
+
}
|
|
2064
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_wantsfeerangetransition_save_async;
|
|
2065
|
+
|
|
2066
|
+
/**
|
|
2067
|
+
* @returns {number}
|
|
2068
|
+
*/
|
|
2069
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputs_cancel() {
|
|
2070
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputs_cancel();
|
|
2071
|
+
return ret;
|
|
2072
|
+
}
|
|
2073
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputs_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputs_cancel;
|
|
2074
|
+
|
|
1877
2075
|
/**
|
|
1878
2076
|
* @returns {number}
|
|
1879
2077
|
*/
|
|
@@ -1910,6 +2108,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save() {
|
|
|
1910
2108
|
}
|
|
1911
2109
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save;
|
|
1912
2110
|
|
|
2111
|
+
/**
|
|
2112
|
+
* @returns {number}
|
|
2113
|
+
*/
|
|
2114
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save_async() {
|
|
2115
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save_async();
|
|
2116
|
+
return ret;
|
|
2117
|
+
}
|
|
2118
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_wantsinputstransition_save_async;
|
|
2119
|
+
|
|
2120
|
+
/**
|
|
2121
|
+
* @returns {number}
|
|
2122
|
+
*/
|
|
2123
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputs_cancel() {
|
|
2124
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputs_cancel();
|
|
2125
|
+
return ret;
|
|
2126
|
+
}
|
|
2127
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputs_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputs_cancel;
|
|
2128
|
+
|
|
1913
2129
|
/**
|
|
1914
2130
|
* @returns {number}
|
|
1915
2131
|
*/
|
|
@@ -1955,6 +2171,24 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save() {
|
|
|
1955
2171
|
}
|
|
1956
2172
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save;
|
|
1957
2173
|
|
|
2174
|
+
/**
|
|
2175
|
+
* @returns {number}
|
|
2176
|
+
*/
|
|
2177
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save_async() {
|
|
2178
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save_async();
|
|
2179
|
+
return ret;
|
|
2180
|
+
}
|
|
2181
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_wantsoutputstransition_save_async;
|
|
2182
|
+
|
|
2183
|
+
/**
|
|
2184
|
+
* @returns {number}
|
|
2185
|
+
*/
|
|
2186
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_withreplykey_cancel() {
|
|
2187
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_withreplykey_cancel();
|
|
2188
|
+
return ret;
|
|
2189
|
+
}
|
|
2190
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_withreplykey_cancel = ubrn_uniffi_payjoin_ffi_checksum_method_withreplykey_cancel;
|
|
2191
|
+
|
|
1958
2192
|
/**
|
|
1959
2193
|
* @returns {number}
|
|
1960
2194
|
*/
|
|
@@ -1982,6 +2216,27 @@ function ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save() {
|
|
|
1982
2216
|
}
|
|
1983
2217
|
exports.ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save = ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save;
|
|
1984
2218
|
|
|
2219
|
+
/**
|
|
2220
|
+
* @returns {number}
|
|
2221
|
+
*/
|
|
2222
|
+
function ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save_async() {
|
|
2223
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save_async();
|
|
2224
|
+
return ret;
|
|
2225
|
+
}
|
|
2226
|
+
exports.ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save_async = ubrn_uniffi_payjoin_ffi_checksum_method_withreplykeytransition_save_async;
|
|
2227
|
+
|
|
2228
|
+
/**
|
|
2229
|
+
* @param {bigint} ptr
|
|
2230
|
+
* @param {RustCallStatus} f_status_
|
|
2231
|
+
* @returns {bigint}
|
|
2232
|
+
*/
|
|
2233
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_addressparseerror(ptr, f_status_) {
|
|
2234
|
+
_assertClass(f_status_, RustCallStatus);
|
|
2235
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_addressparseerror(ptr, f_status_.__wbg_ptr);
|
|
2236
|
+
return BigInt.asUintN(64, ret);
|
|
2237
|
+
}
|
|
2238
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_addressparseerror = ubrn_uniffi_payjoin_ffi_fn_clone_addressparseerror;
|
|
2239
|
+
|
|
1985
2240
|
/**
|
|
1986
2241
|
* @param {bigint} ptr
|
|
1987
2242
|
* @param {RustCallStatus} f_status_
|
|
@@ -2011,12 +2266,24 @@ exports.ubrn_uniffi_payjoin_ffi_fn_clone_buildsendererror = ubrn_uniffi_payjoin_
|
|
|
2011
2266
|
* @param {RustCallStatus} f_status_
|
|
2012
2267
|
* @returns {bigint}
|
|
2013
2268
|
*/
|
|
2014
|
-
function ubrn_uniffi_payjoin_ffi_fn_clone_canbroadcast(ptr, f_status_) {
|
|
2269
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_canbroadcast(ptr, f_status_) {
|
|
2270
|
+
_assertClass(f_status_, RustCallStatus);
|
|
2271
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_canbroadcast(ptr, f_status_.__wbg_ptr);
|
|
2272
|
+
return BigInt.asUintN(64, ret);
|
|
2273
|
+
}
|
|
2274
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_canbroadcast = ubrn_uniffi_payjoin_ffi_fn_clone_canbroadcast;
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* @param {bigint} ptr
|
|
2278
|
+
* @param {RustCallStatus} f_status_
|
|
2279
|
+
* @returns {bigint}
|
|
2280
|
+
*/
|
|
2281
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_canceltransition(ptr, f_status_) {
|
|
2015
2282
|
_assertClass(f_status_, RustCallStatus);
|
|
2016
|
-
const ret = wasm.
|
|
2283
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_canceltransition(ptr, f_status_.__wbg_ptr);
|
|
2017
2284
|
return BigInt.asUintN(64, ret);
|
|
2018
2285
|
}
|
|
2019
|
-
exports.
|
|
2286
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_canceltransition = ubrn_uniffi_payjoin_ffi_fn_clone_canceltransition;
|
|
2020
2287
|
|
|
2021
2288
|
/**
|
|
2022
2289
|
* @param {bigint} ptr
|
|
@@ -2222,6 +2489,18 @@ function ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersister(ptr, f_st
|
|
|
2222
2489
|
}
|
|
2223
2490
|
exports.ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersister = ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersister;
|
|
2224
2491
|
|
|
2492
|
+
/**
|
|
2493
|
+
* @param {bigint} ptr
|
|
2494
|
+
* @param {RustCallStatus} f_status_
|
|
2495
|
+
* @returns {bigint}
|
|
2496
|
+
*/
|
|
2497
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersisterasync(ptr, f_status_) {
|
|
2498
|
+
_assertClass(f_status_, RustCallStatus);
|
|
2499
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersisterasync(ptr, f_status_.__wbg_ptr);
|
|
2500
|
+
return BigInt.asUintN(64, ret);
|
|
2501
|
+
}
|
|
2502
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_clone_jsonreceiversessionpersisterasync;
|
|
2503
|
+
|
|
2225
2504
|
/**
|
|
2226
2505
|
* @param {bigint} ptr
|
|
2227
2506
|
* @param {RustCallStatus} f_status_
|
|
@@ -2246,6 +2525,18 @@ function ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersister(ptr, f_stat
|
|
|
2246
2525
|
}
|
|
2247
2526
|
exports.ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersister = ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersister;
|
|
2248
2527
|
|
|
2528
|
+
/**
|
|
2529
|
+
* @param {bigint} ptr
|
|
2530
|
+
* @param {RustCallStatus} f_status_
|
|
2531
|
+
* @returns {bigint}
|
|
2532
|
+
*/
|
|
2533
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersisterasync(ptr, f_status_) {
|
|
2534
|
+
_assertClass(f_status_, RustCallStatus);
|
|
2535
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersisterasync(ptr, f_status_.__wbg_ptr);
|
|
2536
|
+
return BigInt.asUintN(64, ret);
|
|
2537
|
+
}
|
|
2538
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_clone_jsonsendersessionpersisterasync;
|
|
2539
|
+
|
|
2249
2540
|
/**
|
|
2250
2541
|
* @param {bigint} ptr
|
|
2251
2542
|
* @param {RustCallStatus} f_status_
|
|
@@ -2347,24 +2638,12 @@ exports.ubrn_uniffi_payjoin_ffi_fn_clone_ohttpkeys = ubrn_uniffi_payjoin_ffi_fn_
|
|
|
2347
2638
|
* @param {RustCallStatus} f_status_
|
|
2348
2639
|
* @returns {bigint}
|
|
2349
2640
|
*/
|
|
2350
|
-
function
|
|
2351
|
-
_assertClass(f_status_, RustCallStatus);
|
|
2352
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_outpointspent(ptr, f_status_.__wbg_ptr);
|
|
2353
|
-
return BigInt.asUintN(64, ret);
|
|
2354
|
-
}
|
|
2355
|
-
exports.ubrn_uniffi_payjoin_ffi_fn_clone_outpointspent = ubrn_uniffi_payjoin_ffi_fn_clone_outpointspent;
|
|
2356
|
-
|
|
2357
|
-
/**
|
|
2358
|
-
* @param {bigint} ptr
|
|
2359
|
-
* @param {RustCallStatus} f_status_
|
|
2360
|
-
* @returns {bigint}
|
|
2361
|
-
*/
|
|
2362
|
-
function ubrn_uniffi_payjoin_ffi_fn_clone_outputsubstitutionerror(ptr, f_status_) {
|
|
2641
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_outputsubstitutionprotocolerror(ptr, f_status_) {
|
|
2363
2642
|
_assertClass(f_status_, RustCallStatus);
|
|
2364
|
-
const ret = wasm.
|
|
2643
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_outputsubstitutionprotocolerror(ptr, f_status_.__wbg_ptr);
|
|
2365
2644
|
return BigInt.asUintN(64, ret);
|
|
2366
2645
|
}
|
|
2367
|
-
exports.
|
|
2646
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_outputsubstitutionprotocolerror = ubrn_uniffi_payjoin_ffi_fn_clone_outputsubstitutionprotocolerror;
|
|
2368
2647
|
|
|
2369
2648
|
/**
|
|
2370
2649
|
* @param {bigint} ptr
|
|
@@ -2654,6 +2933,18 @@ function ubrn_uniffi_payjoin_ffi_fn_clone_senderbuilder(ptr, f_status_) {
|
|
|
2654
2933
|
}
|
|
2655
2934
|
exports.ubrn_uniffi_payjoin_ffi_fn_clone_senderbuilder = ubrn_uniffi_payjoin_ffi_fn_clone_senderbuilder;
|
|
2656
2935
|
|
|
2936
|
+
/**
|
|
2937
|
+
* @param {bigint} ptr
|
|
2938
|
+
* @param {RustCallStatus} f_status_
|
|
2939
|
+
* @returns {bigint}
|
|
2940
|
+
*/
|
|
2941
|
+
function ubrn_uniffi_payjoin_ffi_fn_clone_sendercanceltransition(ptr, f_status_) {
|
|
2942
|
+
_assertClass(f_status_, RustCallStatus);
|
|
2943
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_clone_sendercanceltransition(ptr, f_status_.__wbg_ptr);
|
|
2944
|
+
return BigInt.asUintN(64, ret);
|
|
2945
|
+
}
|
|
2946
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_clone_sendercanceltransition = ubrn_uniffi_payjoin_ffi_fn_clone_sendercanceltransition;
|
|
2947
|
+
|
|
2657
2948
|
/**
|
|
2658
2949
|
* @param {bigint} ptr
|
|
2659
2950
|
* @param {RustCallStatus} f_status_
|
|
@@ -2989,17 +3280,19 @@ function ubrn_uniffi_payjoin_ffi_fn_constructor_ohttpkeys_decode(bytes, f_status
|
|
|
2989
3280
|
exports.ubrn_uniffi_payjoin_ffi_fn_constructor_ohttpkeys_decode = ubrn_uniffi_payjoin_ffi_fn_constructor_ohttpkeys_decode;
|
|
2990
3281
|
|
|
2991
3282
|
/**
|
|
2992
|
-
* @param {
|
|
3283
|
+
* @param {Uint8Array} address
|
|
2993
3284
|
* @param {Uint8Array} directory
|
|
2994
3285
|
* @param {bigint} ohttp_keys
|
|
2995
3286
|
* @param {RustCallStatus} f_status_
|
|
2996
3287
|
* @returns {bigint}
|
|
2997
3288
|
*/
|
|
2998
3289
|
function ubrn_uniffi_payjoin_ffi_fn_constructor_receiverbuilder_new(address, directory, ohttp_keys, f_status_) {
|
|
2999
|
-
const ptr0 = passArray8ToWasm0(
|
|
3290
|
+
const ptr0 = passArray8ToWasm0(address, wasm.__wbindgen_malloc);
|
|
3000
3291
|
const len0 = WASM_VECTOR_LEN;
|
|
3292
|
+
const ptr1 = passArray8ToWasm0(directory, wasm.__wbindgen_malloc);
|
|
3293
|
+
const len1 = WASM_VECTOR_LEN;
|
|
3001
3294
|
_assertClass(f_status_, RustCallStatus);
|
|
3002
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_constructor_receiverbuilder_new(
|
|
3295
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_constructor_receiverbuilder_new(ptr0, len0, ptr1, len1, ohttp_keys, f_status_.__wbg_ptr);
|
|
3003
3296
|
return BigInt.asUintN(64, ret);
|
|
3004
3297
|
}
|
|
3005
3298
|
exports.ubrn_uniffi_payjoin_ffi_fn_constructor_receiverbuilder_new = ubrn_uniffi_payjoin_ffi_fn_constructor_receiverbuilder_new;
|
|
@@ -3075,6 +3368,16 @@ function ubrn_uniffi_payjoin_ffi_fn_constructor_url_parse(input, f_status_) {
|
|
|
3075
3368
|
}
|
|
3076
3369
|
exports.ubrn_uniffi_payjoin_ffi_fn_constructor_url_parse = ubrn_uniffi_payjoin_ffi_fn_constructor_url_parse;
|
|
3077
3370
|
|
|
3371
|
+
/**
|
|
3372
|
+
* @param {bigint} ptr
|
|
3373
|
+
* @param {RustCallStatus} f_status_
|
|
3374
|
+
*/
|
|
3375
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_addressparseerror(ptr, f_status_) {
|
|
3376
|
+
_assertClass(f_status_, RustCallStatus);
|
|
3377
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_addressparseerror(ptr, f_status_.__wbg_ptr);
|
|
3378
|
+
}
|
|
3379
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_addressparseerror = ubrn_uniffi_payjoin_ffi_fn_free_addressparseerror;
|
|
3380
|
+
|
|
3078
3381
|
/**
|
|
3079
3382
|
* @param {bigint} ptr
|
|
3080
3383
|
* @param {RustCallStatus} f_status_
|
|
@@ -3105,6 +3408,16 @@ function ubrn_uniffi_payjoin_ffi_fn_free_canbroadcast(ptr, f_status_) {
|
|
|
3105
3408
|
}
|
|
3106
3409
|
exports.ubrn_uniffi_payjoin_ffi_fn_free_canbroadcast = ubrn_uniffi_payjoin_ffi_fn_free_canbroadcast;
|
|
3107
3410
|
|
|
3411
|
+
/**
|
|
3412
|
+
* @param {bigint} ptr
|
|
3413
|
+
* @param {RustCallStatus} f_status_
|
|
3414
|
+
*/
|
|
3415
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_canceltransition(ptr, f_status_) {
|
|
3416
|
+
_assertClass(f_status_, RustCallStatus);
|
|
3417
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_canceltransition(ptr, f_status_.__wbg_ptr);
|
|
3418
|
+
}
|
|
3419
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_canceltransition = ubrn_uniffi_payjoin_ffi_fn_free_canceltransition;
|
|
3420
|
+
|
|
3108
3421
|
/**
|
|
3109
3422
|
* @param {bigint} ptr
|
|
3110
3423
|
* @param {RustCallStatus} f_status_
|
|
@@ -3275,6 +3588,16 @@ function ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersister(ptr, f_sta
|
|
|
3275
3588
|
}
|
|
3276
3589
|
exports.ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersister = ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersister;
|
|
3277
3590
|
|
|
3591
|
+
/**
|
|
3592
|
+
* @param {bigint} ptr
|
|
3593
|
+
* @param {RustCallStatus} f_status_
|
|
3594
|
+
*/
|
|
3595
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersisterasync(ptr, f_status_) {
|
|
3596
|
+
_assertClass(f_status_, RustCallStatus);
|
|
3597
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersisterasync(ptr, f_status_.__wbg_ptr);
|
|
3598
|
+
}
|
|
3599
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_free_jsonreceiversessionpersisterasync;
|
|
3600
|
+
|
|
3278
3601
|
/**
|
|
3279
3602
|
* @param {bigint} ptr
|
|
3280
3603
|
* @param {RustCallStatus} f_status_
|
|
@@ -3295,6 +3618,16 @@ function ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersister(ptr, f_statu
|
|
|
3295
3618
|
}
|
|
3296
3619
|
exports.ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersister = ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersister;
|
|
3297
3620
|
|
|
3621
|
+
/**
|
|
3622
|
+
* @param {bigint} ptr
|
|
3623
|
+
* @param {RustCallStatus} f_status_
|
|
3624
|
+
*/
|
|
3625
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersisterasync(ptr, f_status_) {
|
|
3626
|
+
_assertClass(f_status_, RustCallStatus);
|
|
3627
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersisterasync(ptr, f_status_.__wbg_ptr);
|
|
3628
|
+
}
|
|
3629
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_free_jsonsendersessionpersisterasync;
|
|
3630
|
+
|
|
3298
3631
|
/**
|
|
3299
3632
|
* @param {bigint} ptr
|
|
3300
3633
|
* @param {RustCallStatus} f_status_
|
|
@@ -3379,21 +3712,11 @@ exports.ubrn_uniffi_payjoin_ffi_fn_free_ohttpkeys = ubrn_uniffi_payjoin_ffi_fn_f
|
|
|
3379
3712
|
* @param {bigint} ptr
|
|
3380
3713
|
* @param {RustCallStatus} f_status_
|
|
3381
3714
|
*/
|
|
3382
|
-
function
|
|
3383
|
-
_assertClass(f_status_, RustCallStatus);
|
|
3384
|
-
wasm.ubrn_uniffi_payjoin_ffi_fn_free_outpointspent(ptr, f_status_.__wbg_ptr);
|
|
3385
|
-
}
|
|
3386
|
-
exports.ubrn_uniffi_payjoin_ffi_fn_free_outpointspent = ubrn_uniffi_payjoin_ffi_fn_free_outpointspent;
|
|
3387
|
-
|
|
3388
|
-
/**
|
|
3389
|
-
* @param {bigint} ptr
|
|
3390
|
-
* @param {RustCallStatus} f_status_
|
|
3391
|
-
*/
|
|
3392
|
-
function ubrn_uniffi_payjoin_ffi_fn_free_outputsubstitutionerror(ptr, f_status_) {
|
|
3715
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_outputsubstitutionprotocolerror(ptr, f_status_) {
|
|
3393
3716
|
_assertClass(f_status_, RustCallStatus);
|
|
3394
|
-
wasm.
|
|
3717
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_outputsubstitutionprotocolerror(ptr, f_status_.__wbg_ptr);
|
|
3395
3718
|
}
|
|
3396
|
-
exports.
|
|
3719
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_outputsubstitutionprotocolerror = ubrn_uniffi_payjoin_ffi_fn_free_outputsubstitutionprotocolerror;
|
|
3397
3720
|
|
|
3398
3721
|
/**
|
|
3399
3722
|
* @param {bigint} ptr
|
|
@@ -3635,6 +3958,16 @@ function ubrn_uniffi_payjoin_ffi_fn_free_senderbuilder(ptr, f_status_) {
|
|
|
3635
3958
|
}
|
|
3636
3959
|
exports.ubrn_uniffi_payjoin_ffi_fn_free_senderbuilder = ubrn_uniffi_payjoin_ffi_fn_free_senderbuilder;
|
|
3637
3960
|
|
|
3961
|
+
/**
|
|
3962
|
+
* @param {bigint} ptr
|
|
3963
|
+
* @param {RustCallStatus} f_status_
|
|
3964
|
+
*/
|
|
3965
|
+
function ubrn_uniffi_payjoin_ffi_fn_free_sendercanceltransition(ptr, f_status_) {
|
|
3966
|
+
_assertClass(f_status_, RustCallStatus);
|
|
3967
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_free_sendercanceltransition(ptr, f_status_.__wbg_ptr);
|
|
3968
|
+
}
|
|
3969
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_free_sendercanceltransition = ubrn_uniffi_payjoin_ffi_fn_free_sendercanceltransition;
|
|
3970
|
+
|
|
3638
3971
|
/**
|
|
3639
3972
|
* @param {bigint} ptr
|
|
3640
3973
|
* @param {RustCallStatus} f_status_
|
|
@@ -3897,6 +4230,16 @@ function ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log(persister, f_
|
|
|
3897
4230
|
}
|
|
3898
4231
|
exports.ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log = ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log;
|
|
3899
4232
|
|
|
4233
|
+
/**
|
|
4234
|
+
* @param {bigint} persister
|
|
4235
|
+
* @returns {bigint}
|
|
4236
|
+
*/
|
|
4237
|
+
function ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log_async(persister) {
|
|
4238
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log_async(persister);
|
|
4239
|
+
return BigInt.asUintN(64, ret);
|
|
4240
|
+
}
|
|
4241
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log_async = ubrn_uniffi_payjoin_ffi_fn_func_replay_receiver_event_log_async;
|
|
4242
|
+
|
|
3900
4243
|
/**
|
|
3901
4244
|
* @param {bigint} persister
|
|
3902
4245
|
* @param {RustCallStatus} f_status_
|
|
@@ -3909,6 +4252,16 @@ function ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log(persister, f_st
|
|
|
3909
4252
|
}
|
|
3910
4253
|
exports.ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log = ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log;
|
|
3911
4254
|
|
|
4255
|
+
/**
|
|
4256
|
+
* @param {bigint} persister
|
|
4257
|
+
* @returns {bigint}
|
|
4258
|
+
*/
|
|
4259
|
+
function ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log_async(persister) {
|
|
4260
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log_async(persister);
|
|
4261
|
+
return BigInt.asUintN(64, ret);
|
|
4262
|
+
}
|
|
4263
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log_async = ubrn_uniffi_payjoin_ffi_fn_func_replay_sender_event_log_async;
|
|
4264
|
+
|
|
3912
4265
|
/**
|
|
3913
4266
|
* @param {any} vtable
|
|
3914
4267
|
*/
|
|
@@ -3920,86 +4273,309 @@ exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_canbroadcast = ubrn_unif
|
|
|
3920
4273
|
/**
|
|
3921
4274
|
* @param {any} vtable
|
|
3922
4275
|
*/
|
|
3923
|
-
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown(vtable) {
|
|
3924
|
-
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown(vtable);
|
|
4276
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown(vtable) {
|
|
4277
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown(vtable);
|
|
4278
|
+
}
|
|
4279
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isoutputknown;
|
|
4280
|
+
|
|
4281
|
+
/**
|
|
4282
|
+
* @param {any} vtable
|
|
4283
|
+
*/
|
|
4284
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isscriptowned(vtable) {
|
|
4285
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isscriptowned(vtable);
|
|
4286
|
+
}
|
|
4287
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isscriptowned = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_isscriptowned;
|
|
4288
|
+
|
|
4289
|
+
/**
|
|
4290
|
+
* @param {any} vtable
|
|
4291
|
+
*/
|
|
4292
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersister(vtable) {
|
|
4293
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersister(vtable);
|
|
4294
|
+
}
|
|
4295
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersister = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersister;
|
|
4296
|
+
|
|
4297
|
+
/**
|
|
4298
|
+
* @param {any} vtable
|
|
4299
|
+
*/
|
|
4300
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersisterasync(vtable) {
|
|
4301
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersisterasync(vtable);
|
|
4302
|
+
}
|
|
4303
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonreceiversessionpersisterasync;
|
|
4304
|
+
|
|
4305
|
+
/**
|
|
4306
|
+
* @param {any} vtable
|
|
4307
|
+
*/
|
|
4308
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersister(vtable) {
|
|
4309
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersister(vtable);
|
|
4310
|
+
}
|
|
4311
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersister = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersister;
|
|
4312
|
+
|
|
4313
|
+
/**
|
|
4314
|
+
* @param {any} vtable
|
|
4315
|
+
*/
|
|
4316
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersisterasync(vtable) {
|
|
4317
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersisterasync(vtable);
|
|
4318
|
+
}
|
|
4319
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersisterasync = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_jsonsendersessionpersisterasync;
|
|
4320
|
+
|
|
4321
|
+
/**
|
|
4322
|
+
* @param {any} vtable
|
|
4323
|
+
*/
|
|
4324
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_processpsbt(vtable) {
|
|
4325
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_processpsbt(vtable);
|
|
4326
|
+
}
|
|
4327
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_processpsbt = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_processpsbt;
|
|
4328
|
+
|
|
4329
|
+
/**
|
|
4330
|
+
* @param {any} vtable
|
|
4331
|
+
*/
|
|
4332
|
+
function ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_transactionexists(vtable) {
|
|
4333
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_transactionexists(vtable);
|
|
4334
|
+
}
|
|
4335
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_transactionexists = ubrn_uniffi_payjoin_ffi_fn_init_callback_vtable_transactionexists;
|
|
4336
|
+
|
|
4337
|
+
/**
|
|
4338
|
+
* @param {bigint} ptr
|
|
4339
|
+
* @param {RustCallStatus} f_status_
|
|
4340
|
+
* @returns {Uint8Array}
|
|
4341
|
+
*/
|
|
4342
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4343
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4344
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4345
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4346
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4347
|
+
return v1;
|
|
4348
|
+
}
|
|
4349
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_debug;
|
|
4350
|
+
|
|
4351
|
+
/**
|
|
4352
|
+
* @param {bigint} ptr
|
|
4353
|
+
* @param {RustCallStatus} f_status_
|
|
4354
|
+
* @returns {Uint8Array}
|
|
4355
|
+
*/
|
|
4356
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_display(ptr, f_status_) {
|
|
4357
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4358
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4359
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4360
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4361
|
+
return v1;
|
|
4362
|
+
}
|
|
4363
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_addressparseerror_uniffi_trait_display;
|
|
4364
|
+
|
|
4365
|
+
/**
|
|
4366
|
+
* @param {bigint} ptr
|
|
4367
|
+
* @param {bigint} persister
|
|
4368
|
+
* @param {RustCallStatus} f_status_
|
|
4369
|
+
* @returns {bigint}
|
|
4370
|
+
*/
|
|
4371
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save(ptr, persister, f_status_) {
|
|
4372
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4373
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save(ptr, persister, f_status_.__wbg_ptr);
|
|
4374
|
+
return BigInt.asUintN(64, ret);
|
|
4375
|
+
}
|
|
4376
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save = ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save;
|
|
4377
|
+
|
|
4378
|
+
/**
|
|
4379
|
+
* @param {bigint} ptr
|
|
4380
|
+
* @param {bigint} persister
|
|
4381
|
+
* @returns {bigint}
|
|
4382
|
+
*/
|
|
4383
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save_async(ptr, persister) {
|
|
4384
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save_async(ptr, persister);
|
|
4385
|
+
return BigInt.asUintN(64, ret);
|
|
4386
|
+
}
|
|
4387
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_assumeinteractivetransition_save_async;
|
|
4388
|
+
|
|
4389
|
+
/**
|
|
4390
|
+
* @param {bigint} ptr
|
|
4391
|
+
* @param {RustCallStatus} f_status_
|
|
4392
|
+
* @returns {Uint8Array}
|
|
4393
|
+
*/
|
|
4394
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_debug(ptr, f_status_) {
|
|
4395
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4396
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4397
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4398
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4399
|
+
return v1;
|
|
4400
|
+
}
|
|
4401
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_debug;
|
|
4402
|
+
|
|
4403
|
+
/**
|
|
4404
|
+
* @param {bigint} ptr
|
|
4405
|
+
* @param {RustCallStatus} f_status_
|
|
4406
|
+
* @returns {Uint8Array}
|
|
4407
|
+
*/
|
|
4408
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_display(ptr, f_status_) {
|
|
4409
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4410
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4411
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4412
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4413
|
+
return v1;
|
|
4414
|
+
}
|
|
4415
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_display;
|
|
4416
|
+
|
|
4417
|
+
/**
|
|
4418
|
+
* @param {bigint} ptr
|
|
4419
|
+
* @param {bigint} other
|
|
4420
|
+
* @param {RustCallStatus} f_status_
|
|
4421
|
+
* @returns {number}
|
|
4422
|
+
*/
|
|
4423
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_eq(ptr, other, f_status_) {
|
|
4424
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4425
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_eq(ptr, other, f_status_.__wbg_ptr);
|
|
4426
|
+
return ret;
|
|
4427
|
+
}
|
|
4428
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_eq = ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_eq;
|
|
4429
|
+
|
|
4430
|
+
/**
|
|
4431
|
+
* @param {bigint} ptr
|
|
4432
|
+
* @param {bigint} other
|
|
4433
|
+
* @param {RustCallStatus} f_status_
|
|
4434
|
+
* @returns {number}
|
|
4435
|
+
*/
|
|
4436
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_ne(ptr, other, f_status_) {
|
|
4437
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4438
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_ne(ptr, other, f_status_.__wbg_ptr);
|
|
4439
|
+
return ret;
|
|
4440
|
+
}
|
|
4441
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_ne = ubrn_uniffi_payjoin_ffi_fn_method_buildsendererror_uniffi_trait_eq_ne;
|
|
4442
|
+
|
|
4443
|
+
/**
|
|
4444
|
+
* @param {bigint} ptr
|
|
4445
|
+
* @param {Uint8Array} tx
|
|
4446
|
+
* @param {RustCallStatus} f_status_
|
|
4447
|
+
* @returns {number}
|
|
4448
|
+
*/
|
|
4449
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_canbroadcast_callback(ptr, tx, f_status_) {
|
|
4450
|
+
const ptr0 = passArray8ToWasm0(tx, wasm.__wbindgen_malloc);
|
|
4451
|
+
const len0 = WASM_VECTOR_LEN;
|
|
4452
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4453
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_canbroadcast_callback(ptr, ptr0, len0, f_status_.__wbg_ptr);
|
|
4454
|
+
return ret;
|
|
4455
|
+
}
|
|
4456
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_canbroadcast_callback = ubrn_uniffi_payjoin_ffi_fn_method_canbroadcast_callback;
|
|
4457
|
+
|
|
4458
|
+
/**
|
|
4459
|
+
* @param {bigint} ptr
|
|
4460
|
+
* @param {bigint} persister
|
|
4461
|
+
* @param {RustCallStatus} f_status_
|
|
4462
|
+
* @returns {Uint8Array}
|
|
4463
|
+
*/
|
|
4464
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save(ptr, persister, f_status_) {
|
|
4465
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4466
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save(ptr, persister, f_status_.__wbg_ptr);
|
|
4467
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4468
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4469
|
+
return v1;
|
|
3925
4470
|
}
|
|
3926
|
-
exports.
|
|
4471
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save = ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save;
|
|
3927
4472
|
|
|
3928
4473
|
/**
|
|
3929
|
-
* @param {
|
|
4474
|
+
* @param {bigint} ptr
|
|
4475
|
+
* @param {bigint} persister
|
|
4476
|
+
* @returns {bigint}
|
|
3930
4477
|
*/
|
|
3931
|
-
function
|
|
3932
|
-
wasm.
|
|
4478
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save_async(ptr, persister) {
|
|
4479
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save_async(ptr, persister);
|
|
4480
|
+
return BigInt.asUintN(64, ret);
|
|
3933
4481
|
}
|
|
3934
|
-
exports.
|
|
4482
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_canceltransition_save_async;
|
|
3935
4483
|
|
|
3936
4484
|
/**
|
|
3937
|
-
* @param {
|
|
4485
|
+
* @param {bigint} ptr
|
|
4486
|
+
* @param {RustCallStatus} f_status_
|
|
4487
|
+
* @returns {Uint8Array}
|
|
3938
4488
|
*/
|
|
3939
|
-
function
|
|
3940
|
-
|
|
4489
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_debug(ptr, f_status_) {
|
|
4490
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4491
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4492
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4493
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4494
|
+
return v1;
|
|
3941
4495
|
}
|
|
3942
|
-
exports.
|
|
4496
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_debug;
|
|
3943
4497
|
|
|
3944
4498
|
/**
|
|
3945
|
-
* @param {
|
|
4499
|
+
* @param {bigint} ptr
|
|
4500
|
+
* @param {RustCallStatus} f_status_
|
|
4501
|
+
* @returns {Uint8Array}
|
|
3946
4502
|
*/
|
|
3947
|
-
function
|
|
3948
|
-
|
|
4503
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_display(ptr, f_status_) {
|
|
4504
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4505
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4506
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4507
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4508
|
+
return v1;
|
|
3949
4509
|
}
|
|
3950
|
-
exports.
|
|
4510
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_createrequesterror_uniffi_trait_display;
|
|
3951
4511
|
|
|
3952
4512
|
/**
|
|
3953
|
-
* @param {
|
|
4513
|
+
* @param {bigint} ptr
|
|
4514
|
+
* @param {RustCallStatus} f_status_
|
|
4515
|
+
* @returns {Uint8Array}
|
|
3954
4516
|
*/
|
|
3955
|
-
function
|
|
3956
|
-
|
|
4517
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4518
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4519
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4520
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4521
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4522
|
+
return v1;
|
|
3957
4523
|
}
|
|
3958
|
-
exports.
|
|
4524
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_debug;
|
|
3959
4525
|
|
|
3960
4526
|
/**
|
|
3961
|
-
* @param {
|
|
4527
|
+
* @param {bigint} ptr
|
|
4528
|
+
* @param {RustCallStatus} f_status_
|
|
4529
|
+
* @returns {Uint8Array}
|
|
3962
4530
|
*/
|
|
3963
|
-
function
|
|
3964
|
-
|
|
4531
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_display(ptr, f_status_) {
|
|
4532
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4533
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4534
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4535
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4536
|
+
return v1;
|
|
3965
4537
|
}
|
|
3966
|
-
exports.
|
|
4538
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_encapsulationerror_uniffi_trait_display;
|
|
3967
4539
|
|
|
3968
4540
|
/**
|
|
3969
|
-
* @param {
|
|
4541
|
+
* @param {bigint} ptr
|
|
4542
|
+
* @param {RustCallStatus} f_status_
|
|
4543
|
+
* @returns {Uint8Array}
|
|
3970
4544
|
*/
|
|
3971
|
-
function
|
|
3972
|
-
|
|
4545
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4546
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4547
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4548
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4549
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4550
|
+
return v1;
|
|
3973
4551
|
}
|
|
3974
|
-
exports.
|
|
4552
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_debug;
|
|
3975
4553
|
|
|
3976
4554
|
/**
|
|
3977
4555
|
* @param {bigint} ptr
|
|
3978
|
-
* @param {bigint} persister
|
|
3979
4556
|
* @param {RustCallStatus} f_status_
|
|
3980
|
-
* @returns {
|
|
4557
|
+
* @returns {Uint8Array}
|
|
3981
4558
|
*/
|
|
3982
|
-
function
|
|
4559
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_display(ptr, f_status_) {
|
|
3983
4560
|
_assertClass(f_status_, RustCallStatus);
|
|
3984
|
-
const ret = wasm.
|
|
3985
|
-
|
|
4561
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4562
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4563
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4564
|
+
return v1;
|
|
3986
4565
|
}
|
|
3987
|
-
exports.
|
|
4566
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_feerateerror_uniffi_trait_display;
|
|
3988
4567
|
|
|
3989
4568
|
/**
|
|
3990
4569
|
* @param {bigint} ptr
|
|
3991
|
-
* @param {Uint8Array} tx
|
|
3992
4570
|
* @param {RustCallStatus} f_status_
|
|
3993
|
-
* @returns {
|
|
4571
|
+
* @returns {bigint}
|
|
3994
4572
|
*/
|
|
3995
|
-
function
|
|
3996
|
-
const ptr0 = passArray8ToWasm0(tx, wasm.__wbindgen_malloc);
|
|
3997
|
-
const len0 = WASM_VECTOR_LEN;
|
|
4573
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerror_cancel(ptr, f_status_) {
|
|
3998
4574
|
_assertClass(f_status_, RustCallStatus);
|
|
3999
|
-
const ret = wasm.
|
|
4000
|
-
return ret;
|
|
4575
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerror_cancel(ptr, f_status_.__wbg_ptr);
|
|
4576
|
+
return BigInt.asUintN(64, ret);
|
|
4001
4577
|
}
|
|
4002
|
-
exports.
|
|
4578
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerror_cancel = ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerror_cancel;
|
|
4003
4579
|
|
|
4004
4580
|
/**
|
|
4005
4581
|
* @param {bigint} ptr
|
|
@@ -4045,6 +4621,57 @@ function ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save(ptr,
|
|
|
4045
4621
|
}
|
|
4046
4622
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save = ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save;
|
|
4047
4623
|
|
|
4624
|
+
/**
|
|
4625
|
+
* @param {bigint} ptr
|
|
4626
|
+
* @param {bigint} persister
|
|
4627
|
+
* @returns {bigint}
|
|
4628
|
+
*/
|
|
4629
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save_async(ptr, persister) {
|
|
4630
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save_async(ptr, persister);
|
|
4631
|
+
return BigInt.asUintN(64, ret);
|
|
4632
|
+
}
|
|
4633
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_hasreplyableerrortransition_save_async;
|
|
4634
|
+
|
|
4635
|
+
/**
|
|
4636
|
+
* @param {bigint} ptr
|
|
4637
|
+
* @param {RustCallStatus} f_status_
|
|
4638
|
+
* @returns {Uint8Array}
|
|
4639
|
+
*/
|
|
4640
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4641
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4642
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4643
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4644
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4645
|
+
return v1;
|
|
4646
|
+
}
|
|
4647
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_debug;
|
|
4648
|
+
|
|
4649
|
+
/**
|
|
4650
|
+
* @param {bigint} ptr
|
|
4651
|
+
* @param {RustCallStatus} f_status_
|
|
4652
|
+
* @returns {Uint8Array}
|
|
4653
|
+
*/
|
|
4654
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_display(ptr, f_status_) {
|
|
4655
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4656
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4657
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4658
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4659
|
+
return v1;
|
|
4660
|
+
}
|
|
4661
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_implementationerror_uniffi_trait_display;
|
|
4662
|
+
|
|
4663
|
+
/**
|
|
4664
|
+
* @param {bigint} ptr
|
|
4665
|
+
* @param {RustCallStatus} f_status_
|
|
4666
|
+
* @returns {bigint}
|
|
4667
|
+
*/
|
|
4668
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_initialized_cancel(ptr, f_status_) {
|
|
4669
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4670
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_initialized_cancel(ptr, f_status_.__wbg_ptr);
|
|
4671
|
+
return BigInt.asUintN(64, ret);
|
|
4672
|
+
}
|
|
4673
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_initialized_cancel = ubrn_uniffi_payjoin_ffi_fn_method_initialized_cancel;
|
|
4674
|
+
|
|
4048
4675
|
/**
|
|
4049
4676
|
* @param {bigint} ptr
|
|
4050
4677
|
* @param {Uint8Array} ohttp_relay
|
|
@@ -4105,6 +4732,17 @@ function ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save(ptr, persi
|
|
|
4105
4732
|
}
|
|
4106
4733
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save = ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save;
|
|
4107
4734
|
|
|
4735
|
+
/**
|
|
4736
|
+
* @param {bigint} ptr
|
|
4737
|
+
* @param {bigint} persister
|
|
4738
|
+
* @returns {bigint}
|
|
4739
|
+
*/
|
|
4740
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save_async(ptr, persister) {
|
|
4741
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save_async(ptr, persister);
|
|
4742
|
+
return BigInt.asUintN(64, ret);
|
|
4743
|
+
}
|
|
4744
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_initializedtransition_save_async;
|
|
4745
|
+
|
|
4108
4746
|
/**
|
|
4109
4747
|
* @param {bigint} ptr
|
|
4110
4748
|
* @param {bigint} persister
|
|
@@ -4118,6 +4756,17 @@ function ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save(ptr, pe
|
|
|
4118
4756
|
}
|
|
4119
4757
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save = ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save;
|
|
4120
4758
|
|
|
4759
|
+
/**
|
|
4760
|
+
* @param {bigint} ptr
|
|
4761
|
+
* @param {bigint} persister
|
|
4762
|
+
* @returns {bigint}
|
|
4763
|
+
*/
|
|
4764
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save_async(ptr, persister) {
|
|
4765
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save_async(ptr, persister);
|
|
4766
|
+
return BigInt.asUintN(64, ret);
|
|
4767
|
+
}
|
|
4768
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_initialreceivetransition_save_async;
|
|
4769
|
+
|
|
4121
4770
|
/**
|
|
4122
4771
|
* @param {bigint} ptr
|
|
4123
4772
|
* @param {bigint} persister
|
|
@@ -4131,6 +4780,73 @@ function ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save(ptr, persi
|
|
|
4131
4780
|
}
|
|
4132
4781
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save = ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save;
|
|
4133
4782
|
|
|
4783
|
+
/**
|
|
4784
|
+
* @param {bigint} ptr
|
|
4785
|
+
* @param {bigint} persister
|
|
4786
|
+
* @returns {bigint}
|
|
4787
|
+
*/
|
|
4788
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save_async(ptr, persister) {
|
|
4789
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save_async(ptr, persister);
|
|
4790
|
+
return BigInt.asUintN(64, ret);
|
|
4791
|
+
}
|
|
4792
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_initialsendtransition_save_async;
|
|
4793
|
+
|
|
4794
|
+
/**
|
|
4795
|
+
* @param {bigint} ptr
|
|
4796
|
+
* @param {RustCallStatus} f_status_
|
|
4797
|
+
* @returns {Uint8Array}
|
|
4798
|
+
*/
|
|
4799
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4800
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4801
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4802
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4803
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4804
|
+
return v1;
|
|
4805
|
+
}
|
|
4806
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_debug;
|
|
4807
|
+
|
|
4808
|
+
/**
|
|
4809
|
+
* @param {bigint} ptr
|
|
4810
|
+
* @param {RustCallStatus} f_status_
|
|
4811
|
+
* @returns {Uint8Array}
|
|
4812
|
+
*/
|
|
4813
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_display(ptr, f_status_) {
|
|
4814
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4815
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4816
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4817
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4818
|
+
return v1;
|
|
4819
|
+
}
|
|
4820
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_inputcontributionerror_uniffi_trait_display;
|
|
4821
|
+
|
|
4822
|
+
/**
|
|
4823
|
+
* @param {bigint} ptr
|
|
4824
|
+
* @param {RustCallStatus} f_status_
|
|
4825
|
+
* @returns {Uint8Array}
|
|
4826
|
+
*/
|
|
4827
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4828
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4829
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4830
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4831
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4832
|
+
return v1;
|
|
4833
|
+
}
|
|
4834
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_debug;
|
|
4835
|
+
|
|
4836
|
+
/**
|
|
4837
|
+
* @param {bigint} ptr
|
|
4838
|
+
* @param {RustCallStatus} f_status_
|
|
4839
|
+
* @returns {Uint8Array}
|
|
4840
|
+
*/
|
|
4841
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_display(ptr, f_status_) {
|
|
4842
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4843
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
4844
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4845
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4846
|
+
return v1;
|
|
4847
|
+
}
|
|
4848
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_intourlerror_uniffi_trait_display;
|
|
4849
|
+
|
|
4134
4850
|
/**
|
|
4135
4851
|
* @param {bigint} ptr
|
|
4136
4852
|
* @param {Uint8Array} outpoint
|
|
@@ -4183,20 +4899,93 @@ function ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_load(ptr
|
|
|
4183
4899
|
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4184
4900
|
return v1;
|
|
4185
4901
|
}
|
|
4186
|
-
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_load = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_load;
|
|
4902
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_load = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_load;
|
|
4903
|
+
|
|
4904
|
+
/**
|
|
4905
|
+
* @param {bigint} ptr
|
|
4906
|
+
* @param {Uint8Array} event
|
|
4907
|
+
* @param {RustCallStatus} f_status_
|
|
4908
|
+
*/
|
|
4909
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_save(ptr, event, f_status_) {
|
|
4910
|
+
const ptr0 = passArray8ToWasm0(event, wasm.__wbindgen_malloc);
|
|
4911
|
+
const len0 = WASM_VECTOR_LEN;
|
|
4912
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4913
|
+
wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_save(ptr, ptr0, len0, f_status_.__wbg_ptr);
|
|
4914
|
+
}
|
|
4915
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_save = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersister_save;
|
|
4916
|
+
|
|
4917
|
+
/**
|
|
4918
|
+
* @param {bigint} ptr
|
|
4919
|
+
* @returns {bigint}
|
|
4920
|
+
*/
|
|
4921
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_close(ptr) {
|
|
4922
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_close(ptr);
|
|
4923
|
+
return BigInt.asUintN(64, ret);
|
|
4924
|
+
}
|
|
4925
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_close = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_close;
|
|
4926
|
+
|
|
4927
|
+
/**
|
|
4928
|
+
* @param {bigint} ptr
|
|
4929
|
+
* @returns {bigint}
|
|
4930
|
+
*/
|
|
4931
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_load(ptr) {
|
|
4932
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_load(ptr);
|
|
4933
|
+
return BigInt.asUintN(64, ret);
|
|
4934
|
+
}
|
|
4935
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_load = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_load;
|
|
4936
|
+
|
|
4937
|
+
/**
|
|
4938
|
+
* @param {bigint} ptr
|
|
4939
|
+
* @param {Uint8Array} event
|
|
4940
|
+
* @returns {bigint}
|
|
4941
|
+
*/
|
|
4942
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_save(ptr, event) {
|
|
4943
|
+
const ptr0 = passArray8ToWasm0(event, wasm.__wbindgen_malloc);
|
|
4944
|
+
const len0 = WASM_VECTOR_LEN;
|
|
4945
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_save(ptr, ptr0, len0);
|
|
4946
|
+
return BigInt.asUintN(64, ret);
|
|
4947
|
+
}
|
|
4948
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_save = ubrn_uniffi_payjoin_ffi_fn_method_jsonreceiversessionpersisterasync_save;
|
|
4949
|
+
|
|
4950
|
+
/**
|
|
4951
|
+
* @param {bigint} ptr
|
|
4952
|
+
* @param {RustCallStatus} f_status_
|
|
4953
|
+
* @returns {Uint8Array}
|
|
4954
|
+
*/
|
|
4955
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_debug(ptr, f_status_) {
|
|
4956
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4957
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
4958
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
4959
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4960
|
+
return v1;
|
|
4961
|
+
}
|
|
4962
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_debug;
|
|
4963
|
+
|
|
4964
|
+
/**
|
|
4965
|
+
* @param {bigint} ptr
|
|
4966
|
+
* @param {bigint} other
|
|
4967
|
+
* @param {RustCallStatus} f_status_
|
|
4968
|
+
* @returns {number}
|
|
4969
|
+
*/
|
|
4970
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_eq(ptr, other, f_status_) {
|
|
4971
|
+
_assertClass(f_status_, RustCallStatus);
|
|
4972
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_eq(ptr, other, f_status_.__wbg_ptr);
|
|
4973
|
+
return ret;
|
|
4974
|
+
}
|
|
4975
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_eq = ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_eq;
|
|
4187
4976
|
|
|
4188
4977
|
/**
|
|
4189
4978
|
* @param {bigint} ptr
|
|
4190
|
-
* @param {
|
|
4979
|
+
* @param {bigint} other
|
|
4191
4980
|
* @param {RustCallStatus} f_status_
|
|
4981
|
+
* @returns {number}
|
|
4192
4982
|
*/
|
|
4193
|
-
function
|
|
4194
|
-
const ptr0 = passArray8ToWasm0(event, wasm.__wbindgen_malloc);
|
|
4195
|
-
const len0 = WASM_VECTOR_LEN;
|
|
4983
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_ne(ptr, other, f_status_) {
|
|
4196
4984
|
_assertClass(f_status_, RustCallStatus);
|
|
4197
|
-
wasm.
|
|
4985
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_ne(ptr, other, f_status_.__wbg_ptr);
|
|
4986
|
+
return ret;
|
|
4198
4987
|
}
|
|
4199
|
-
exports.
|
|
4988
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_ne = ubrn_uniffi_payjoin_ffi_fn_method_jsonreply_uniffi_trait_eq_ne;
|
|
4200
4989
|
|
|
4201
4990
|
/**
|
|
4202
4991
|
* @param {bigint} ptr
|
|
@@ -4235,6 +5024,51 @@ function ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersister_save(ptr,
|
|
|
4235
5024
|
}
|
|
4236
5025
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersister_save = ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersister_save;
|
|
4237
5026
|
|
|
5027
|
+
/**
|
|
5028
|
+
* @param {bigint} ptr
|
|
5029
|
+
* @returns {bigint}
|
|
5030
|
+
*/
|
|
5031
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_close(ptr) {
|
|
5032
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_close(ptr);
|
|
5033
|
+
return BigInt.asUintN(64, ret);
|
|
5034
|
+
}
|
|
5035
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_close = ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_close;
|
|
5036
|
+
|
|
5037
|
+
/**
|
|
5038
|
+
* @param {bigint} ptr
|
|
5039
|
+
* @returns {bigint}
|
|
5040
|
+
*/
|
|
5041
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_load(ptr) {
|
|
5042
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_load(ptr);
|
|
5043
|
+
return BigInt.asUintN(64, ret);
|
|
5044
|
+
}
|
|
5045
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_load = ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_load;
|
|
5046
|
+
|
|
5047
|
+
/**
|
|
5048
|
+
* @param {bigint} ptr
|
|
5049
|
+
* @param {Uint8Array} event
|
|
5050
|
+
* @returns {bigint}
|
|
5051
|
+
*/
|
|
5052
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_save(ptr, event) {
|
|
5053
|
+
const ptr0 = passArray8ToWasm0(event, wasm.__wbindgen_malloc);
|
|
5054
|
+
const len0 = WASM_VECTOR_LEN;
|
|
5055
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_save(ptr, ptr0, len0);
|
|
5056
|
+
return BigInt.asUintN(64, ret);
|
|
5057
|
+
}
|
|
5058
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_save = ubrn_uniffi_payjoin_ffi_fn_method_jsonsendersessionpersisterasync_save;
|
|
5059
|
+
|
|
5060
|
+
/**
|
|
5061
|
+
* @param {bigint} ptr
|
|
5062
|
+
* @param {RustCallStatus} f_status_
|
|
5063
|
+
* @returns {bigint}
|
|
5064
|
+
*/
|
|
5065
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsowned_cancel(ptr, f_status_) {
|
|
5066
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5067
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsowned_cancel(ptr, f_status_.__wbg_ptr);
|
|
5068
|
+
return BigInt.asUintN(64, ret);
|
|
5069
|
+
}
|
|
5070
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsowned_cancel = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsowned_cancel;
|
|
5071
|
+
|
|
4238
5072
|
/**
|
|
4239
5073
|
* @param {bigint} ptr
|
|
4240
5074
|
* @param {bigint} is_owned
|
|
@@ -4275,6 +5109,29 @@ function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save(ptr,
|
|
|
4275
5109
|
}
|
|
4276
5110
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save;
|
|
4277
5111
|
|
|
5112
|
+
/**
|
|
5113
|
+
* @param {bigint} ptr
|
|
5114
|
+
* @param {bigint} persister
|
|
5115
|
+
* @returns {bigint}
|
|
5116
|
+
*/
|
|
5117
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save_async(ptr, persister) {
|
|
5118
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save_async(ptr, persister);
|
|
5119
|
+
return BigInt.asUintN(64, ret);
|
|
5120
|
+
}
|
|
5121
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsownedtransition_save_async;
|
|
5122
|
+
|
|
5123
|
+
/**
|
|
5124
|
+
* @param {bigint} ptr
|
|
5125
|
+
* @param {RustCallStatus} f_status_
|
|
5126
|
+
* @returns {bigint}
|
|
5127
|
+
*/
|
|
5128
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseen_cancel(ptr, f_status_) {
|
|
5129
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5130
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseen_cancel(ptr, f_status_.__wbg_ptr);
|
|
5131
|
+
return BigInt.asUintN(64, ret);
|
|
5132
|
+
}
|
|
5133
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseen_cancel = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseen_cancel;
|
|
5134
|
+
|
|
4278
5135
|
/**
|
|
4279
5136
|
* @param {bigint} ptr
|
|
4280
5137
|
* @param {bigint} is_known
|
|
@@ -4301,16 +5158,38 @@ function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save(ptr, p
|
|
|
4301
5158
|
}
|
|
4302
5159
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save;
|
|
4303
5160
|
|
|
5161
|
+
/**
|
|
5162
|
+
* @param {bigint} ptr
|
|
5163
|
+
* @param {bigint} persister
|
|
5164
|
+
* @returns {bigint}
|
|
5165
|
+
*/
|
|
5166
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save_async(ptr, persister) {
|
|
5167
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save_async(ptr, persister);
|
|
5168
|
+
return BigInt.asUintN(64, ret);
|
|
5169
|
+
}
|
|
5170
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_maybeinputsseentransition_save_async;
|
|
5171
|
+
|
|
5172
|
+
/**
|
|
5173
|
+
* @param {bigint} ptr
|
|
5174
|
+
* @param {RustCallStatus} f_status_
|
|
5175
|
+
* @returns {bigint}
|
|
5176
|
+
*/
|
|
5177
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_monitor_cancel(ptr, f_status_) {
|
|
5178
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5179
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_monitor_cancel(ptr, f_status_.__wbg_ptr);
|
|
5180
|
+
return BigInt.asUintN(64, ret);
|
|
5181
|
+
}
|
|
5182
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_monitor_cancel = ubrn_uniffi_payjoin_ffi_fn_method_monitor_cancel;
|
|
5183
|
+
|
|
4304
5184
|
/**
|
|
4305
5185
|
* @param {bigint} ptr
|
|
4306
5186
|
* @param {bigint} transaction_exists
|
|
4307
|
-
* @param {bigint} outpoint_spent
|
|
4308
5187
|
* @param {RustCallStatus} f_status_
|
|
4309
5188
|
* @returns {bigint}
|
|
4310
5189
|
*/
|
|
4311
|
-
function ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor(ptr, transaction_exists,
|
|
5190
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor(ptr, transaction_exists, f_status_) {
|
|
4312
5191
|
_assertClass(f_status_, RustCallStatus);
|
|
4313
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor(ptr, transaction_exists,
|
|
5192
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor(ptr, transaction_exists, f_status_.__wbg_ptr);
|
|
4314
5193
|
return BigInt.asUintN(64, ret);
|
|
4315
5194
|
}
|
|
4316
5195
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor = ubrn_uniffi_payjoin_ffi_fn_method_monitor_monitor;
|
|
@@ -4328,18 +5207,82 @@ exports.ubrn_uniffi_payjoin_ffi_fn_method_monitortransition_save = ubrn_uniffi_p
|
|
|
4328
5207
|
|
|
4329
5208
|
/**
|
|
4330
5209
|
* @param {bigint} ptr
|
|
4331
|
-
* @param {
|
|
5210
|
+
* @param {bigint} persister
|
|
5211
|
+
* @returns {bigint}
|
|
5212
|
+
*/
|
|
5213
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_monitortransition_save_async(ptr, persister) {
|
|
5214
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_monitortransition_save_async(ptr, persister);
|
|
5215
|
+
return BigInt.asUintN(64, ret);
|
|
5216
|
+
}
|
|
5217
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_monitortransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_monitortransition_save_async;
|
|
5218
|
+
|
|
5219
|
+
/**
|
|
5220
|
+
* @param {bigint} ptr
|
|
4332
5221
|
* @param {RustCallStatus} f_status_
|
|
4333
|
-
* @returns {
|
|
5222
|
+
* @returns {Uint8Array}
|
|
4334
5223
|
*/
|
|
4335
|
-
function
|
|
4336
|
-
const ptr0 = passArray8ToWasm0(outpoint, wasm.__wbindgen_malloc);
|
|
4337
|
-
const len0 = WASM_VECTOR_LEN;
|
|
5224
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_debug(ptr, f_status_) {
|
|
4338
5225
|
_assertClass(f_status_, RustCallStatus);
|
|
4339
|
-
const ret = wasm.
|
|
4340
|
-
|
|
5226
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5227
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5228
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5229
|
+
return v1;
|
|
5230
|
+
}
|
|
5231
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_debug;
|
|
5232
|
+
|
|
5233
|
+
/**
|
|
5234
|
+
* @param {bigint} ptr
|
|
5235
|
+
* @param {RustCallStatus} f_status_
|
|
5236
|
+
* @returns {Uint8Array}
|
|
5237
|
+
*/
|
|
5238
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_display(ptr, f_status_) {
|
|
5239
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5240
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5241
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5242
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5243
|
+
return v1;
|
|
5244
|
+
}
|
|
5245
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_ohttperror_uniffi_trait_display;
|
|
5246
|
+
|
|
5247
|
+
/**
|
|
5248
|
+
* @param {bigint} ptr
|
|
5249
|
+
* @param {RustCallStatus} f_status_
|
|
5250
|
+
* @returns {Uint8Array}
|
|
5251
|
+
*/
|
|
5252
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5253
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5254
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5255
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5256
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5257
|
+
return v1;
|
|
5258
|
+
}
|
|
5259
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_debug;
|
|
5260
|
+
|
|
5261
|
+
/**
|
|
5262
|
+
* @param {bigint} ptr
|
|
5263
|
+
* @param {RustCallStatus} f_status_
|
|
5264
|
+
* @returns {Uint8Array}
|
|
5265
|
+
*/
|
|
5266
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_display(ptr, f_status_) {
|
|
5267
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5268
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5269
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5270
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5271
|
+
return v1;
|
|
5272
|
+
}
|
|
5273
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_outputsubstitutionprotocolerror_uniffi_trait_display;
|
|
5274
|
+
|
|
5275
|
+
/**
|
|
5276
|
+
* @param {bigint} ptr
|
|
5277
|
+
* @param {RustCallStatus} f_status_
|
|
5278
|
+
* @returns {bigint}
|
|
5279
|
+
*/
|
|
5280
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_outputsunknown_cancel(ptr, f_status_) {
|
|
5281
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5282
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_outputsunknown_cancel(ptr, f_status_.__wbg_ptr);
|
|
5283
|
+
return BigInt.asUintN(64, ret);
|
|
4341
5284
|
}
|
|
4342
|
-
exports.
|
|
5285
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_outputsunknown_cancel = ubrn_uniffi_payjoin_ffi_fn_method_outputsunknown_cancel;
|
|
4343
5286
|
|
|
4344
5287
|
/**
|
|
4345
5288
|
* @param {bigint} ptr
|
|
@@ -4367,6 +5310,29 @@ function ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save(ptr, pe
|
|
|
4367
5310
|
}
|
|
4368
5311
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save = ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save;
|
|
4369
5312
|
|
|
5313
|
+
/**
|
|
5314
|
+
* @param {bigint} ptr
|
|
5315
|
+
* @param {bigint} persister
|
|
5316
|
+
* @returns {bigint}
|
|
5317
|
+
*/
|
|
5318
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save_async(ptr, persister) {
|
|
5319
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save_async(ptr, persister);
|
|
5320
|
+
return BigInt.asUintN(64, ret);
|
|
5321
|
+
}
|
|
5322
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_outputsunknowntransition_save_async;
|
|
5323
|
+
|
|
5324
|
+
/**
|
|
5325
|
+
* @param {bigint} ptr
|
|
5326
|
+
* @param {RustCallStatus} f_status_
|
|
5327
|
+
* @returns {bigint}
|
|
5328
|
+
*/
|
|
5329
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposal_cancel(ptr, f_status_) {
|
|
5330
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5331
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposal_cancel(ptr, f_status_.__wbg_ptr);
|
|
5332
|
+
return BigInt.asUintN(64, ret);
|
|
5333
|
+
}
|
|
5334
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposal_cancel = ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposal_cancel;
|
|
5335
|
+
|
|
4370
5336
|
/**
|
|
4371
5337
|
* @param {bigint} ptr
|
|
4372
5338
|
* @param {Uint8Array} ohttp_relay
|
|
@@ -4441,6 +5407,125 @@ function ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save(ptr, p
|
|
|
4441
5407
|
}
|
|
4442
5408
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save = ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save;
|
|
4443
5409
|
|
|
5410
|
+
/**
|
|
5411
|
+
* @param {bigint} ptr
|
|
5412
|
+
* @param {bigint} persister
|
|
5413
|
+
* @returns {bigint}
|
|
5414
|
+
*/
|
|
5415
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save_async(ptr, persister) {
|
|
5416
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save_async(ptr, persister);
|
|
5417
|
+
return BigInt.asUintN(64, ret);
|
|
5418
|
+
}
|
|
5419
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_payjoinproposaltransition_save_async;
|
|
5420
|
+
|
|
5421
|
+
/**
|
|
5422
|
+
* @param {bigint} ptr
|
|
5423
|
+
* @param {RustCallStatus} f_status_
|
|
5424
|
+
* @returns {Uint8Array}
|
|
5425
|
+
*/
|
|
5426
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_debug(ptr, f_status_) {
|
|
5427
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5428
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5429
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5430
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5431
|
+
return v1;
|
|
5432
|
+
}
|
|
5433
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_debug;
|
|
5434
|
+
|
|
5435
|
+
/**
|
|
5436
|
+
* @param {bigint} ptr
|
|
5437
|
+
* @param {RustCallStatus} f_status_
|
|
5438
|
+
* @returns {Uint8Array}
|
|
5439
|
+
*/
|
|
5440
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_display(ptr, f_status_) {
|
|
5441
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5442
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5443
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5444
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5445
|
+
return v1;
|
|
5446
|
+
}
|
|
5447
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_display;
|
|
5448
|
+
|
|
5449
|
+
/**
|
|
5450
|
+
* @param {bigint} ptr
|
|
5451
|
+
* @param {bigint} other
|
|
5452
|
+
* @param {RustCallStatus} f_status_
|
|
5453
|
+
* @returns {number}
|
|
5454
|
+
*/
|
|
5455
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_eq(ptr, other, f_status_) {
|
|
5456
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5457
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_eq(ptr, other, f_status_.__wbg_ptr);
|
|
5458
|
+
return ret;
|
|
5459
|
+
}
|
|
5460
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_eq = ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_eq;
|
|
5461
|
+
|
|
5462
|
+
/**
|
|
5463
|
+
* @param {bigint} ptr
|
|
5464
|
+
* @param {bigint} other
|
|
5465
|
+
* @param {RustCallStatus} f_status_
|
|
5466
|
+
* @returns {number}
|
|
5467
|
+
*/
|
|
5468
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_ne(ptr, other, f_status_) {
|
|
5469
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5470
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_ne(ptr, other, f_status_.__wbg_ptr);
|
|
5471
|
+
return ret;
|
|
5472
|
+
}
|
|
5473
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_ne = ubrn_uniffi_payjoin_ffi_fn_method_pjnotsupported_uniffi_trait_eq_ne;
|
|
5474
|
+
|
|
5475
|
+
/**
|
|
5476
|
+
* @param {bigint} ptr
|
|
5477
|
+
* @param {RustCallStatus} f_status_
|
|
5478
|
+
* @returns {Uint8Array}
|
|
5479
|
+
*/
|
|
5480
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5481
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5482
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5483
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5484
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5485
|
+
return v1;
|
|
5486
|
+
}
|
|
5487
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_debug;
|
|
5488
|
+
|
|
5489
|
+
/**
|
|
5490
|
+
* @param {bigint} ptr
|
|
5491
|
+
* @param {RustCallStatus} f_status_
|
|
5492
|
+
* @returns {Uint8Array}
|
|
5493
|
+
*/
|
|
5494
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_display(ptr, f_status_) {
|
|
5495
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5496
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5497
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5498
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5499
|
+
return v1;
|
|
5500
|
+
}
|
|
5501
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_display;
|
|
5502
|
+
|
|
5503
|
+
/**
|
|
5504
|
+
* @param {bigint} ptr
|
|
5505
|
+
* @param {bigint} other
|
|
5506
|
+
* @param {RustCallStatus} f_status_
|
|
5507
|
+
* @returns {number}
|
|
5508
|
+
*/
|
|
5509
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_eq(ptr, other, f_status_) {
|
|
5510
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5511
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_eq(ptr, other, f_status_.__wbg_ptr);
|
|
5512
|
+
return ret;
|
|
5513
|
+
}
|
|
5514
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_eq = ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_eq;
|
|
5515
|
+
|
|
5516
|
+
/**
|
|
5517
|
+
* @param {bigint} ptr
|
|
5518
|
+
* @param {bigint} other
|
|
5519
|
+
* @param {RustCallStatus} f_status_
|
|
5520
|
+
* @returns {number}
|
|
5521
|
+
*/
|
|
5522
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_ne(ptr, other, f_status_) {
|
|
5523
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5524
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_ne(ptr, other, f_status_.__wbg_ptr);
|
|
5525
|
+
return ret;
|
|
5526
|
+
}
|
|
5527
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_ne = ubrn_uniffi_payjoin_ffi_fn_method_pjparseerror_uniffi_trait_eq_ne;
|
|
5528
|
+
|
|
4444
5529
|
/**
|
|
4445
5530
|
* @param {bigint} ptr
|
|
4446
5531
|
* @param {RustCallStatus} f_status_
|
|
@@ -4495,20 +5580,32 @@ function ubrn_uniffi_payjoin_ffi_fn_method_pjuri_pj_endpoint(ptr, f_status_) {
|
|
|
4495
5580
|
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
4496
5581
|
return v1;
|
|
4497
5582
|
}
|
|
4498
|
-
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjuri_pj_endpoint = ubrn_uniffi_payjoin_ffi_fn_method_pjuri_pj_endpoint;
|
|
5583
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjuri_pj_endpoint = ubrn_uniffi_payjoin_ffi_fn_method_pjuri_pj_endpoint;
|
|
5584
|
+
|
|
5585
|
+
/**
|
|
5586
|
+
* @param {bigint} ptr
|
|
5587
|
+
* @param {bigint} amount_sats
|
|
5588
|
+
* @param {RustCallStatus} f_status_
|
|
5589
|
+
* @returns {bigint}
|
|
5590
|
+
*/
|
|
5591
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pjuri_set_amount_sats(ptr, amount_sats, f_status_) {
|
|
5592
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5593
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pjuri_set_amount_sats(ptr, amount_sats, f_status_.__wbg_ptr);
|
|
5594
|
+
return BigInt.asUintN(64, ret);
|
|
5595
|
+
}
|
|
5596
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pjuri_set_amount_sats = ubrn_uniffi_payjoin_ffi_fn_method_pjuri_set_amount_sats;
|
|
4499
5597
|
|
|
4500
5598
|
/**
|
|
4501
5599
|
* @param {bigint} ptr
|
|
4502
|
-
* @param {bigint} amount_sats
|
|
4503
5600
|
* @param {RustCallStatus} f_status_
|
|
4504
5601
|
* @returns {bigint}
|
|
4505
5602
|
*/
|
|
4506
|
-
function
|
|
5603
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposal_cancel(ptr, f_status_) {
|
|
4507
5604
|
_assertClass(f_status_, RustCallStatus);
|
|
4508
|
-
const ret = wasm.
|
|
5605
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposal_cancel(ptr, f_status_.__wbg_ptr);
|
|
4509
5606
|
return BigInt.asUintN(64, ret);
|
|
4510
5607
|
}
|
|
4511
|
-
exports.
|
|
5608
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposal_cancel = ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposal_cancel;
|
|
4512
5609
|
|
|
4513
5610
|
/**
|
|
4514
5611
|
* @param {bigint} ptr
|
|
@@ -4558,6 +5655,17 @@ function ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save(ptr
|
|
|
4558
5655
|
}
|
|
4559
5656
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save = ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save;
|
|
4560
5657
|
|
|
5658
|
+
/**
|
|
5659
|
+
* @param {bigint} ptr
|
|
5660
|
+
* @param {bigint} persister
|
|
5661
|
+
* @returns {bigint}
|
|
5662
|
+
*/
|
|
5663
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save_async(ptr, persister) {
|
|
5664
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save_async(ptr, persister);
|
|
5665
|
+
return BigInt.asUintN(64, ret);
|
|
5666
|
+
}
|
|
5667
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_pollingforproposaltransition_save_async;
|
|
5668
|
+
|
|
4561
5669
|
/**
|
|
4562
5670
|
* @param {bigint} ptr
|
|
4563
5671
|
* @param {Uint8Array} psbt
|
|
@@ -4575,6 +5683,46 @@ function ubrn_uniffi_payjoin_ffi_fn_method_processpsbt_callback(ptr, psbt, f_sta
|
|
|
4575
5683
|
}
|
|
4576
5684
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_processpsbt_callback = ubrn_uniffi_payjoin_ffi_fn_method_processpsbt_callback;
|
|
4577
5685
|
|
|
5686
|
+
/**
|
|
5687
|
+
* @param {bigint} ptr
|
|
5688
|
+
* @param {RustCallStatus} f_status_
|
|
5689
|
+
* @returns {Uint8Array}
|
|
5690
|
+
*/
|
|
5691
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5692
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5693
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5694
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5695
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5696
|
+
return v1;
|
|
5697
|
+
}
|
|
5698
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_debug;
|
|
5699
|
+
|
|
5700
|
+
/**
|
|
5701
|
+
* @param {bigint} ptr
|
|
5702
|
+
* @param {RustCallStatus} f_status_
|
|
5703
|
+
* @returns {Uint8Array}
|
|
5704
|
+
*/
|
|
5705
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_display(ptr, f_status_) {
|
|
5706
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5707
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5708
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5709
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5710
|
+
return v1;
|
|
5711
|
+
}
|
|
5712
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_protocolerror_uniffi_trait_display;
|
|
5713
|
+
|
|
5714
|
+
/**
|
|
5715
|
+
* @param {bigint} ptr
|
|
5716
|
+
* @param {RustCallStatus} f_status_
|
|
5717
|
+
* @returns {bigint}
|
|
5718
|
+
*/
|
|
5719
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_cancel(ptr, f_status_) {
|
|
5720
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5721
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_cancel(ptr, f_status_.__wbg_ptr);
|
|
5722
|
+
return BigInt.asUintN(64, ret);
|
|
5723
|
+
}
|
|
5724
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_cancel = ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_cancel;
|
|
5725
|
+
|
|
4578
5726
|
/**
|
|
4579
5727
|
* @param {bigint} ptr
|
|
4580
5728
|
* @param {bigint} process_psbt
|
|
@@ -4591,12 +5739,14 @@ exports.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_finalize_proposal
|
|
|
4591
5739
|
/**
|
|
4592
5740
|
* @param {bigint} ptr
|
|
4593
5741
|
* @param {RustCallStatus} f_status_
|
|
4594
|
-
* @returns {
|
|
5742
|
+
* @returns {Uint8Array}
|
|
4595
5743
|
*/
|
|
4596
5744
|
function ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_psbt_to_sign(ptr, f_status_) {
|
|
4597
5745
|
_assertClass(f_status_, RustCallStatus);
|
|
4598
5746
|
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_psbt_to_sign(ptr, f_status_.__wbg_ptr);
|
|
4599
|
-
|
|
5747
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5748
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5749
|
+
return v1;
|
|
4600
5750
|
}
|
|
4601
5751
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_psbt_to_sign = ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposal_psbt_to_sign;
|
|
4602
5752
|
|
|
@@ -4613,6 +5763,45 @@ function ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save(pt
|
|
|
4613
5763
|
}
|
|
4614
5764
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save = ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save;
|
|
4615
5765
|
|
|
5766
|
+
/**
|
|
5767
|
+
* @param {bigint} ptr
|
|
5768
|
+
* @param {bigint} persister
|
|
5769
|
+
* @returns {bigint}
|
|
5770
|
+
*/
|
|
5771
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save_async(ptr, persister) {
|
|
5772
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save_async(ptr, persister);
|
|
5773
|
+
return BigInt.asUintN(64, ret);
|
|
5774
|
+
}
|
|
5775
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_provisionalproposaltransition_save_async;
|
|
5776
|
+
|
|
5777
|
+
/**
|
|
5778
|
+
* @param {bigint} ptr
|
|
5779
|
+
* @param {RustCallStatus} f_status_
|
|
5780
|
+
* @returns {Uint8Array}
|
|
5781
|
+
*/
|
|
5782
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5783
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5784
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5785
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5786
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5787
|
+
return v1;
|
|
5788
|
+
}
|
|
5789
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_debug;
|
|
5790
|
+
|
|
5791
|
+
/**
|
|
5792
|
+
* @param {bigint} ptr
|
|
5793
|
+
* @param {RustCallStatus} f_status_
|
|
5794
|
+
* @returns {Uint8Array}
|
|
5795
|
+
*/
|
|
5796
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_display(ptr, f_status_) {
|
|
5797
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5798
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5799
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5800
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5801
|
+
return v1;
|
|
5802
|
+
}
|
|
5803
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_psbtinputerror_uniffi_trait_display;
|
|
5804
|
+
|
|
4616
5805
|
/**
|
|
4617
5806
|
* @param {bigint} ptr
|
|
4618
5807
|
* @param {RustCallStatus} f_status_
|
|
@@ -4664,6 +5853,34 @@ function ubrn_uniffi_payjoin_ffi_fn_method_receiverbuilder_with_max_fee_rate(ptr
|
|
|
4664
5853
|
}
|
|
4665
5854
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_receiverbuilder_with_max_fee_rate = ubrn_uniffi_payjoin_ffi_fn_method_receiverbuilder_with_max_fee_rate;
|
|
4666
5855
|
|
|
5856
|
+
/**
|
|
5857
|
+
* @param {bigint} ptr
|
|
5858
|
+
* @param {RustCallStatus} f_status_
|
|
5859
|
+
* @returns {Uint8Array}
|
|
5860
|
+
*/
|
|
5861
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5862
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5863
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5864
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5865
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5866
|
+
return v1;
|
|
5867
|
+
}
|
|
5868
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_debug;
|
|
5869
|
+
|
|
5870
|
+
/**
|
|
5871
|
+
* @param {bigint} ptr
|
|
5872
|
+
* @param {RustCallStatus} f_status_
|
|
5873
|
+
* @returns {Uint8Array}
|
|
5874
|
+
*/
|
|
5875
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_display(ptr, f_status_) {
|
|
5876
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5877
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5878
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5879
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5880
|
+
return v1;
|
|
5881
|
+
}
|
|
5882
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_receiverreplayerror_uniffi_trait_display;
|
|
5883
|
+
|
|
4667
5884
|
/**
|
|
4668
5885
|
* @param {bigint} ptr
|
|
4669
5886
|
* @param {RustCallStatus} f_status_
|
|
@@ -4742,6 +5959,34 @@ function ubrn_uniffi_payjoin_ffi_fn_method_replayresult_state(ptr, f_status_) {
|
|
|
4742
5959
|
}
|
|
4743
5960
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_replayresult_state = ubrn_uniffi_payjoin_ffi_fn_method_replayresult_state;
|
|
4744
5961
|
|
|
5962
|
+
/**
|
|
5963
|
+
* @param {bigint} ptr
|
|
5964
|
+
* @param {RustCallStatus} f_status_
|
|
5965
|
+
* @returns {Uint8Array}
|
|
5966
|
+
*/
|
|
5967
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_debug(ptr, f_status_) {
|
|
5968
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5969
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
5970
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5971
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5972
|
+
return v1;
|
|
5973
|
+
}
|
|
5974
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_debug;
|
|
5975
|
+
|
|
5976
|
+
/**
|
|
5977
|
+
* @param {bigint} ptr
|
|
5978
|
+
* @param {RustCallStatus} f_status_
|
|
5979
|
+
* @returns {Uint8Array}
|
|
5980
|
+
*/
|
|
5981
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_display(ptr, f_status_) {
|
|
5982
|
+
_assertClass(f_status_, RustCallStatus);
|
|
5983
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
5984
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
5985
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
5986
|
+
return v1;
|
|
5987
|
+
}
|
|
5988
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_selectionerror_uniffi_trait_display;
|
|
5989
|
+
|
|
4745
5990
|
/**
|
|
4746
5991
|
* @param {bigint} ptr
|
|
4747
5992
|
* @param {RustCallStatus} f_status_
|
|
@@ -4798,6 +6043,60 @@ function ubrn_uniffi_payjoin_ffi_fn_method_senderbuilder_build_with_additional_f
|
|
|
4798
6043
|
}
|
|
4799
6044
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_senderbuilder_build_with_additional_fee = ubrn_uniffi_payjoin_ffi_fn_method_senderbuilder_build_with_additional_fee;
|
|
4800
6045
|
|
|
6046
|
+
/**
|
|
6047
|
+
* @param {bigint} ptr
|
|
6048
|
+
* @param {bigint} persister
|
|
6049
|
+
* @param {RustCallStatus} f_status_
|
|
6050
|
+
* @returns {Uint8Array}
|
|
6051
|
+
*/
|
|
6052
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save(ptr, persister, f_status_) {
|
|
6053
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6054
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save(ptr, persister, f_status_.__wbg_ptr);
|
|
6055
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6056
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6057
|
+
return v1;
|
|
6058
|
+
}
|
|
6059
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save = ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save;
|
|
6060
|
+
|
|
6061
|
+
/**
|
|
6062
|
+
* @param {bigint} ptr
|
|
6063
|
+
* @param {bigint} persister
|
|
6064
|
+
* @returns {bigint}
|
|
6065
|
+
*/
|
|
6066
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save_async(ptr, persister) {
|
|
6067
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save_async(ptr, persister);
|
|
6068
|
+
return BigInt.asUintN(64, ret);
|
|
6069
|
+
}
|
|
6070
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_sendercanceltransition_save_async;
|
|
6071
|
+
|
|
6072
|
+
/**
|
|
6073
|
+
* @param {bigint} ptr
|
|
6074
|
+
* @param {RustCallStatus} f_status_
|
|
6075
|
+
* @returns {Uint8Array}
|
|
6076
|
+
*/
|
|
6077
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_debug(ptr, f_status_) {
|
|
6078
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6079
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6080
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6081
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6082
|
+
return v1;
|
|
6083
|
+
}
|
|
6084
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_debug;
|
|
6085
|
+
|
|
6086
|
+
/**
|
|
6087
|
+
* @param {bigint} ptr
|
|
6088
|
+
* @param {RustCallStatus} f_status_
|
|
6089
|
+
* @returns {Uint8Array}
|
|
6090
|
+
*/
|
|
6091
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_display(ptr, f_status_) {
|
|
6092
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6093
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6094
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6095
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6096
|
+
return v1;
|
|
6097
|
+
}
|
|
6098
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_senderreplayerror_uniffi_trait_display;
|
|
6099
|
+
|
|
4801
6100
|
/**
|
|
4802
6101
|
* @param {bigint} ptr
|
|
4803
6102
|
* @param {RustCallStatus} f_status_
|
|
@@ -4841,38 +6140,146 @@ exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionevent_to_json = ubrn_unif
|
|
|
4841
6140
|
/**
|
|
4842
6141
|
* @param {bigint} ptr
|
|
4843
6142
|
* @param {RustCallStatus} f_status_
|
|
4844
|
-
* @returns {
|
|
6143
|
+
* @returns {Uint8Array}
|
|
6144
|
+
*/
|
|
6145
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_fallback_tx(ptr, f_status_) {
|
|
6146
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6147
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_fallback_tx(ptr, f_status_.__wbg_ptr);
|
|
6148
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6149
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6150
|
+
return v1;
|
|
6151
|
+
}
|
|
6152
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_fallback_tx = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_fallback_tx;
|
|
6153
|
+
|
|
6154
|
+
/**
|
|
6155
|
+
* @param {bigint} ptr
|
|
6156
|
+
* @param {RustCallStatus} f_status_
|
|
6157
|
+
* @returns {bigint}
|
|
6158
|
+
*/
|
|
6159
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_pj_param(ptr, f_status_) {
|
|
6160
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6161
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_pj_param(ptr, f_status_.__wbg_ptr);
|
|
6162
|
+
return BigInt.asUintN(64, ret);
|
|
6163
|
+
}
|
|
6164
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_pj_param = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_pj_param;
|
|
6165
|
+
|
|
6166
|
+
/**
|
|
6167
|
+
* @param {bigint} ptr
|
|
6168
|
+
* @param {RustCallStatus} f_status_
|
|
6169
|
+
* @returns {bigint}
|
|
6170
|
+
*/
|
|
6171
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_status(ptr, f_status_) {
|
|
6172
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6173
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_status(ptr, f_status_.__wbg_ptr);
|
|
6174
|
+
return BigInt.asUintN(64, ret);
|
|
6175
|
+
}
|
|
6176
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_status = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionhistory_status;
|
|
6177
|
+
|
|
6178
|
+
/**
|
|
6179
|
+
* @param {bigint} ptr
|
|
6180
|
+
* @param {RustCallStatus} f_status_
|
|
6181
|
+
* @returns {number}
|
|
6182
|
+
*/
|
|
6183
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_cancelled(ptr, f_status_) {
|
|
6184
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6185
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_cancelled(ptr, f_status_.__wbg_ptr);
|
|
6186
|
+
return ret;
|
|
6187
|
+
}
|
|
6188
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_cancelled = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_cancelled;
|
|
6189
|
+
|
|
6190
|
+
/**
|
|
6191
|
+
* @param {bigint} ptr
|
|
6192
|
+
* @param {RustCallStatus} f_status_
|
|
6193
|
+
* @returns {number}
|
|
6194
|
+
*/
|
|
6195
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_failure(ptr, f_status_) {
|
|
6196
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6197
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_failure(ptr, f_status_.__wbg_ptr);
|
|
6198
|
+
return ret;
|
|
6199
|
+
}
|
|
6200
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_failure = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_failure;
|
|
6201
|
+
|
|
6202
|
+
/**
|
|
6203
|
+
* @param {bigint} ptr
|
|
6204
|
+
* @param {RustCallStatus} f_status_
|
|
6205
|
+
* @returns {number}
|
|
6206
|
+
*/
|
|
6207
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_success(ptr, f_status_) {
|
|
6208
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6209
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_success(ptr, f_status_.__wbg_ptr);
|
|
6210
|
+
return ret;
|
|
6211
|
+
}
|
|
6212
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_success = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_is_success;
|
|
6213
|
+
|
|
6214
|
+
/**
|
|
6215
|
+
* @param {bigint} ptr
|
|
6216
|
+
* @param {RustCallStatus} f_status_
|
|
6217
|
+
* @returns {Uint8Array}
|
|
6218
|
+
*/
|
|
6219
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_success_psbt_base64(ptr, f_status_) {
|
|
6220
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6221
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_success_psbt_base64(ptr, f_status_.__wbg_ptr);
|
|
6222
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6223
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6224
|
+
return v1;
|
|
6225
|
+
}
|
|
6226
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_success_psbt_base64 = ubrn_uniffi_payjoin_ffi_fn_method_sendersessionoutcome_success_psbt_base64;
|
|
6227
|
+
|
|
6228
|
+
/**
|
|
6229
|
+
* @param {bigint} ptr
|
|
6230
|
+
* @param {RustCallStatus} f_status_
|
|
6231
|
+
* @returns {Uint8Array}
|
|
6232
|
+
*/
|
|
6233
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_debug(ptr, f_status_) {
|
|
6234
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6235
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6236
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6237
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6238
|
+
return v1;
|
|
6239
|
+
}
|
|
6240
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_debug;
|
|
6241
|
+
|
|
6242
|
+
/**
|
|
6243
|
+
* @param {bigint} ptr
|
|
6244
|
+
* @param {RustCallStatus} f_status_
|
|
6245
|
+
* @returns {Uint8Array}
|
|
4845
6246
|
*/
|
|
4846
|
-
function
|
|
6247
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_display(ptr, f_status_) {
|
|
4847
6248
|
_assertClass(f_status_, RustCallStatus);
|
|
4848
|
-
const ret = wasm.
|
|
4849
|
-
|
|
6249
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6250
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6251
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6252
|
+
return v1;
|
|
4850
6253
|
}
|
|
4851
|
-
exports.
|
|
6254
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_serdejsonerror_uniffi_trait_display;
|
|
4852
6255
|
|
|
4853
6256
|
/**
|
|
4854
6257
|
* @param {bigint} ptr
|
|
4855
6258
|
* @param {RustCallStatus} f_status_
|
|
4856
|
-
* @returns {
|
|
6259
|
+
* @returns {Uint8Array}
|
|
4857
6260
|
*/
|
|
4858
|
-
function
|
|
6261
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_debug(ptr, f_status_) {
|
|
4859
6262
|
_assertClass(f_status_, RustCallStatus);
|
|
4860
|
-
const ret = wasm.
|
|
4861
|
-
|
|
6263
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6264
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6265
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6266
|
+
return v1;
|
|
4862
6267
|
}
|
|
4863
|
-
exports.
|
|
6268
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_debug;
|
|
4864
6269
|
|
|
4865
6270
|
/**
|
|
4866
6271
|
* @param {bigint} ptr
|
|
4867
6272
|
* @param {RustCallStatus} f_status_
|
|
4868
|
-
* @returns {
|
|
6273
|
+
* @returns {Uint8Array}
|
|
4869
6274
|
*/
|
|
4870
|
-
function
|
|
6275
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_display(ptr, f_status_) {
|
|
4871
6276
|
_assertClass(f_status_, RustCallStatus);
|
|
4872
|
-
const ret = wasm.
|
|
4873
|
-
|
|
6277
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6278
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6279
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6280
|
+
return v1;
|
|
4874
6281
|
}
|
|
4875
|
-
exports.
|
|
6282
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_sessionerror_uniffi_trait_display;
|
|
4876
6283
|
|
|
4877
6284
|
/**
|
|
4878
6285
|
* @param {bigint} ptr
|
|
@@ -4903,6 +6310,18 @@ function ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_assume_inter
|
|
|
4903
6310
|
}
|
|
4904
6311
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_assume_interactive_receiver = ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_assume_interactive_receiver;
|
|
4905
6312
|
|
|
6313
|
+
/**
|
|
6314
|
+
* @param {bigint} ptr
|
|
6315
|
+
* @param {RustCallStatus} f_status_
|
|
6316
|
+
* @returns {bigint}
|
|
6317
|
+
*/
|
|
6318
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_cancel(ptr, f_status_) {
|
|
6319
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6320
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_cancel(ptr, f_status_.__wbg_ptr);
|
|
6321
|
+
return BigInt.asUintN(64, ret);
|
|
6322
|
+
}
|
|
6323
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_cancel = ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayload_cancel;
|
|
6324
|
+
|
|
4906
6325
|
/**
|
|
4907
6326
|
* @param {bigint} ptr
|
|
4908
6327
|
* @param {Uint8Array} min_fee_rate
|
|
@@ -4932,6 +6351,17 @@ function ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_sa
|
|
|
4932
6351
|
}
|
|
4933
6352
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save = ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save;
|
|
4934
6353
|
|
|
6354
|
+
/**
|
|
6355
|
+
* @param {bigint} ptr
|
|
6356
|
+
* @param {bigint} persister
|
|
6357
|
+
* @returns {bigint}
|
|
6358
|
+
*/
|
|
6359
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save_async(ptr, persister) {
|
|
6360
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save_async(ptr, persister);
|
|
6361
|
+
return BigInt.asUintN(64, ret);
|
|
6362
|
+
}
|
|
6363
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_uncheckedoriginalpayloadtransition_save_async;
|
|
6364
|
+
|
|
4935
6365
|
/**
|
|
4936
6366
|
* @param {bigint} ptr
|
|
4937
6367
|
* @param {RustCallStatus} f_status_
|
|
@@ -5042,6 +6472,34 @@ function ubrn_uniffi_payjoin_ffi_fn_method_url_query(ptr, f_status_) {
|
|
|
5042
6472
|
}
|
|
5043
6473
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_url_query = ubrn_uniffi_payjoin_ffi_fn_method_url_query;
|
|
5044
6474
|
|
|
6475
|
+
/**
|
|
6476
|
+
* @param {bigint} ptr
|
|
6477
|
+
* @param {RustCallStatus} f_status_
|
|
6478
|
+
* @returns {Uint8Array}
|
|
6479
|
+
*/
|
|
6480
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_debug(ptr, f_status_) {
|
|
6481
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6482
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6483
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6484
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6485
|
+
return v1;
|
|
6486
|
+
}
|
|
6487
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_debug;
|
|
6488
|
+
|
|
6489
|
+
/**
|
|
6490
|
+
* @param {bigint} ptr
|
|
6491
|
+
* @param {RustCallStatus} f_status_
|
|
6492
|
+
* @returns {Uint8Array}
|
|
6493
|
+
*/
|
|
6494
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_display(ptr, f_status_) {
|
|
6495
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6496
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6497
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6498
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6499
|
+
return v1;
|
|
6500
|
+
}
|
|
6501
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_urlparseerror_uniffi_trait_display;
|
|
6502
|
+
|
|
5045
6503
|
/**
|
|
5046
6504
|
* @param {bigint} ptr
|
|
5047
6505
|
* @param {Uint8Array} response
|
|
@@ -5059,6 +6517,34 @@ function ubrn_uniffi_payjoin_ffi_fn_method_v1context_process_response(ptr, respo
|
|
|
5059
6517
|
}
|
|
5060
6518
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_v1context_process_response = ubrn_uniffi_payjoin_ffi_fn_method_v1context_process_response;
|
|
5061
6519
|
|
|
6520
|
+
/**
|
|
6521
|
+
* @param {bigint} ptr
|
|
6522
|
+
* @param {RustCallStatus} f_status_
|
|
6523
|
+
* @returns {Uint8Array}
|
|
6524
|
+
*/
|
|
6525
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_debug(ptr, f_status_) {
|
|
6526
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6527
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6528
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6529
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6530
|
+
return v1;
|
|
6531
|
+
}
|
|
6532
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_debug;
|
|
6533
|
+
|
|
6534
|
+
/**
|
|
6535
|
+
* @param {bigint} ptr
|
|
6536
|
+
* @param {RustCallStatus} f_status_
|
|
6537
|
+
* @returns {Uint8Array}
|
|
6538
|
+
*/
|
|
6539
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_display(ptr, f_status_) {
|
|
6540
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6541
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6542
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6543
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6544
|
+
return v1;
|
|
6545
|
+
}
|
|
6546
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_validationerror_uniffi_trait_display;
|
|
6547
|
+
|
|
5062
6548
|
/**
|
|
5063
6549
|
* @param {bigint} ptr
|
|
5064
6550
|
* @param {Uint8Array} min_fee_rate_sat_per_vb
|
|
@@ -5077,6 +6563,18 @@ function ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_apply_fee_range(ptr, mi
|
|
|
5077
6563
|
}
|
|
5078
6564
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_apply_fee_range = ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_apply_fee_range;
|
|
5079
6565
|
|
|
6566
|
+
/**
|
|
6567
|
+
* @param {bigint} ptr
|
|
6568
|
+
* @param {RustCallStatus} f_status_
|
|
6569
|
+
* @returns {bigint}
|
|
6570
|
+
*/
|
|
6571
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_cancel(ptr, f_status_) {
|
|
6572
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6573
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_cancel(ptr, f_status_.__wbg_ptr);
|
|
6574
|
+
return BigInt.asUintN(64, ret);
|
|
6575
|
+
}
|
|
6576
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_cancel = ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerange_cancel;
|
|
6577
|
+
|
|
5080
6578
|
/**
|
|
5081
6579
|
* @param {bigint} ptr
|
|
5082
6580
|
* @param {bigint} persister
|
|
@@ -5090,6 +6588,29 @@ function ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save(ptr, per
|
|
|
5090
6588
|
}
|
|
5091
6589
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save = ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save;
|
|
5092
6590
|
|
|
6591
|
+
/**
|
|
6592
|
+
* @param {bigint} ptr
|
|
6593
|
+
* @param {bigint} persister
|
|
6594
|
+
* @returns {bigint}
|
|
6595
|
+
*/
|
|
6596
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save_async(ptr, persister) {
|
|
6597
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save_async(ptr, persister);
|
|
6598
|
+
return BigInt.asUintN(64, ret);
|
|
6599
|
+
}
|
|
6600
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_wantsfeerangetransition_save_async;
|
|
6601
|
+
|
|
6602
|
+
/**
|
|
6603
|
+
* @param {bigint} ptr
|
|
6604
|
+
* @param {RustCallStatus} f_status_
|
|
6605
|
+
* @returns {bigint}
|
|
6606
|
+
*/
|
|
6607
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsinputs_cancel(ptr, f_status_) {
|
|
6608
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6609
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsinputs_cancel(ptr, f_status_.__wbg_ptr);
|
|
6610
|
+
return BigInt.asUintN(64, ret);
|
|
6611
|
+
}
|
|
6612
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsinputs_cancel = ubrn_uniffi_payjoin_ffi_fn_method_wantsinputs_cancel;
|
|
6613
|
+
|
|
5093
6614
|
/**
|
|
5094
6615
|
* @param {bigint} ptr
|
|
5095
6616
|
* @param {RustCallStatus} f_status_
|
|
@@ -5145,6 +6666,29 @@ function ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save(ptr, persi
|
|
|
5145
6666
|
}
|
|
5146
6667
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save = ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save;
|
|
5147
6668
|
|
|
6669
|
+
/**
|
|
6670
|
+
* @param {bigint} ptr
|
|
6671
|
+
* @param {bigint} persister
|
|
6672
|
+
* @returns {bigint}
|
|
6673
|
+
*/
|
|
6674
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save_async(ptr, persister) {
|
|
6675
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save_async(ptr, persister);
|
|
6676
|
+
return BigInt.asUintN(64, ret);
|
|
6677
|
+
}
|
|
6678
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_wantsinputstransition_save_async;
|
|
6679
|
+
|
|
6680
|
+
/**
|
|
6681
|
+
* @param {bigint} ptr
|
|
6682
|
+
* @param {RustCallStatus} f_status_
|
|
6683
|
+
* @returns {bigint}
|
|
6684
|
+
*/
|
|
6685
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_cancel(ptr, f_status_) {
|
|
6686
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6687
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_cancel(ptr, f_status_.__wbg_ptr);
|
|
6688
|
+
return BigInt.asUintN(64, ret);
|
|
6689
|
+
}
|
|
6690
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_cancel = ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_cancel;
|
|
6691
|
+
|
|
5148
6692
|
/**
|
|
5149
6693
|
* @param {bigint} ptr
|
|
5150
6694
|
* @param {RustCallStatus} f_status_
|
|
@@ -5174,28 +6718,32 @@ exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_output_substitution = ubr
|
|
|
5174
6718
|
/**
|
|
5175
6719
|
* @param {bigint} ptr
|
|
5176
6720
|
* @param {Uint8Array} replacement_outputs
|
|
5177
|
-
* @param {
|
|
6721
|
+
* @param {Uint8Array} drain_script_pubkey
|
|
5178
6722
|
* @param {RustCallStatus} f_status_
|
|
5179
6723
|
* @returns {bigint}
|
|
5180
6724
|
*/
|
|
5181
|
-
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs(ptr, replacement_outputs,
|
|
6725
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs(ptr, replacement_outputs, drain_script_pubkey, f_status_) {
|
|
5182
6726
|
const ptr0 = passArray8ToWasm0(replacement_outputs, wasm.__wbindgen_malloc);
|
|
5183
6727
|
const len0 = WASM_VECTOR_LEN;
|
|
6728
|
+
const ptr1 = passArray8ToWasm0(drain_script_pubkey, wasm.__wbindgen_malloc);
|
|
6729
|
+
const len1 = WASM_VECTOR_LEN;
|
|
5184
6730
|
_assertClass(f_status_, RustCallStatus);
|
|
5185
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs(ptr, ptr0, len0,
|
|
6731
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs(ptr, ptr0, len0, ptr1, len1, f_status_.__wbg_ptr);
|
|
5186
6732
|
return BigInt.asUintN(64, ret);
|
|
5187
6733
|
}
|
|
5188
6734
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs = ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_replace_receiver_outputs;
|
|
5189
6735
|
|
|
5190
6736
|
/**
|
|
5191
6737
|
* @param {bigint} ptr
|
|
5192
|
-
* @param {
|
|
6738
|
+
* @param {Uint8Array} output_script_pubkey
|
|
5193
6739
|
* @param {RustCallStatus} f_status_
|
|
5194
6740
|
* @returns {bigint}
|
|
5195
6741
|
*/
|
|
5196
|
-
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script(ptr,
|
|
6742
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script(ptr, output_script_pubkey, f_status_) {
|
|
6743
|
+
const ptr0 = passArray8ToWasm0(output_script_pubkey, wasm.__wbindgen_malloc);
|
|
6744
|
+
const len0 = WASM_VECTOR_LEN;
|
|
5197
6745
|
_assertClass(f_status_, RustCallStatus);
|
|
5198
|
-
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script(ptr,
|
|
6746
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script(ptr, ptr0, len0, f_status_.__wbg_ptr);
|
|
5199
6747
|
return BigInt.asUintN(64, ret);
|
|
5200
6748
|
}
|
|
5201
6749
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script = ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputs_substitute_receiver_script;
|
|
@@ -5213,6 +6761,57 @@ function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save(ptr, pers
|
|
|
5213
6761
|
}
|
|
5214
6762
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save = ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save;
|
|
5215
6763
|
|
|
6764
|
+
/**
|
|
6765
|
+
* @param {bigint} ptr
|
|
6766
|
+
* @param {bigint} persister
|
|
6767
|
+
* @returns {bigint}
|
|
6768
|
+
*/
|
|
6769
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save_async(ptr, persister) {
|
|
6770
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save_async(ptr, persister);
|
|
6771
|
+
return BigInt.asUintN(64, ret);
|
|
6772
|
+
}
|
|
6773
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_wantsoutputstransition_save_async;
|
|
6774
|
+
|
|
6775
|
+
/**
|
|
6776
|
+
* @param {bigint} ptr
|
|
6777
|
+
* @param {RustCallStatus} f_status_
|
|
6778
|
+
* @returns {Uint8Array}
|
|
6779
|
+
*/
|
|
6780
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_debug(ptr, f_status_) {
|
|
6781
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6782
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_debug(ptr, f_status_.__wbg_ptr);
|
|
6783
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6784
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6785
|
+
return v1;
|
|
6786
|
+
}
|
|
6787
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_debug = ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_debug;
|
|
6788
|
+
|
|
6789
|
+
/**
|
|
6790
|
+
* @param {bigint} ptr
|
|
6791
|
+
* @param {RustCallStatus} f_status_
|
|
6792
|
+
* @returns {Uint8Array}
|
|
6793
|
+
*/
|
|
6794
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_display(ptr, f_status_) {
|
|
6795
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6796
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_display(ptr, f_status_.__wbg_ptr);
|
|
6797
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
6798
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
6799
|
+
return v1;
|
|
6800
|
+
}
|
|
6801
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_display = ubrn_uniffi_payjoin_ffi_fn_method_wellknownerror_uniffi_trait_display;
|
|
6802
|
+
|
|
6803
|
+
/**
|
|
6804
|
+
* @param {bigint} ptr
|
|
6805
|
+
* @param {RustCallStatus} f_status_
|
|
6806
|
+
* @returns {bigint}
|
|
6807
|
+
*/
|
|
6808
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_withreplykey_cancel(ptr, f_status_) {
|
|
6809
|
+
_assertClass(f_status_, RustCallStatus);
|
|
6810
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_withreplykey_cancel(ptr, f_status_.__wbg_ptr);
|
|
6811
|
+
return BigInt.asUintN(64, ret);
|
|
6812
|
+
}
|
|
6813
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_withreplykey_cancel = ubrn_uniffi_payjoin_ffi_fn_method_withreplykey_cancel;
|
|
6814
|
+
|
|
5216
6815
|
/**
|
|
5217
6816
|
* @param {bigint} ptr
|
|
5218
6817
|
* @param {Uint8Array} ohttp_relay
|
|
@@ -5259,206 +6858,311 @@ function ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save(ptr, pers
|
|
|
5259
6858
|
}
|
|
5260
6859
|
exports.ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save = ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save;
|
|
5261
6860
|
|
|
6861
|
+
/**
|
|
6862
|
+
* @param {bigint} ptr
|
|
6863
|
+
* @param {bigint} persister
|
|
6864
|
+
* @returns {bigint}
|
|
6865
|
+
*/
|
|
6866
|
+
function ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save_async(ptr, persister) {
|
|
6867
|
+
const ret = wasm.ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save_async(ptr, persister);
|
|
6868
|
+
return BigInt.asUintN(64, ret);
|
|
6869
|
+
}
|
|
6870
|
+
exports.ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save_async = ubrn_uniffi_payjoin_ffi_fn_method_withreplykeytransition_save_async;
|
|
6871
|
+
const import1 = require("env");
|
|
6872
|
+
const import2 = require("env");
|
|
6873
|
+
const import3 = require("env");
|
|
6874
|
+
const import4 = require("env");
|
|
6875
|
+
|
|
5262
6876
|
function __wbg_get_imports() {
|
|
5263
6877
|
const import0 = {
|
|
5264
6878
|
__proto__: null,
|
|
5265
|
-
|
|
6879
|
+
__wbg___wbindgen_is_function_0095a73b8b156f76: function(arg0) {
|
|
5266
6880
|
const ret = typeof(arg0) === 'function';
|
|
5267
6881
|
return ret;
|
|
5268
6882
|
},
|
|
5269
|
-
|
|
6883
|
+
__wbg___wbindgen_is_object_5ae8e5880f2c1fbd: function(arg0) {
|
|
5270
6884
|
const val = arg0;
|
|
5271
6885
|
const ret = typeof(val) === 'object' && val !== null;
|
|
5272
6886
|
return ret;
|
|
5273
6887
|
},
|
|
5274
|
-
|
|
6888
|
+
__wbg___wbindgen_is_string_cd444516edc5b180: function(arg0) {
|
|
5275
6889
|
const ret = typeof(arg0) === 'string';
|
|
5276
6890
|
return ret;
|
|
5277
6891
|
},
|
|
5278
|
-
|
|
6892
|
+
__wbg___wbindgen_is_undefined_9e4d92534c42d778: function(arg0) {
|
|
5279
6893
|
const ret = arg0 === undefined;
|
|
5280
6894
|
return ret;
|
|
5281
6895
|
},
|
|
5282
|
-
|
|
6896
|
+
__wbg___wbindgen_throw_be289d5034ed271b: function(arg0, arg1) {
|
|
5283
6897
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5284
6898
|
},
|
|
5285
|
-
|
|
5286
|
-
const ret = arg0.
|
|
5287
|
-
|
|
6899
|
+
__wbg_callStatus_e29db39390b7a319: function(arg0) {
|
|
6900
|
+
const ret = arg0.callStatus;
|
|
6901
|
+
_assertClass(ret, RustCallStatus);
|
|
6902
|
+
var ptr1 = ret.__destroy_into_raw();
|
|
6903
|
+
return ptr1;
|
|
5288
6904
|
},
|
|
5289
|
-
|
|
5290
|
-
const ret = arg0.call(arg1, arg2);
|
|
5291
|
-
return ret;
|
|
5292
|
-
}, arguments); },
|
|
5293
|
-
__wbg_call_3cfdb5a72d36b900: function(arg0, arg1, arg2, arg3, arg4) {
|
|
6905
|
+
__wbg_call_0177324acba7cd47: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5294
6906
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5295
6907
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5296
6908
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5297
6909
|
return ret;
|
|
5298
6910
|
},
|
|
5299
|
-
|
|
5300
|
-
arg0.call(arg1, BigInt.asUintN(64, arg2));
|
|
6911
|
+
__wbg_call_1bcf92b7e9524752: function(arg0, arg1, arg2) {
|
|
6912
|
+
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2));
|
|
6913
|
+
return ret;
|
|
5301
6914
|
},
|
|
5302
|
-
|
|
6915
|
+
__wbg_call_252e042741dde503: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5303
6916
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5304
6917
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5305
6918
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5306
6919
|
return ret;
|
|
5307
6920
|
},
|
|
5308
|
-
|
|
6921
|
+
__wbg_call_389efe28435a9388: function() { return handleError(function (arg0, arg1) {
|
|
6922
|
+
const ret = arg0.call(arg1);
|
|
6923
|
+
return ret;
|
|
6924
|
+
}, arguments); },
|
|
6925
|
+
__wbg_call_3b1302a526c332d8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
6926
|
+
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
6927
|
+
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
6928
|
+
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0, ForeignFutureCompleteVoid.__wrap(arg5), BigInt.asUintN(64, arg6));
|
|
6929
|
+
return ret;
|
|
6930
|
+
},
|
|
6931
|
+
__wbg_call_4708e0c13bdc8e95: function() { return handleError(function (arg0, arg1, arg2) {
|
|
6932
|
+
const ret = arg0.call(arg1, arg2);
|
|
6933
|
+
return ret;
|
|
6934
|
+
}, arguments); },
|
|
6935
|
+
__wbg_call_4cad95991ec9051a: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5309
6936
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5310
6937
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5311
6938
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5312
6939
|
return ret;
|
|
5313
6940
|
},
|
|
5314
|
-
|
|
5315
|
-
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2));
|
|
6941
|
+
__wbg_call_57b7c69fd65ce852: function(arg0, arg1, arg2, arg3, arg4) {
|
|
6942
|
+
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), ForeignFutureCompleteRustBuffer.__wrap(arg3), BigInt.asUintN(64, arg4));
|
|
5316
6943
|
return ret;
|
|
5317
6944
|
},
|
|
5318
|
-
|
|
6945
|
+
__wbg_call_6362fb4c0b4c79c8: function(arg0, arg1, arg2, arg3) {
|
|
6946
|
+
arg0.call(arg1, BigInt.asUintN(64, arg2), arg3);
|
|
6947
|
+
},
|
|
6948
|
+
__wbg_call_7e2b5b808f44dacd: function(arg0, arg1, arg2) {
|
|
6949
|
+
arg0.call(arg1, BigInt.asUintN(64, arg2));
|
|
6950
|
+
},
|
|
6951
|
+
__wbg_call_97b18ecd0b01c743: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5319
6952
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5320
6953
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5321
6954
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5322
6955
|
return ret;
|
|
5323
6956
|
},
|
|
5324
|
-
|
|
6957
|
+
__wbg_call_9bb391b2693be863: function(arg0, arg1, arg2, arg3, arg4) {
|
|
6958
|
+
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), ForeignFutureCompleteVoid.__wrap(arg3), BigInt.asUintN(64, arg4));
|
|
6959
|
+
return ret;
|
|
6960
|
+
},
|
|
6961
|
+
__wbg_call_9c352dc5f80e5c52: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5325
6962
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5326
6963
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5327
6964
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5328
6965
|
return ret;
|
|
5329
6966
|
},
|
|
5330
|
-
|
|
6967
|
+
__wbg_call_ad25b4329c944b75: function(arg0, arg1, arg2, arg3, arg4) {
|
|
5331
6968
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
5332
6969
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
5333
6970
|
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2), v0);
|
|
5334
6971
|
return ret;
|
|
5335
6972
|
},
|
|
5336
|
-
|
|
6973
|
+
__wbg_call_be78ec9b8590592c: function(arg0, arg1, arg2) {
|
|
6974
|
+
const ret = arg0.call(arg1, BigInt.asUintN(64, arg2));
|
|
6975
|
+
return ret;
|
|
6976
|
+
},
|
|
6977
|
+
__wbg_callback_dce5d7a7bd5ba5ab: function(arg0) {
|
|
5337
6978
|
const ret = arg0.callback;
|
|
5338
6979
|
return ret;
|
|
5339
6980
|
},
|
|
5340
|
-
|
|
6981
|
+
__wbg_close_da62a2c6c3df2a8a: function(arg0) {
|
|
5341
6982
|
const ret = arg0.close;
|
|
5342
6983
|
return ret;
|
|
5343
6984
|
},
|
|
5344
|
-
|
|
6985
|
+
__wbg_code_1cd552759a833fa4: function(arg0) {
|
|
5345
6986
|
const ret = arg0.code;
|
|
5346
6987
|
return ret;
|
|
5347
6988
|
},
|
|
5348
|
-
|
|
6989
|
+
__wbg_code_b4177582d95904f8: function(arg0) {
|
|
5349
6990
|
const ret = arg0.code;
|
|
5350
6991
|
return ret;
|
|
5351
6992
|
},
|
|
5352
|
-
|
|
6993
|
+
__wbg_code_ea007b857f96560b: function(arg0) {
|
|
5353
6994
|
const ret = arg0.code;
|
|
5354
6995
|
return ret;
|
|
5355
6996
|
},
|
|
5356
|
-
|
|
6997
|
+
__wbg_crypto_86f2631e91b51511: function(arg0) {
|
|
5357
6998
|
const ret = arg0.crypto;
|
|
5358
6999
|
return ret;
|
|
5359
7000
|
},
|
|
5360
|
-
|
|
7001
|
+
__wbg_error_buf_1101076ebe43f3e2: function(arg0, arg1) {
|
|
5361
7002
|
const ret = arg1.errorBuf;
|
|
5362
7003
|
var ptr1 = isLikeNone(ret) ? 0 : passArray8ToWasm0(ret, wasm.__wbindgen_malloc);
|
|
5363
7004
|
var len1 = WASM_VECTOR_LEN;
|
|
5364
7005
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5365
7006
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5366
7007
|
},
|
|
5367
|
-
|
|
7008
|
+
__wbg_error_buf_c08f558fde2921eb: function(arg0, arg1) {
|
|
5368
7009
|
const ret = arg1.errorBuf;
|
|
5369
7010
|
var ptr1 = isLikeNone(ret) ? 0 : passArray8ToWasm0(ret, wasm.__wbindgen_malloc);
|
|
5370
7011
|
var len1 = WASM_VECTOR_LEN;
|
|
5371
7012
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5372
7013
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5373
7014
|
},
|
|
5374
|
-
|
|
7015
|
+
__wbg_error_buf_c5460c6eb928df0a: function(arg0, arg1) {
|
|
5375
7016
|
const ret = arg1.errorBuf;
|
|
5376
7017
|
var ptr1 = isLikeNone(ret) ? 0 : passArray8ToWasm0(ret, wasm.__wbindgen_malloc);
|
|
5377
7018
|
var len1 = WASM_VECTOR_LEN;
|
|
5378
7019
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5379
7020
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5380
7021
|
},
|
|
5381
|
-
|
|
7022
|
+
__wbg_free_4cddf82520738946: function(arg0) {
|
|
7023
|
+
const ret = arg0.free;
|
|
7024
|
+
return ret;
|
|
7025
|
+
},
|
|
7026
|
+
__wbg_getRandomValues_b3f15fcbfabb0f8b: function() { return handleError(function (arg0, arg1) {
|
|
5382
7027
|
arg0.getRandomValues(arg1);
|
|
5383
7028
|
}, arguments); },
|
|
5384
|
-
|
|
7029
|
+
__wbg_handle_2b7e254b17143958: function(arg0) {
|
|
7030
|
+
const ret = arg0.handle;
|
|
7031
|
+
return ret;
|
|
7032
|
+
},
|
|
7033
|
+
__wbg_length_32ed9a279acd054c: function(arg0) {
|
|
5385
7034
|
const ret = arg0.length;
|
|
5386
7035
|
return ret;
|
|
5387
7036
|
},
|
|
5388
|
-
|
|
7037
|
+
__wbg_load_9c2d2e3d152fcb44: function(arg0) {
|
|
5389
7038
|
const ret = arg0.load;
|
|
5390
7039
|
return ret;
|
|
5391
7040
|
},
|
|
5392
|
-
|
|
7041
|
+
__wbg_msCrypto_d562bbe83e0d4b91: function(arg0) {
|
|
5393
7042
|
const ret = arg0.msCrypto;
|
|
5394
7043
|
return ret;
|
|
5395
7044
|
},
|
|
5396
|
-
|
|
7045
|
+
__wbg_new_no_args_1c7c842f08d00ebb: function(arg0, arg1) {
|
|
7046
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
7047
|
+
return ret;
|
|
7048
|
+
},
|
|
7049
|
+
__wbg_new_with_length_a2c39cbe88fd8ff1: function(arg0) {
|
|
5397
7050
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
5398
7051
|
return ret;
|
|
5399
7052
|
},
|
|
5400
|
-
|
|
7053
|
+
__wbg_node_e1f24f89a7336c2e: function(arg0) {
|
|
5401
7054
|
const ret = arg0.node;
|
|
5402
7055
|
return ret;
|
|
5403
7056
|
},
|
|
5404
|
-
|
|
7057
|
+
__wbg_now_a3af9a2f4bbaa4d1: function() {
|
|
5405
7058
|
const ret = Date.now();
|
|
5406
7059
|
return ret;
|
|
5407
7060
|
},
|
|
5408
|
-
|
|
5409
|
-
const ret = arg0.pointee;
|
|
5410
|
-
return isLikeNone(ret) ? 0xFFFFFF : ret;
|
|
5411
|
-
},
|
|
5412
|
-
__wbg_pointee_de27977e1d54a401: function(arg0, arg1) {
|
|
7061
|
+
__wbg_pointee_350ad57f547d0a2b: function(arg0, arg1) {
|
|
5413
7062
|
const ret = arg1.pointee;
|
|
5414
7063
|
var ptr1 = isLikeNone(ret) ? 0 : passArray8ToWasm0(ret, wasm.__wbindgen_malloc);
|
|
5415
7064
|
var len1 = WASM_VECTOR_LEN;
|
|
5416
7065
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5417
7066
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5418
7067
|
},
|
|
5419
|
-
|
|
7068
|
+
__wbg_pointee_7f12d1c53c5fc79b: function(arg0) {
|
|
7069
|
+
const ret = arg0.pointee;
|
|
7070
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret;
|
|
7071
|
+
},
|
|
7072
|
+
__wbg_process_3975fd6c72f520aa: function(arg0) {
|
|
5420
7073
|
const ret = arg0.process;
|
|
5421
7074
|
return ret;
|
|
5422
7075
|
},
|
|
5423
|
-
|
|
7076
|
+
__wbg_prototypesetcall_bdcdcc5842e4d77d: function(arg0, arg1, arg2) {
|
|
5424
7077
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
5425
7078
|
},
|
|
5426
|
-
|
|
7079
|
+
__wbg_randomFillSync_f8c153b79f285817: function() { return handleError(function (arg0, arg1) {
|
|
5427
7080
|
arg0.randomFillSync(arg1);
|
|
5428
7081
|
}, arguments); },
|
|
5429
|
-
|
|
7082
|
+
__wbg_require_b74f47fc2d022fd6: function() { return handleError(function () {
|
|
5430
7083
|
const ret = module.require;
|
|
5431
7084
|
return ret;
|
|
5432
7085
|
}, arguments); },
|
|
5433
|
-
|
|
7086
|
+
__wbg_returnValue_115f121efb417ada: function(arg0) {
|
|
7087
|
+
const ret = arg0.returnValue;
|
|
7088
|
+
return ret;
|
|
7089
|
+
},
|
|
7090
|
+
__wbg_returnValue_1b10f9b00d299011: function(arg0) {
|
|
7091
|
+
const ret = arg0.returnValue;
|
|
7092
|
+
return ret;
|
|
7093
|
+
},
|
|
7094
|
+
__wbg_returnValue_1e45752b46373e8e: function(arg0) {
|
|
7095
|
+
const ret = arg0.returnValue;
|
|
7096
|
+
return ret;
|
|
7097
|
+
},
|
|
7098
|
+
__wbg_returnValue_1f5dfd25006fcdcd: function(arg0) {
|
|
7099
|
+
const ret = arg0.returnValue;
|
|
7100
|
+
return ret;
|
|
7101
|
+
},
|
|
7102
|
+
__wbg_returnValue_2cd8414eaf40d9b0: function(arg0) {
|
|
7103
|
+
const ret = arg0.returnValue;
|
|
7104
|
+
return ret;
|
|
7105
|
+
},
|
|
7106
|
+
__wbg_returnValue_72879231be83b6ff: function(arg0) {
|
|
7107
|
+
const ret = arg0.returnValue;
|
|
7108
|
+
return ret;
|
|
7109
|
+
},
|
|
7110
|
+
__wbg_returnValue_7d02db70a59fc568: function(arg0) {
|
|
7111
|
+
const ret = arg0.returnValue;
|
|
7112
|
+
return ret;
|
|
7113
|
+
},
|
|
7114
|
+
__wbg_returnValue_8ddeb2ad954dd490: function(arg0) {
|
|
7115
|
+
const ret = arg0.returnValue;
|
|
7116
|
+
return ret;
|
|
7117
|
+
},
|
|
7118
|
+
__wbg_returnValue_b96bb2982155d6d3: function(arg0) {
|
|
7119
|
+
const ret = arg0.returnValue;
|
|
7120
|
+
return ret;
|
|
7121
|
+
},
|
|
7122
|
+
__wbg_returnValue_c26afadf04a82944: function(arg0) {
|
|
7123
|
+
const ret = arg0.returnValue;
|
|
7124
|
+
return ret;
|
|
7125
|
+
},
|
|
7126
|
+
__wbg_returnValue_caacf939eca02d6b: function(arg0) {
|
|
7127
|
+
const ret = arg0.returnValue;
|
|
7128
|
+
return ret;
|
|
7129
|
+
},
|
|
7130
|
+
__wbg_returnValue_d79bde54a86437de: function(arg0, arg1) {
|
|
7131
|
+
const ret = arg1.returnValue;
|
|
7132
|
+
const ptr1 = passArray8ToWasm0(ret, wasm.__wbindgen_malloc);
|
|
7133
|
+
const len1 = WASM_VECTOR_LEN;
|
|
7134
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
7135
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
7136
|
+
},
|
|
7137
|
+
__wbg_save_10fa0c0f69461a40: function(arg0) {
|
|
5434
7138
|
const ret = arg0.save;
|
|
5435
7139
|
return ret;
|
|
5436
7140
|
},
|
|
5437
|
-
|
|
7141
|
+
__wbg_static_accessor_GLOBAL_12837167ad935116: function() {
|
|
5438
7142
|
const ret = typeof global === 'undefined' ? null : global;
|
|
5439
7143
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5440
7144
|
},
|
|
5441
|
-
|
|
7145
|
+
__wbg_static_accessor_GLOBAL_THIS_e628e89ab3b1c95f: function() {
|
|
5442
7146
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
5443
7147
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5444
7148
|
},
|
|
5445
|
-
|
|
7149
|
+
__wbg_static_accessor_SELF_a621d3dfbb60d0ce: function() {
|
|
5446
7150
|
const ret = typeof self === 'undefined' ? null : self;
|
|
5447
7151
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5448
7152
|
},
|
|
5449
|
-
|
|
7153
|
+
__wbg_static_accessor_WINDOW_f8727f0cf888e0bd: function() {
|
|
5450
7154
|
const ret = typeof window === 'undefined' ? null : window;
|
|
5451
7155
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
5452
7156
|
},
|
|
5453
|
-
|
|
7157
|
+
__wbg_subarray_a96e1fef17ed23cb: function(arg0, arg1, arg2) {
|
|
5454
7158
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
5455
7159
|
return ret;
|
|
5456
7160
|
},
|
|
5457
|
-
|
|
7161
|
+
__wbg_uniffiFree_6cc0d2110d0ded17: function(arg0) {
|
|
5458
7162
|
const ret = arg0.uniffiFree;
|
|
5459
7163
|
return ret;
|
|
5460
7164
|
},
|
|
5461
|
-
|
|
7165
|
+
__wbg_versions_4e31226f5e8dc909: function(arg0) {
|
|
5462
7166
|
const ret = arg0.versions;
|
|
5463
7167
|
return ret;
|
|
5464
7168
|
},
|
|
@@ -5485,9 +7189,52 @@ function __wbg_get_imports() {
|
|
|
5485
7189
|
return {
|
|
5486
7190
|
__proto__: null,
|
|
5487
7191
|
"./index_bg.js": import0,
|
|
7192
|
+
"env": import1,
|
|
7193
|
+
"env": import2,
|
|
7194
|
+
"env": import3,
|
|
7195
|
+
"env": import4,
|
|
5488
7196
|
};
|
|
5489
7197
|
}
|
|
5490
7198
|
|
|
7199
|
+
const ForeignFutureCompleteF32Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7200
|
+
? { register: () => {}, unregister: () => {} }
|
|
7201
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletef32_free(ptr >>> 0, 1));
|
|
7202
|
+
const ForeignFutureCompleteF64Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7203
|
+
? { register: () => {}, unregister: () => {} }
|
|
7204
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletef64_free(ptr >>> 0, 1));
|
|
7205
|
+
const ForeignFutureCompleteI16Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7206
|
+
? { register: () => {}, unregister: () => {} }
|
|
7207
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletei16_free(ptr >>> 0, 1));
|
|
7208
|
+
const ForeignFutureCompleteI32Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7209
|
+
? { register: () => {}, unregister: () => {} }
|
|
7210
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletei32_free(ptr >>> 0, 1));
|
|
7211
|
+
const ForeignFutureCompleteI64Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7212
|
+
? { register: () => {}, unregister: () => {} }
|
|
7213
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletei64_free(ptr >>> 0, 1));
|
|
7214
|
+
const ForeignFutureCompleteI8Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7215
|
+
? { register: () => {}, unregister: () => {} }
|
|
7216
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletei8_free(ptr >>> 0, 1));
|
|
7217
|
+
const ForeignFutureCompletePointerFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
7218
|
+
? { register: () => {}, unregister: () => {} }
|
|
7219
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletepointer_free(ptr >>> 0, 1));
|
|
7220
|
+
const ForeignFutureCompleteRustBufferFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
7221
|
+
? { register: () => {}, unregister: () => {} }
|
|
7222
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompleterustbuffer_free(ptr >>> 0, 1));
|
|
7223
|
+
const ForeignFutureCompleteU16Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7224
|
+
? { register: () => {}, unregister: () => {} }
|
|
7225
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompleteu16_free(ptr >>> 0, 1));
|
|
7226
|
+
const ForeignFutureCompleteU32Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7227
|
+
? { register: () => {}, unregister: () => {} }
|
|
7228
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompleteu32_free(ptr >>> 0, 1));
|
|
7229
|
+
const ForeignFutureCompleteU64Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7230
|
+
? { register: () => {}, unregister: () => {} }
|
|
7231
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompleteu64_free(ptr >>> 0, 1));
|
|
7232
|
+
const ForeignFutureCompleteU8Finalization = (typeof FinalizationRegistry === 'undefined')
|
|
7233
|
+
? { register: () => {}, unregister: () => {} }
|
|
7234
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompleteu8_free(ptr >>> 0, 1));
|
|
7235
|
+
const ForeignFutureCompleteVoidFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
7236
|
+
? { register: () => {}, unregister: () => {} }
|
|
7237
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_foreignfuturecompletevoid_free(ptr >>> 0, 1));
|
|
5491
7238
|
const RustCallStatusFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
5492
7239
|
? { register: () => {}, unregister: () => {} }
|
|
5493
7240
|
: new FinalizationRegistry(ptr => wasm.__wbg_rustcallstatus_free(ptr >>> 0, 1));
|
|
@@ -5561,5 +7308,5 @@ let WASM_VECTOR_LEN = 0;
|
|
|
5561
7308
|
const wasmPath = `${__dirname}/index_bg.wasm`;
|
|
5562
7309
|
const wasmBytes = require('fs').readFileSync(wasmPath);
|
|
5563
7310
|
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
5564
|
-
|
|
7311
|
+
const wasm = new WebAssembly.Instance(wasmModule, __wbg_get_imports()).exports;
|
|
5565
7312
|
wasm.__wbindgen_start();
|