@secondts/bark-react-native 0.2.0-beta.2 → 0.3.0
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 +2 -2
- package/cpp/generated/bark.cpp +1885 -1182
- package/cpp/generated/bark.hpp +63 -0
- package/lib/commonjs/WalletNotifications.js +82 -0
- package/lib/commonjs/WalletNotifications.js.map +1 -0
- package/lib/commonjs/generated/bark-ffi.js.map +1 -1
- package/lib/commonjs/generated/bark.js +1540 -442
- package/lib/commonjs/generated/bark.js.map +1 -1
- package/lib/commonjs/index.js +13 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/WalletNotifications.js +77 -0
- package/lib/module/WalletNotifications.js.map +1 -0
- package/lib/module/generated/bark-ffi.js.map +1 -1
- package/lib/module/generated/bark.js +1539 -442
- package/lib/module/generated/bark.js.map +1 -1
- package/lib/module/index.js +3 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/WalletNotifications.d.ts +41 -0
- package/lib/typescript/commonjs/src/WalletNotifications.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts +147 -84
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark.d.ts +822 -185
- package/lib/typescript/commonjs/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/WalletNotifications.d.ts +41 -0
- package/lib/typescript/module/src/WalletNotifications.d.ts.map +1 -0
- package/lib/typescript/module/src/generated/bark-ffi.d.ts +147 -84
- package/lib/typescript/module/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark.d.ts +822 -185
- package/lib/typescript/module/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +1 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/WalletNotifications.ts +86 -0
- package/src/generated/bark-ffi.ts +305 -253
- package/src/generated/bark.ts +3946 -1581
- package/src/index.tsx +3 -0
package/cpp/generated/bark.cpp
CHANGED
|
@@ -196,6 +196,21 @@ extern "C" {
|
|
|
196
196
|
UniffiCallbackInterfaceCustomOnchainWalletCallbacksMethod7 make_signed_p2a_cpfp;
|
|
197
197
|
UniffiCallbackInterfaceCustomOnchainWalletCallbacksMethod8 store_signed_p2a_cpfp;
|
|
198
198
|
} UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks;
|
|
199
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_clone_notificationholder(
|
|
200
|
+
/*handle*/ uint64_t handle,
|
|
201
|
+
RustCallStatus *uniffi_out_err
|
|
202
|
+
);
|
|
203
|
+
void uniffi_bark_ffi_fn_free_notificationholder(
|
|
204
|
+
/*handle*/ uint64_t handle,
|
|
205
|
+
RustCallStatus *uniffi_out_err
|
|
206
|
+
);
|
|
207
|
+
void uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait(
|
|
208
|
+
/*handle*/ uint64_t ptr,
|
|
209
|
+
RustCallStatus *uniffi_out_err
|
|
210
|
+
);
|
|
211
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_notificationholder_next_notification(
|
|
212
|
+
/*handle*/ uint64_t ptr
|
|
213
|
+
);
|
|
199
214
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_clone_onchainwallet(
|
|
200
215
|
/*handle*/ uint64_t handle,
|
|
201
216
|
RustCallStatus *uniffi_out_err
|
|
@@ -211,27 +226,22 @@ extern "C" {
|
|
|
211
226
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_constructor_onchainwallet_default(
|
|
212
227
|
RustBuffer mnemonic,
|
|
213
228
|
RustBuffer config,
|
|
214
|
-
RustBuffer datadir
|
|
215
|
-
RustCallStatus *uniffi_out_err
|
|
229
|
+
RustBuffer datadir
|
|
216
230
|
);
|
|
217
|
-
|
|
218
|
-
/*handle*/ uint64_t ptr
|
|
219
|
-
RustCallStatus *uniffi_out_err
|
|
231
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_onchainwallet_balance(
|
|
232
|
+
/*handle*/ uint64_t ptr
|
|
220
233
|
);
|
|
221
|
-
|
|
222
|
-
/*handle*/ uint64_t ptr
|
|
223
|
-
RustCallStatus *uniffi_out_err
|
|
234
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_onchainwallet_new_address(
|
|
235
|
+
/*handle*/ uint64_t ptr
|
|
224
236
|
);
|
|
225
|
-
|
|
237
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_onchainwallet_send(
|
|
226
238
|
/*handle*/ uint64_t ptr,
|
|
227
239
|
RustBuffer address,
|
|
228
240
|
uint64_t amount_sats,
|
|
229
|
-
uint64_t fee_rate_sat_per_vb
|
|
230
|
-
RustCallStatus *uniffi_out_err
|
|
241
|
+
uint64_t fee_rate_sat_per_vb
|
|
231
242
|
);
|
|
232
|
-
uint64_t uniffi_bark_ffi_fn_method_onchainwallet_sync(
|
|
233
|
-
/*handle*/ uint64_t ptr
|
|
234
|
-
RustCallStatus *uniffi_out_err
|
|
243
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_onchainwallet_sync(
|
|
244
|
+
/*handle*/ uint64_t ptr
|
|
235
245
|
);
|
|
236
246
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_clone_wallet(
|
|
237
247
|
/*handle*/ uint64_t handle,
|
|
@@ -245,187 +255,160 @@ extern "C" {
|
|
|
245
255
|
RustBuffer mnemonic,
|
|
246
256
|
RustBuffer config,
|
|
247
257
|
RustBuffer datadir,
|
|
248
|
-
int8_t force_rescan
|
|
249
|
-
RustCallStatus *uniffi_out_err
|
|
258
|
+
int8_t force_rescan
|
|
250
259
|
);
|
|
251
260
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_constructor_wallet_create_with_onchain(
|
|
252
261
|
RustBuffer mnemonic,
|
|
253
262
|
RustBuffer config,
|
|
254
263
|
RustBuffer datadir,
|
|
255
264
|
/*handle*/ uint64_t onchain_wallet,
|
|
256
|
-
int8_t force_rescan
|
|
257
|
-
RustCallStatus *uniffi_out_err
|
|
265
|
+
int8_t force_rescan
|
|
258
266
|
);
|
|
259
267
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_constructor_wallet_open(
|
|
260
268
|
RustBuffer mnemonic,
|
|
261
269
|
RustBuffer config,
|
|
262
|
-
RustBuffer datadir
|
|
263
|
-
RustCallStatus *uniffi_out_err
|
|
270
|
+
RustBuffer datadir
|
|
264
271
|
);
|
|
265
272
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(
|
|
266
273
|
RustBuffer mnemonic,
|
|
267
274
|
RustBuffer config,
|
|
268
275
|
RustBuffer datadir,
|
|
269
|
-
/*handle*/ uint64_t onchain_wallet
|
|
270
|
-
RustCallStatus *uniffi_out_err
|
|
276
|
+
/*handle*/ uint64_t onchain_wallet
|
|
271
277
|
);
|
|
272
|
-
|
|
273
|
-
/*handle*/ uint64_t ptr
|
|
274
|
-
RustCallStatus *uniffi_out_err
|
|
278
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(
|
|
279
|
+
/*handle*/ uint64_t ptr
|
|
275
280
|
);
|
|
276
|
-
|
|
277
|
-
/*handle*/ uint64_t ptr
|
|
278
|
-
RustCallStatus *uniffi_out_err
|
|
281
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_all_vtxos(
|
|
282
|
+
/*handle*/ uint64_t ptr
|
|
279
283
|
);
|
|
280
|
-
|
|
281
|
-
/*handle*/ uint64_t ptr
|
|
282
|
-
RustCallStatus *uniffi_out_err
|
|
284
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_ark_info(
|
|
285
|
+
/*handle*/ uint64_t ptr
|
|
283
286
|
);
|
|
284
|
-
|
|
285
|
-
/*handle*/ uint64_t ptr
|
|
286
|
-
RustCallStatus *uniffi_out_err
|
|
287
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_balance(
|
|
288
|
+
/*handle*/ uint64_t ptr
|
|
287
289
|
);
|
|
288
|
-
|
|
290
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_board_all(
|
|
289
291
|
/*handle*/ uint64_t ptr,
|
|
290
|
-
/*handle*/ uint64_t onchain_wallet
|
|
291
|
-
RustCallStatus *uniffi_out_err
|
|
292
|
+
/*handle*/ uint64_t onchain_wallet
|
|
292
293
|
);
|
|
293
|
-
|
|
294
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_board_amount(
|
|
294
295
|
/*handle*/ uint64_t ptr,
|
|
295
296
|
/*handle*/ uint64_t onchain_wallet,
|
|
296
|
-
uint64_t amount_sats
|
|
297
|
-
RustCallStatus *uniffi_out_err
|
|
297
|
+
uint64_t amount_sats
|
|
298
298
|
);
|
|
299
|
-
|
|
299
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_bolt11_invoice(
|
|
300
300
|
/*handle*/ uint64_t ptr,
|
|
301
|
-
uint64_t amount_sats
|
|
302
|
-
RustCallStatus *uniffi_out_err
|
|
301
|
+
uint64_t amount_sats
|
|
303
302
|
);
|
|
304
|
-
|
|
303
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_broadcast_tx(
|
|
305
304
|
/*handle*/ uint64_t ptr,
|
|
306
|
-
RustBuffer tx_hex
|
|
307
|
-
RustCallStatus *uniffi_out_err
|
|
305
|
+
RustBuffer tx_hex
|
|
308
306
|
);
|
|
309
|
-
|
|
310
|
-
/*handle*/ uint64_t ptr
|
|
311
|
-
RustCallStatus *uniffi_out_err
|
|
307
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_cancel_all_pending_rounds(
|
|
308
|
+
/*handle*/ uint64_t ptr
|
|
312
309
|
);
|
|
313
|
-
|
|
310
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_cancel_pending_round(
|
|
314
311
|
/*handle*/ uint64_t ptr,
|
|
315
|
-
uint32_t round_id
|
|
316
|
-
RustCallStatus *uniffi_out_err
|
|
312
|
+
uint32_t round_id
|
|
317
313
|
);
|
|
318
|
-
|
|
314
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_check_lightning_payment(
|
|
319
315
|
/*handle*/ uint64_t ptr,
|
|
320
316
|
RustBuffer payment_hash,
|
|
321
|
-
int8_t wait
|
|
322
|
-
RustCallStatus *uniffi_out_err
|
|
317
|
+
int8_t wait
|
|
323
318
|
);
|
|
324
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(
|
|
325
|
-
/*handle*/ uint64_t ptr
|
|
326
|
-
RustCallStatus *uniffi_out_err
|
|
319
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(
|
|
320
|
+
/*handle*/ uint64_t ptr
|
|
327
321
|
);
|
|
328
|
-
|
|
329
|
-
/*handle*/ uint64_t ptr
|
|
330
|
-
RustCallStatus *uniffi_out_err
|
|
322
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_config(
|
|
323
|
+
/*handle*/ uint64_t ptr
|
|
331
324
|
);
|
|
332
|
-
|
|
325
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_drain_exits(
|
|
333
326
|
/*handle*/ uint64_t ptr,
|
|
334
327
|
RustBuffer vtxo_ids,
|
|
335
328
|
RustBuffer address,
|
|
336
|
-
RustBuffer fee_rate_sat_per_vb
|
|
337
|
-
RustCallStatus *uniffi_out_err
|
|
329
|
+
RustBuffer fee_rate_sat_per_vb
|
|
338
330
|
);
|
|
339
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(
|
|
331
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(
|
|
340
332
|
/*handle*/ uint64_t ptr,
|
|
341
|
-
uint64_t amount_sats
|
|
342
|
-
RustCallStatus *uniffi_out_err
|
|
333
|
+
uint64_t amount_sats
|
|
343
334
|
);
|
|
344
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(
|
|
335
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(
|
|
345
336
|
/*handle*/ uint64_t ptr,
|
|
346
|
-
uint64_t amount_sats
|
|
347
|
-
RustCallStatus *uniffi_out_err
|
|
337
|
+
uint64_t amount_sats
|
|
348
338
|
);
|
|
349
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(
|
|
339
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(
|
|
350
340
|
/*handle*/ uint64_t ptr,
|
|
351
|
-
uint64_t amount_sats
|
|
352
|
-
|
|
341
|
+
uint64_t amount_sats
|
|
342
|
+
);
|
|
343
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee(
|
|
344
|
+
/*handle*/ uint64_t ptr,
|
|
345
|
+
RustBuffer address
|
|
353
346
|
);
|
|
354
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(
|
|
347
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(
|
|
355
348
|
/*handle*/ uint64_t ptr,
|
|
356
349
|
RustBuffer address,
|
|
357
|
-
RustBuffer vtxo_ids
|
|
358
|
-
RustCallStatus *uniffi_out_err
|
|
350
|
+
RustBuffer vtxo_ids
|
|
359
351
|
);
|
|
360
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(
|
|
352
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(
|
|
361
353
|
/*handle*/ uint64_t ptr,
|
|
362
|
-
RustBuffer vtxo_ids
|
|
363
|
-
RustCallStatus *uniffi_out_err
|
|
354
|
+
RustBuffer vtxo_ids
|
|
364
355
|
);
|
|
365
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(
|
|
356
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(
|
|
366
357
|
/*handle*/ uint64_t ptr,
|
|
367
358
|
RustBuffer address,
|
|
368
|
-
uint64_t amount_sats
|
|
369
|
-
RustCallStatus *uniffi_out_err
|
|
359
|
+
uint64_t amount_sats
|
|
370
360
|
);
|
|
371
361
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_fingerprint(
|
|
372
362
|
/*handle*/ uint64_t ptr,
|
|
373
363
|
RustCallStatus *uniffi_out_err
|
|
374
364
|
);
|
|
375
|
-
|
|
365
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_exit_status(
|
|
376
366
|
/*handle*/ uint64_t ptr,
|
|
377
367
|
RustBuffer vtxo_id,
|
|
378
368
|
int8_t include_history,
|
|
379
|
-
int8_t include_transactions
|
|
380
|
-
RustCallStatus *uniffi_out_err
|
|
369
|
+
int8_t include_transactions
|
|
381
370
|
);
|
|
382
|
-
|
|
383
|
-
/*handle*/ uint64_t ptr
|
|
384
|
-
RustCallStatus *uniffi_out_err
|
|
371
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_exit_vtxos(
|
|
372
|
+
/*handle*/ uint64_t ptr
|
|
385
373
|
);
|
|
386
|
-
|
|
374
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_expiring_vtxos(
|
|
387
375
|
/*handle*/ uint64_t ptr,
|
|
388
|
-
uint32_t threshold_blocks
|
|
389
|
-
RustCallStatus *uniffi_out_err
|
|
376
|
+
uint32_t threshold_blocks
|
|
390
377
|
);
|
|
391
|
-
|
|
392
|
-
/*handle*/ uint64_t ptr
|
|
393
|
-
RustCallStatus *uniffi_out_err
|
|
378
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_first_expiring_vtxo_blockheight(
|
|
379
|
+
/*handle*/ uint64_t ptr
|
|
394
380
|
);
|
|
395
|
-
|
|
396
|
-
/*handle*/ uint64_t ptr
|
|
397
|
-
RustCallStatus *uniffi_out_err
|
|
381
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_next_required_refresh_blockheight(
|
|
382
|
+
/*handle*/ uint64_t ptr
|
|
398
383
|
);
|
|
399
|
-
|
|
384
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_vtxo_by_id(
|
|
400
385
|
/*handle*/ uint64_t ptr,
|
|
401
|
-
RustBuffer vtxo_id
|
|
402
|
-
RustCallStatus *uniffi_out_err
|
|
386
|
+
RustBuffer vtxo_id
|
|
403
387
|
);
|
|
404
|
-
|
|
405
|
-
/*handle*/ uint64_t ptr
|
|
406
|
-
RustCallStatus *uniffi_out_err
|
|
388
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_get_vtxos_to_refresh(
|
|
389
|
+
/*handle*/ uint64_t ptr
|
|
407
390
|
);
|
|
408
|
-
|
|
409
|
-
/*handle*/ uint64_t ptr
|
|
410
|
-
RustCallStatus *uniffi_out_err
|
|
391
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_has_pending_exits(
|
|
392
|
+
/*handle*/ uint64_t ptr
|
|
411
393
|
);
|
|
412
|
-
|
|
413
|
-
/*handle*/ uint64_t ptr
|
|
414
|
-
RustCallStatus *uniffi_out_err
|
|
394
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_history(
|
|
395
|
+
/*handle*/ uint64_t ptr
|
|
415
396
|
);
|
|
416
|
-
|
|
397
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(
|
|
417
398
|
/*handle*/ uint64_t ptr,
|
|
418
|
-
RustBuffer
|
|
419
|
-
|
|
399
|
+
RustBuffer payment_method_type,
|
|
400
|
+
RustBuffer payment_method_value
|
|
420
401
|
);
|
|
421
|
-
|
|
402
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_import_vtxo(
|
|
422
403
|
/*handle*/ uint64_t ptr,
|
|
423
|
-
RustBuffer
|
|
424
|
-
RustCallStatus *uniffi_out_err
|
|
404
|
+
RustBuffer vtxo_base64
|
|
425
405
|
);
|
|
426
|
-
|
|
406
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(
|
|
427
407
|
/*handle*/ uint64_t ptr,
|
|
428
|
-
|
|
408
|
+
RustBuffer payment_hash
|
|
409
|
+
);
|
|
410
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(
|
|
411
|
+
/*handle*/ uint64_t ptr
|
|
429
412
|
);
|
|
430
413
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_mailbox_authorization(
|
|
431
414
|
/*handle*/ uint64_t ptr,
|
|
@@ -435,205 +418,170 @@ extern "C" {
|
|
|
435
418
|
/*handle*/ uint64_t ptr,
|
|
436
419
|
RustCallStatus *uniffi_out_err
|
|
437
420
|
);
|
|
438
|
-
|
|
439
|
-
/*handle*/ uint64_t ptr
|
|
440
|
-
RustCallStatus *uniffi_out_err
|
|
421
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maintenance(
|
|
422
|
+
/*handle*/ uint64_t ptr
|
|
441
423
|
);
|
|
442
|
-
|
|
443
|
-
/*handle*/ uint64_t ptr
|
|
444
|
-
RustCallStatus *uniffi_out_err
|
|
424
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(
|
|
425
|
+
/*handle*/ uint64_t ptr
|
|
445
426
|
);
|
|
446
|
-
|
|
447
|
-
/*handle*/ uint64_t ptr
|
|
448
|
-
RustCallStatus *uniffi_out_err
|
|
427
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(
|
|
428
|
+
/*handle*/ uint64_t ptr
|
|
449
429
|
);
|
|
450
|
-
|
|
430
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(
|
|
451
431
|
/*handle*/ uint64_t ptr,
|
|
452
|
-
/*handle*/ uint64_t onchain_wallet
|
|
453
|
-
RustCallStatus *uniffi_out_err
|
|
432
|
+
/*handle*/ uint64_t onchain_wallet
|
|
454
433
|
);
|
|
455
|
-
|
|
434
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(
|
|
456
435
|
/*handle*/ uint64_t ptr,
|
|
457
|
-
/*handle*/ uint64_t onchain_wallet
|
|
458
|
-
RustCallStatus *uniffi_out_err
|
|
436
|
+
/*handle*/ uint64_t onchain_wallet
|
|
459
437
|
);
|
|
460
|
-
|
|
461
|
-
/*handle*/ uint64_t ptr
|
|
462
|
-
RustCallStatus *uniffi_out_err
|
|
438
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(
|
|
439
|
+
/*handle*/ uint64_t ptr
|
|
463
440
|
);
|
|
464
|
-
|
|
465
|
-
/*handle*/ uint64_t ptr
|
|
466
|
-
RustCallStatus *uniffi_out_err
|
|
441
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_network(
|
|
442
|
+
/*handle*/ uint64_t ptr
|
|
467
443
|
);
|
|
468
|
-
|
|
469
|
-
/*handle*/ uint64_t ptr
|
|
470
|
-
RustCallStatus *uniffi_out_err
|
|
444
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_new_address(
|
|
445
|
+
/*handle*/ uint64_t ptr
|
|
471
446
|
);
|
|
472
|
-
|
|
473
|
-
/*handle*/ uint64_t ptr
|
|
474
|
-
RustCallStatus *uniffi_out_err
|
|
447
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_new_address_with_index(
|
|
448
|
+
/*handle*/ uint64_t ptr
|
|
475
449
|
);
|
|
476
|
-
uint64_t uniffi_bark_ffi_fn_method_wallet_next_round_start_time(
|
|
450
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_next_round_start_time(
|
|
451
|
+
/*handle*/ uint64_t ptr
|
|
452
|
+
);
|
|
453
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_notifications(
|
|
477
454
|
/*handle*/ uint64_t ptr,
|
|
478
455
|
RustCallStatus *uniffi_out_err
|
|
479
456
|
);
|
|
480
|
-
|
|
457
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_offboard_all(
|
|
481
458
|
/*handle*/ uint64_t ptr,
|
|
482
|
-
RustBuffer bitcoin_address
|
|
483
|
-
RustCallStatus *uniffi_out_err
|
|
459
|
+
RustBuffer bitcoin_address
|
|
484
460
|
);
|
|
485
|
-
|
|
461
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(
|
|
486
462
|
/*handle*/ uint64_t ptr,
|
|
487
463
|
RustBuffer vtxo_ids,
|
|
488
|
-
RustBuffer bitcoin_address
|
|
489
|
-
RustCallStatus *uniffi_out_err
|
|
464
|
+
RustBuffer bitcoin_address
|
|
490
465
|
);
|
|
491
|
-
|
|
466
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(
|
|
492
467
|
/*handle*/ uint64_t ptr,
|
|
493
468
|
RustBuffer lightning_address,
|
|
494
469
|
uint64_t amount_sats,
|
|
495
|
-
RustBuffer comment
|
|
496
|
-
RustCallStatus *uniffi_out_err
|
|
470
|
+
RustBuffer comment
|
|
497
471
|
);
|
|
498
|
-
|
|
472
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(
|
|
499
473
|
/*handle*/ uint64_t ptr,
|
|
500
474
|
RustBuffer invoice,
|
|
501
|
-
RustBuffer amount_sats
|
|
502
|
-
RustCallStatus *uniffi_out_err
|
|
475
|
+
RustBuffer amount_sats
|
|
503
476
|
);
|
|
504
|
-
|
|
477
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(
|
|
505
478
|
/*handle*/ uint64_t ptr,
|
|
506
479
|
RustBuffer offer,
|
|
507
|
-
RustBuffer amount_sats
|
|
508
|
-
RustCallStatus *uniffi_out_err
|
|
480
|
+
RustBuffer amount_sats
|
|
509
481
|
);
|
|
510
|
-
|
|
482
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_peak_address(
|
|
511
483
|
/*handle*/ uint64_t ptr,
|
|
512
|
-
uint32_t index
|
|
513
|
-
RustCallStatus *uniffi_out_err
|
|
484
|
+
uint32_t index
|
|
514
485
|
);
|
|
515
|
-
|
|
486
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_peek_address(
|
|
516
487
|
/*handle*/ uint64_t ptr,
|
|
517
|
-
|
|
488
|
+
uint32_t index
|
|
518
489
|
);
|
|
519
|
-
|
|
520
|
-
/*handle*/ uint64_t ptr
|
|
521
|
-
RustCallStatus *uniffi_out_err
|
|
490
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(
|
|
491
|
+
/*handle*/ uint64_t ptr
|
|
522
492
|
);
|
|
523
|
-
uint64_t
|
|
524
|
-
/*handle*/ uint64_t ptr
|
|
525
|
-
RustCallStatus *uniffi_out_err
|
|
493
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_boards(
|
|
494
|
+
/*handle*/ uint64_t ptr
|
|
526
495
|
);
|
|
527
|
-
|
|
528
|
-
/*handle*/ uint64_t ptr
|
|
529
|
-
RustCallStatus *uniffi_out_err
|
|
496
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(
|
|
497
|
+
/*handle*/ uint64_t ptr
|
|
530
498
|
);
|
|
531
|
-
|
|
532
|
-
/*handle*/ uint64_t ptr
|
|
533
|
-
RustCallStatus *uniffi_out_err
|
|
499
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(
|
|
500
|
+
/*handle*/ uint64_t ptr
|
|
534
501
|
);
|
|
535
|
-
|
|
536
|
-
/*handle*/ uint64_t ptr
|
|
537
|
-
RustCallStatus *uniffi_out_err
|
|
502
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(
|
|
503
|
+
/*handle*/ uint64_t ptr
|
|
538
504
|
);
|
|
539
|
-
|
|
540
|
-
/*handle*/ uint64_t ptr
|
|
541
|
-
RustCallStatus *uniffi_out_err
|
|
505
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(
|
|
506
|
+
/*handle*/ uint64_t ptr
|
|
542
507
|
);
|
|
543
|
-
|
|
544
|
-
/*handle*/ uint64_t ptr
|
|
545
|
-
RustCallStatus *uniffi_out_err
|
|
508
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(
|
|
509
|
+
/*handle*/ uint64_t ptr
|
|
546
510
|
);
|
|
547
|
-
|
|
511
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pending_round_states(
|
|
512
|
+
/*handle*/ uint64_t ptr
|
|
513
|
+
);
|
|
514
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_progress_exits(
|
|
548
515
|
/*handle*/ uint64_t ptr,
|
|
549
516
|
/*handle*/ uint64_t onchain_wallet,
|
|
550
|
-
RustBuffer fee_rate_sat_per_vb
|
|
551
|
-
RustCallStatus *uniffi_out_err
|
|
517
|
+
RustBuffer fee_rate_sat_per_vb
|
|
552
518
|
);
|
|
553
|
-
|
|
554
|
-
/*handle*/ uint64_t ptr
|
|
555
|
-
RustCallStatus *uniffi_out_err
|
|
519
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_progress_pending_rounds(
|
|
520
|
+
/*handle*/ uint64_t ptr
|
|
556
521
|
);
|
|
557
|
-
|
|
558
|
-
/*handle*/ uint64_t ptr
|
|
559
|
-
RustCallStatus *uniffi_out_err
|
|
522
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_properties(
|
|
523
|
+
/*handle*/ uint64_t ptr
|
|
560
524
|
);
|
|
561
|
-
|
|
562
|
-
/*handle*/ uint64_t ptr
|
|
563
|
-
RustCallStatus *uniffi_out_err
|
|
525
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_refresh_server(
|
|
526
|
+
/*handle*/ uint64_t ptr
|
|
564
527
|
);
|
|
565
|
-
|
|
528
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(
|
|
566
529
|
/*handle*/ uint64_t ptr,
|
|
567
|
-
RustBuffer vtxo_ids
|
|
568
|
-
RustCallStatus *uniffi_out_err
|
|
530
|
+
RustBuffer vtxo_ids
|
|
569
531
|
);
|
|
570
|
-
|
|
532
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(
|
|
571
533
|
/*handle*/ uint64_t ptr,
|
|
572
|
-
RustBuffer vtxo_ids
|
|
573
|
-
RustCallStatus *uniffi_out_err
|
|
534
|
+
RustBuffer vtxo_ids
|
|
574
535
|
);
|
|
575
|
-
|
|
536
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(
|
|
576
537
|
/*handle*/ uint64_t ptr,
|
|
577
538
|
RustBuffer ark_address,
|
|
578
|
-
uint64_t amount_sats
|
|
579
|
-
RustCallStatus *uniffi_out_err
|
|
539
|
+
uint64_t amount_sats
|
|
580
540
|
);
|
|
581
|
-
|
|
541
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_send_onchain(
|
|
582
542
|
/*handle*/ uint64_t ptr,
|
|
583
543
|
RustBuffer address,
|
|
584
|
-
uint64_t amount_sats
|
|
585
|
-
RustCallStatus *uniffi_out_err
|
|
544
|
+
uint64_t amount_sats
|
|
586
545
|
);
|
|
587
|
-
|
|
546
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_sign_exit_claim_inputs(
|
|
588
547
|
/*handle*/ uint64_t ptr,
|
|
589
|
-
RustBuffer psbt_base64
|
|
590
|
-
RustCallStatus *uniffi_out_err
|
|
548
|
+
RustBuffer psbt_base64
|
|
591
549
|
);
|
|
592
|
-
|
|
593
|
-
/*handle*/ uint64_t ptr
|
|
594
|
-
RustCallStatus *uniffi_out_err
|
|
550
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_spendable_vtxos(
|
|
551
|
+
/*handle*/ uint64_t ptr
|
|
595
552
|
);
|
|
596
|
-
|
|
597
|
-
/*handle*/ uint64_t ptr
|
|
598
|
-
RustCallStatus *uniffi_out_err
|
|
553
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(
|
|
554
|
+
/*handle*/ uint64_t ptr
|
|
599
555
|
);
|
|
600
|
-
|
|
556
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(
|
|
601
557
|
/*handle*/ uint64_t ptr,
|
|
602
|
-
RustBuffer vtxo_ids
|
|
603
|
-
RustCallStatus *uniffi_out_err
|
|
558
|
+
RustBuffer vtxo_ids
|
|
604
559
|
);
|
|
605
|
-
|
|
606
|
-
/*handle*/ uint64_t ptr
|
|
607
|
-
RustCallStatus *uniffi_out_err
|
|
560
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_sync(
|
|
561
|
+
/*handle*/ uint64_t ptr
|
|
608
562
|
);
|
|
609
|
-
|
|
563
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_sync_exits(
|
|
610
564
|
/*handle*/ uint64_t ptr,
|
|
611
|
-
/*handle*/ uint64_t onchain_wallet
|
|
612
|
-
RustCallStatus *uniffi_out_err
|
|
565
|
+
/*handle*/ uint64_t onchain_wallet
|
|
613
566
|
);
|
|
614
|
-
|
|
615
|
-
/*handle*/ uint64_t ptr
|
|
616
|
-
RustCallStatus *uniffi_out_err
|
|
567
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(
|
|
568
|
+
/*handle*/ uint64_t ptr
|
|
617
569
|
);
|
|
618
|
-
|
|
570
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_try_claim_all_lightning_receives(
|
|
619
571
|
/*handle*/ uint64_t ptr,
|
|
620
|
-
int8_t wait
|
|
621
|
-
RustCallStatus *uniffi_out_err
|
|
572
|
+
int8_t wait
|
|
622
573
|
);
|
|
623
|
-
|
|
574
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_try_claim_lightning_receive(
|
|
624
575
|
/*handle*/ uint64_t ptr,
|
|
625
576
|
RustBuffer payment_hash,
|
|
626
|
-
int8_t wait
|
|
627
|
-
RustCallStatus *uniffi_out_err
|
|
577
|
+
int8_t wait
|
|
628
578
|
);
|
|
629
|
-
|
|
579
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_validate_arkoor_address(
|
|
630
580
|
/*handle*/ uint64_t ptr,
|
|
631
|
-
RustBuffer address
|
|
632
|
-
RustCallStatus *uniffi_out_err
|
|
581
|
+
RustBuffer address
|
|
633
582
|
);
|
|
634
|
-
|
|
635
|
-
/*handle*/ uint64_t ptr
|
|
636
|
-
RustCallStatus *uniffi_out_err
|
|
583
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_vtxos(
|
|
584
|
+
/*handle*/ uint64_t ptr
|
|
637
585
|
);
|
|
638
586
|
void uniffi_bark_ffi_fn_init_callback_vtable_customonchainwalletcallbacks(
|
|
639
587
|
UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks * vtable
|
|
@@ -857,6 +805,10 @@ extern "C" {
|
|
|
857
805
|
);
|
|
858
806
|
uint16_t uniffi_bark_ffi_checksum_func_validate_mnemonic(
|
|
859
807
|
);
|
|
808
|
+
uint16_t uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait(
|
|
809
|
+
);
|
|
810
|
+
uint16_t uniffi_bark_ffi_checksum_method_notificationholder_next_notification(
|
|
811
|
+
);
|
|
860
812
|
uint16_t uniffi_bark_ffi_checksum_method_onchainwallet_balance(
|
|
861
813
|
);
|
|
862
814
|
uint16_t uniffi_bark_ffi_checksum_method_onchainwallet_new_address(
|
|
@@ -899,6 +851,8 @@ extern "C" {
|
|
|
899
851
|
);
|
|
900
852
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_send_fee(
|
|
901
853
|
);
|
|
854
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee(
|
|
855
|
+
);
|
|
902
856
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee(
|
|
903
857
|
);
|
|
904
858
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_estimate_refresh_fee(
|
|
@@ -925,6 +879,8 @@ extern "C" {
|
|
|
925
879
|
);
|
|
926
880
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_history(
|
|
927
881
|
);
|
|
882
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(
|
|
883
|
+
);
|
|
928
884
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_import_vtxo(
|
|
929
885
|
);
|
|
930
886
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(
|
|
@@ -955,6 +911,8 @@ extern "C" {
|
|
|
955
911
|
);
|
|
956
912
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(
|
|
957
913
|
);
|
|
914
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_notifications(
|
|
915
|
+
);
|
|
958
916
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_offboard_all(
|
|
959
917
|
);
|
|
960
918
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos(
|
|
@@ -967,6 +925,8 @@ extern "C" {
|
|
|
967
925
|
);
|
|
968
926
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_peak_address(
|
|
969
927
|
);
|
|
928
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_peek_address(
|
|
929
|
+
);
|
|
970
930
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(
|
|
971
931
|
);
|
|
972
932
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_boards(
|
|
@@ -4032,6 +3992,38 @@ NativeBark::NativeBark(
|
|
|
4032
3992
|
return this->cpp_uniffi_internal_fn_func_ffi__arraybuffer_to_string(rt, thisVal, args, count);
|
|
4033
3993
|
}
|
|
4034
3994
|
);
|
|
3995
|
+
props["ubrn_uniffi_bark_ffi_fn_clone_notificationholder"] = jsi::Function::createFromHostFunction(
|
|
3996
|
+
rt,
|
|
3997
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_clone_notificationholder"),
|
|
3998
|
+
1,
|
|
3999
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4000
|
+
return this->cpp_uniffi_bark_ffi_fn_clone_notificationholder(rt, thisVal, args, count);
|
|
4001
|
+
}
|
|
4002
|
+
);
|
|
4003
|
+
props["ubrn_uniffi_bark_ffi_fn_free_notificationholder"] = jsi::Function::createFromHostFunction(
|
|
4004
|
+
rt,
|
|
4005
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_free_notificationholder"),
|
|
4006
|
+
1,
|
|
4007
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4008
|
+
return this->cpp_uniffi_bark_ffi_fn_free_notificationholder(rt, thisVal, args, count);
|
|
4009
|
+
}
|
|
4010
|
+
);
|
|
4011
|
+
props["ubrn_uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait"] = jsi::Function::createFromHostFunction(
|
|
4012
|
+
rt,
|
|
4013
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait"),
|
|
4014
|
+
1,
|
|
4015
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4016
|
+
return this->cpp_uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait(rt, thisVal, args, count);
|
|
4017
|
+
}
|
|
4018
|
+
);
|
|
4019
|
+
props["ubrn_uniffi_bark_ffi_fn_method_notificationholder_next_notification"] = jsi::Function::createFromHostFunction(
|
|
4020
|
+
rt,
|
|
4021
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_notificationholder_next_notification"),
|
|
4022
|
+
1,
|
|
4023
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4024
|
+
return this->cpp_uniffi_bark_ffi_fn_method_notificationholder_next_notification(rt, thisVal, args, count);
|
|
4025
|
+
}
|
|
4026
|
+
);
|
|
4035
4027
|
props["ubrn_uniffi_bark_ffi_fn_clone_onchainwallet"] = jsi::Function::createFromHostFunction(
|
|
4036
4028
|
rt,
|
|
4037
4029
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_clone_onchainwallet"),
|
|
@@ -4280,6 +4272,14 @@ NativeBark::NativeBark(
|
|
|
4280
4272
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(rt, thisVal, args, count);
|
|
4281
4273
|
}
|
|
4282
4274
|
);
|
|
4275
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee"] = jsi::Function::createFromHostFunction(
|
|
4276
|
+
rt,
|
|
4277
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee"),
|
|
4278
|
+
2,
|
|
4279
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4280
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee(rt, thisVal, args, count);
|
|
4281
|
+
}
|
|
4282
|
+
);
|
|
4283
4283
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee"] = jsi::Function::createFromHostFunction(
|
|
4284
4284
|
rt,
|
|
4285
4285
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee"),
|
|
@@ -4384,6 +4384,14 @@ NativeBark::NativeBark(
|
|
|
4384
4384
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_history(rt, thisVal, args, count);
|
|
4385
4385
|
}
|
|
4386
4386
|
);
|
|
4387
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method"] = jsi::Function::createFromHostFunction(
|
|
4388
|
+
rt,
|
|
4389
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method"),
|
|
4390
|
+
3,
|
|
4391
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4392
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(rt, thisVal, args, count);
|
|
4393
|
+
}
|
|
4394
|
+
);
|
|
4387
4395
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_import_vtxo"] = jsi::Function::createFromHostFunction(
|
|
4388
4396
|
rt,
|
|
4389
4397
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_import_vtxo"),
|
|
@@ -4504,6 +4512,14 @@ NativeBark::NativeBark(
|
|
|
4504
4512
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_next_round_start_time(rt, thisVal, args, count);
|
|
4505
4513
|
}
|
|
4506
4514
|
);
|
|
4515
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_notifications"] = jsi::Function::createFromHostFunction(
|
|
4516
|
+
rt,
|
|
4517
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_notifications"),
|
|
4518
|
+
1,
|
|
4519
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4520
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_notifications(rt, thisVal, args, count);
|
|
4521
|
+
}
|
|
4522
|
+
);
|
|
4507
4523
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_offboard_all"] = jsi::Function::createFromHostFunction(
|
|
4508
4524
|
rt,
|
|
4509
4525
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_offboard_all"),
|
|
@@ -4552,6 +4568,14 @@ NativeBark::NativeBark(
|
|
|
4552
4568
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_peak_address(rt, thisVal, args, count);
|
|
4553
4569
|
}
|
|
4554
4570
|
);
|
|
4571
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_peek_address"] = jsi::Function::createFromHostFunction(
|
|
4572
|
+
rt,
|
|
4573
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_peek_address"),
|
|
4574
|
+
2,
|
|
4575
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4576
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_peek_address(rt, thisVal, args, count);
|
|
4577
|
+
}
|
|
4578
|
+
);
|
|
4555
4579
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos"] = jsi::Function::createFromHostFunction(
|
|
4556
4580
|
rt,
|
|
4557
4581
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos"),
|
|
@@ -4808,976 +4832,1773 @@ NativeBark::NativeBark(
|
|
|
4808
4832
|
return this->cpp_uniffi_bark_ffi_fn_func_validate_mnemonic(rt, thisVal, args, count);
|
|
4809
4833
|
}
|
|
4810
4834
|
);
|
|
4811
|
-
props["
|
|
4835
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_u8"] = jsi::Function::createFromHostFunction(
|
|
4812
4836
|
rt,
|
|
4813
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4814
|
-
|
|
4837
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_u8"),
|
|
4838
|
+
3,
|
|
4815
4839
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4816
|
-
return this->
|
|
4840
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_u8(rt, thisVal, args, count);
|
|
4817
4841
|
}
|
|
4818
4842
|
);
|
|
4819
|
-
props["
|
|
4843
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_u8"] = jsi::Function::createFromHostFunction(
|
|
4820
4844
|
rt,
|
|
4821
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4822
|
-
|
|
4845
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_u8"),
|
|
4846
|
+
1,
|
|
4823
4847
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4824
|
-
return this->
|
|
4848
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_u8(rt, thisVal, args, count);
|
|
4825
4849
|
}
|
|
4826
4850
|
);
|
|
4827
|
-
props["
|
|
4851
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_u8"] = jsi::Function::createFromHostFunction(
|
|
4828
4852
|
rt,
|
|
4829
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4830
|
-
|
|
4853
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_u8"),
|
|
4854
|
+
1,
|
|
4831
4855
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4832
|
-
return this->
|
|
4856
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_u8(rt, thisVal, args, count);
|
|
4833
4857
|
}
|
|
4834
4858
|
);
|
|
4835
|
-
props["
|
|
4859
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_u8"] = jsi::Function::createFromHostFunction(
|
|
4836
4860
|
rt,
|
|
4837
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4838
|
-
|
|
4861
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_u8"),
|
|
4862
|
+
1,
|
|
4839
4863
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4840
|
-
return this->
|
|
4864
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_u8(rt, thisVal, args, count);
|
|
4841
4865
|
}
|
|
4842
4866
|
);
|
|
4843
|
-
props["
|
|
4867
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_i8"] = jsi::Function::createFromHostFunction(
|
|
4844
4868
|
rt,
|
|
4845
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4846
|
-
|
|
4869
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_i8"),
|
|
4870
|
+
3,
|
|
4847
4871
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4848
|
-
return this->
|
|
4872
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_i8(rt, thisVal, args, count);
|
|
4849
4873
|
}
|
|
4850
4874
|
);
|
|
4851
|
-
props["
|
|
4875
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_i8"] = jsi::Function::createFromHostFunction(
|
|
4852
4876
|
rt,
|
|
4853
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4854
|
-
|
|
4877
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_i8"),
|
|
4878
|
+
1,
|
|
4855
4879
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4856
|
-
return this->
|
|
4880
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_i8(rt, thisVal, args, count);
|
|
4857
4881
|
}
|
|
4858
4882
|
);
|
|
4859
|
-
props["
|
|
4883
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_i8"] = jsi::Function::createFromHostFunction(
|
|
4860
4884
|
rt,
|
|
4861
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4862
|
-
|
|
4885
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_i8"),
|
|
4886
|
+
1,
|
|
4863
4887
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4864
|
-
return this->
|
|
4888
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_i8(rt, thisVal, args, count);
|
|
4865
4889
|
}
|
|
4866
4890
|
);
|
|
4867
|
-
props["
|
|
4891
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_i8"] = jsi::Function::createFromHostFunction(
|
|
4868
4892
|
rt,
|
|
4869
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4870
|
-
|
|
4893
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_i8"),
|
|
4894
|
+
1,
|
|
4871
4895
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4872
|
-
return this->
|
|
4896
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_i8(rt, thisVal, args, count);
|
|
4873
4897
|
}
|
|
4874
4898
|
);
|
|
4875
|
-
props["
|
|
4899
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_u16"] = jsi::Function::createFromHostFunction(
|
|
4876
4900
|
rt,
|
|
4877
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4878
|
-
|
|
4901
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_u16"),
|
|
4902
|
+
3,
|
|
4879
4903
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4880
|
-
return this->
|
|
4904
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_u16(rt, thisVal, args, count);
|
|
4881
4905
|
}
|
|
4882
4906
|
);
|
|
4883
|
-
props["
|
|
4907
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_u16"] = jsi::Function::createFromHostFunction(
|
|
4884
4908
|
rt,
|
|
4885
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4886
|
-
|
|
4909
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_u16"),
|
|
4910
|
+
1,
|
|
4887
4911
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4888
|
-
return this->
|
|
4912
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_u16(rt, thisVal, args, count);
|
|
4889
4913
|
}
|
|
4890
4914
|
);
|
|
4891
|
-
props["
|
|
4915
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_u16"] = jsi::Function::createFromHostFunction(
|
|
4892
4916
|
rt,
|
|
4893
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4894
|
-
|
|
4917
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_u16"),
|
|
4918
|
+
1,
|
|
4895
4919
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4896
|
-
return this->
|
|
4920
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_u16(rt, thisVal, args, count);
|
|
4897
4921
|
}
|
|
4898
4922
|
);
|
|
4899
|
-
props["
|
|
4923
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_u16"] = jsi::Function::createFromHostFunction(
|
|
4900
4924
|
rt,
|
|
4901
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4902
|
-
|
|
4925
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_u16"),
|
|
4926
|
+
1,
|
|
4903
4927
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4904
|
-
return this->
|
|
4928
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_u16(rt, thisVal, args, count);
|
|
4905
4929
|
}
|
|
4906
4930
|
);
|
|
4907
|
-
props["
|
|
4931
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_i16"] = jsi::Function::createFromHostFunction(
|
|
4908
4932
|
rt,
|
|
4909
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4910
|
-
|
|
4933
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_i16"),
|
|
4934
|
+
3,
|
|
4911
4935
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4912
|
-
return this->
|
|
4936
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_i16(rt, thisVal, args, count);
|
|
4913
4937
|
}
|
|
4914
4938
|
);
|
|
4915
|
-
props["
|
|
4939
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_i16"] = jsi::Function::createFromHostFunction(
|
|
4916
4940
|
rt,
|
|
4917
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4918
|
-
|
|
4941
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_i16"),
|
|
4942
|
+
1,
|
|
4919
4943
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4920
|
-
return this->
|
|
4944
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_i16(rt, thisVal, args, count);
|
|
4921
4945
|
}
|
|
4922
4946
|
);
|
|
4923
|
-
props["
|
|
4947
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_i16"] = jsi::Function::createFromHostFunction(
|
|
4924
4948
|
rt,
|
|
4925
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4926
|
-
|
|
4949
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_i16"),
|
|
4950
|
+
1,
|
|
4927
4951
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4928
|
-
return this->
|
|
4952
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_i16(rt, thisVal, args, count);
|
|
4929
4953
|
}
|
|
4930
4954
|
);
|
|
4931
|
-
props["
|
|
4955
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_i16"] = jsi::Function::createFromHostFunction(
|
|
4932
4956
|
rt,
|
|
4933
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4934
|
-
|
|
4957
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_i16"),
|
|
4958
|
+
1,
|
|
4935
4959
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4936
|
-
return this->
|
|
4960
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_i16(rt, thisVal, args, count);
|
|
4937
4961
|
}
|
|
4938
4962
|
);
|
|
4939
|
-
props["
|
|
4963
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_u32"] = jsi::Function::createFromHostFunction(
|
|
4940
4964
|
rt,
|
|
4941
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4942
|
-
|
|
4965
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_u32"),
|
|
4966
|
+
3,
|
|
4943
4967
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4944
|
-
return this->
|
|
4968
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_u32(rt, thisVal, args, count);
|
|
4945
4969
|
}
|
|
4946
4970
|
);
|
|
4947
|
-
props["
|
|
4971
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_u32"] = jsi::Function::createFromHostFunction(
|
|
4948
4972
|
rt,
|
|
4949
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4950
|
-
|
|
4973
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_u32"),
|
|
4974
|
+
1,
|
|
4951
4975
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4952
|
-
return this->
|
|
4976
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_u32(rt, thisVal, args, count);
|
|
4953
4977
|
}
|
|
4954
4978
|
);
|
|
4955
|
-
props["
|
|
4979
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_u32"] = jsi::Function::createFromHostFunction(
|
|
4956
4980
|
rt,
|
|
4957
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4958
|
-
|
|
4981
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_u32"),
|
|
4982
|
+
1,
|
|
4959
4983
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4960
|
-
return this->
|
|
4984
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_u32(rt, thisVal, args, count);
|
|
4961
4985
|
}
|
|
4962
4986
|
);
|
|
4963
|
-
props["
|
|
4987
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_u32"] = jsi::Function::createFromHostFunction(
|
|
4964
4988
|
rt,
|
|
4965
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4966
|
-
|
|
4989
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_u32"),
|
|
4990
|
+
1,
|
|
4967
4991
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4968
|
-
return this->
|
|
4992
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_u32(rt, thisVal, args, count);
|
|
4969
4993
|
}
|
|
4970
4994
|
);
|
|
4971
|
-
props["
|
|
4995
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_i32"] = jsi::Function::createFromHostFunction(
|
|
4972
4996
|
rt,
|
|
4973
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4974
|
-
|
|
4997
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_i32"),
|
|
4998
|
+
3,
|
|
4975
4999
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4976
|
-
return this->
|
|
5000
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_i32(rt, thisVal, args, count);
|
|
4977
5001
|
}
|
|
4978
5002
|
);
|
|
4979
|
-
props["
|
|
5003
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_i32"] = jsi::Function::createFromHostFunction(
|
|
4980
5004
|
rt,
|
|
4981
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4982
|
-
|
|
5005
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_i32"),
|
|
5006
|
+
1,
|
|
4983
5007
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4984
|
-
return this->
|
|
5008
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_i32(rt, thisVal, args, count);
|
|
4985
5009
|
}
|
|
4986
5010
|
);
|
|
4987
|
-
props["
|
|
5011
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_i32"] = jsi::Function::createFromHostFunction(
|
|
4988
5012
|
rt,
|
|
4989
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4990
|
-
|
|
5013
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_i32"),
|
|
5014
|
+
1,
|
|
4991
5015
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4992
|
-
return this->
|
|
5016
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_i32(rt, thisVal, args, count);
|
|
4993
5017
|
}
|
|
4994
5018
|
);
|
|
4995
|
-
props["
|
|
5019
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_i32"] = jsi::Function::createFromHostFunction(
|
|
4996
5020
|
rt,
|
|
4997
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4998
|
-
|
|
5021
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_i32"),
|
|
5022
|
+
1,
|
|
4999
5023
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5000
|
-
return this->
|
|
5024
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_i32(rt, thisVal, args, count);
|
|
5001
5025
|
}
|
|
5002
5026
|
);
|
|
5003
|
-
props["
|
|
5027
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_u64"] = jsi::Function::createFromHostFunction(
|
|
5004
5028
|
rt,
|
|
5005
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5006
|
-
|
|
5029
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_u64"),
|
|
5030
|
+
3,
|
|
5007
5031
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5008
|
-
return this->
|
|
5032
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_u64(rt, thisVal, args, count);
|
|
5009
5033
|
}
|
|
5010
5034
|
);
|
|
5011
|
-
props["
|
|
5035
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_u64"] = jsi::Function::createFromHostFunction(
|
|
5012
5036
|
rt,
|
|
5013
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5014
|
-
|
|
5037
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_u64"),
|
|
5038
|
+
1,
|
|
5015
5039
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5016
|
-
return this->
|
|
5040
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_u64(rt, thisVal, args, count);
|
|
5017
5041
|
}
|
|
5018
5042
|
);
|
|
5019
|
-
props["
|
|
5043
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_u64"] = jsi::Function::createFromHostFunction(
|
|
5020
5044
|
rt,
|
|
5021
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5022
|
-
|
|
5045
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_u64"),
|
|
5046
|
+
1,
|
|
5023
5047
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5024
|
-
return this->
|
|
5048
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_u64(rt, thisVal, args, count);
|
|
5025
5049
|
}
|
|
5026
5050
|
);
|
|
5027
|
-
props["
|
|
5051
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_u64"] = jsi::Function::createFromHostFunction(
|
|
5028
5052
|
rt,
|
|
5029
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5030
|
-
|
|
5053
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_u64"),
|
|
5054
|
+
1,
|
|
5031
5055
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5032
|
-
return this->
|
|
5056
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_u64(rt, thisVal, args, count);
|
|
5033
5057
|
}
|
|
5034
5058
|
);
|
|
5035
|
-
props["
|
|
5059
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_i64"] = jsi::Function::createFromHostFunction(
|
|
5036
5060
|
rt,
|
|
5037
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5038
|
-
|
|
5061
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_i64"),
|
|
5062
|
+
3,
|
|
5039
5063
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5040
|
-
return this->
|
|
5064
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_i64(rt, thisVal, args, count);
|
|
5041
5065
|
}
|
|
5042
5066
|
);
|
|
5043
|
-
props["
|
|
5067
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_i64"] = jsi::Function::createFromHostFunction(
|
|
5044
5068
|
rt,
|
|
5045
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5046
|
-
|
|
5069
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_i64"),
|
|
5070
|
+
1,
|
|
5047
5071
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5048
|
-
return this->
|
|
5072
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_i64(rt, thisVal, args, count);
|
|
5049
5073
|
}
|
|
5050
5074
|
);
|
|
5051
|
-
props["
|
|
5075
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_i64"] = jsi::Function::createFromHostFunction(
|
|
5052
5076
|
rt,
|
|
5053
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5054
|
-
|
|
5077
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_i64"),
|
|
5078
|
+
1,
|
|
5055
5079
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5056
|
-
return this->
|
|
5080
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_i64(rt, thisVal, args, count);
|
|
5057
5081
|
}
|
|
5058
5082
|
);
|
|
5059
|
-
props["
|
|
5083
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_i64"] = jsi::Function::createFromHostFunction(
|
|
5060
5084
|
rt,
|
|
5061
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5062
|
-
|
|
5085
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_i64"),
|
|
5086
|
+
1,
|
|
5063
5087
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5064
|
-
return this->
|
|
5088
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_i64(rt, thisVal, args, count);
|
|
5065
5089
|
}
|
|
5066
5090
|
);
|
|
5067
|
-
props["
|
|
5091
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_f32"] = jsi::Function::createFromHostFunction(
|
|
5068
5092
|
rt,
|
|
5069
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5070
|
-
|
|
5093
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_f32"),
|
|
5094
|
+
3,
|
|
5071
5095
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5072
|
-
return this->
|
|
5096
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_f32(rt, thisVal, args, count);
|
|
5073
5097
|
}
|
|
5074
5098
|
);
|
|
5075
|
-
props["
|
|
5099
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_f32"] = jsi::Function::createFromHostFunction(
|
|
5076
5100
|
rt,
|
|
5077
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5078
|
-
|
|
5101
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_f32"),
|
|
5102
|
+
1,
|
|
5079
5103
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5080
|
-
return this->
|
|
5104
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_f32(rt, thisVal, args, count);
|
|
5081
5105
|
}
|
|
5082
5106
|
);
|
|
5083
|
-
props["
|
|
5107
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_f32"] = jsi::Function::createFromHostFunction(
|
|
5084
5108
|
rt,
|
|
5085
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5086
|
-
|
|
5109
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_f32"),
|
|
5110
|
+
1,
|
|
5087
5111
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5088
|
-
return this->
|
|
5112
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_f32(rt, thisVal, args, count);
|
|
5089
5113
|
}
|
|
5090
5114
|
);
|
|
5091
|
-
props["
|
|
5115
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_f32"] = jsi::Function::createFromHostFunction(
|
|
5092
5116
|
rt,
|
|
5093
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5094
|
-
|
|
5117
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_f32"),
|
|
5118
|
+
1,
|
|
5095
5119
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5096
|
-
return this->
|
|
5120
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_f32(rt, thisVal, args, count);
|
|
5097
5121
|
}
|
|
5098
5122
|
);
|
|
5099
|
-
props["
|
|
5123
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_f64"] = jsi::Function::createFromHostFunction(
|
|
5100
5124
|
rt,
|
|
5101
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5102
|
-
|
|
5125
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_f64"),
|
|
5126
|
+
3,
|
|
5103
5127
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5104
|
-
return this->
|
|
5128
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_f64(rt, thisVal, args, count);
|
|
5105
5129
|
}
|
|
5106
5130
|
);
|
|
5107
|
-
props["
|
|
5131
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_f64"] = jsi::Function::createFromHostFunction(
|
|
5108
5132
|
rt,
|
|
5109
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5110
|
-
|
|
5133
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_f64"),
|
|
5134
|
+
1,
|
|
5111
5135
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5112
|
-
return this->
|
|
5136
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_f64(rt, thisVal, args, count);
|
|
5113
5137
|
}
|
|
5114
5138
|
);
|
|
5115
|
-
props["
|
|
5139
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_f64"] = jsi::Function::createFromHostFunction(
|
|
5116
5140
|
rt,
|
|
5117
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5118
|
-
|
|
5141
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_f64"),
|
|
5142
|
+
1,
|
|
5119
5143
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5120
|
-
return this->
|
|
5144
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_f64(rt, thisVal, args, count);
|
|
5121
5145
|
}
|
|
5122
5146
|
);
|
|
5123
|
-
props["
|
|
5147
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_f64"] = jsi::Function::createFromHostFunction(
|
|
5124
5148
|
rt,
|
|
5125
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5126
|
-
|
|
5149
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_f64"),
|
|
5150
|
+
1,
|
|
5127
5151
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5128
|
-
return this->
|
|
5152
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_f64(rt, thisVal, args, count);
|
|
5129
5153
|
}
|
|
5130
5154
|
);
|
|
5131
|
-
props["
|
|
5155
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_rust_buffer"] = jsi::Function::createFromHostFunction(
|
|
5132
5156
|
rt,
|
|
5133
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5134
|
-
|
|
5157
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_rust_buffer"),
|
|
5158
|
+
3,
|
|
5135
5159
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5136
|
-
return this->
|
|
5160
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_rust_buffer(rt, thisVal, args, count);
|
|
5137
5161
|
}
|
|
5138
5162
|
);
|
|
5139
|
-
props["
|
|
5163
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_rust_buffer"] = jsi::Function::createFromHostFunction(
|
|
5140
5164
|
rt,
|
|
5141
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5142
|
-
|
|
5165
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_rust_buffer"),
|
|
5166
|
+
1,
|
|
5143
5167
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5144
|
-
return this->
|
|
5168
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_rust_buffer(rt, thisVal, args, count);
|
|
5145
5169
|
}
|
|
5146
5170
|
);
|
|
5147
|
-
props["
|
|
5171
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_rust_buffer"] = jsi::Function::createFromHostFunction(
|
|
5148
5172
|
rt,
|
|
5149
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5150
|
-
|
|
5173
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_rust_buffer"),
|
|
5174
|
+
1,
|
|
5151
5175
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5152
|
-
return this->
|
|
5176
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_rust_buffer(rt, thisVal, args, count);
|
|
5153
5177
|
}
|
|
5154
5178
|
);
|
|
5155
|
-
props["
|
|
5179
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_rust_buffer"] = jsi::Function::createFromHostFunction(
|
|
5156
5180
|
rt,
|
|
5157
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5158
|
-
|
|
5181
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_rust_buffer"),
|
|
5182
|
+
1,
|
|
5159
5183
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5160
|
-
return this->
|
|
5184
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_rust_buffer(rt, thisVal, args, count);
|
|
5161
5185
|
}
|
|
5162
5186
|
);
|
|
5163
|
-
props["
|
|
5187
|
+
props["ubrn_ffi_bark_ffi_rust_future_poll_void"] = jsi::Function::createFromHostFunction(
|
|
5164
5188
|
rt,
|
|
5165
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5166
|
-
|
|
5189
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_poll_void"),
|
|
5190
|
+
3,
|
|
5167
5191
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5168
|
-
return this->
|
|
5192
|
+
return this->cpp_ffi_bark_ffi_rust_future_poll_void(rt, thisVal, args, count);
|
|
5169
5193
|
}
|
|
5170
5194
|
);
|
|
5171
|
-
props["
|
|
5195
|
+
props["ubrn_ffi_bark_ffi_rust_future_cancel_void"] = jsi::Function::createFromHostFunction(
|
|
5172
5196
|
rt,
|
|
5173
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5174
|
-
|
|
5197
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_cancel_void"),
|
|
5198
|
+
1,
|
|
5175
5199
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5176
|
-
return this->
|
|
5200
|
+
return this->cpp_ffi_bark_ffi_rust_future_cancel_void(rt, thisVal, args, count);
|
|
5177
5201
|
}
|
|
5178
5202
|
);
|
|
5179
|
-
props["
|
|
5203
|
+
props["ubrn_ffi_bark_ffi_rust_future_free_void"] = jsi::Function::createFromHostFunction(
|
|
5180
5204
|
rt,
|
|
5181
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5182
|
-
|
|
5205
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_free_void"),
|
|
5206
|
+
1,
|
|
5183
5207
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5184
|
-
return this->
|
|
5208
|
+
return this->cpp_ffi_bark_ffi_rust_future_free_void(rt, thisVal, args, count);
|
|
5185
5209
|
}
|
|
5186
5210
|
);
|
|
5187
|
-
props["
|
|
5211
|
+
props["ubrn_ffi_bark_ffi_rust_future_complete_void"] = jsi::Function::createFromHostFunction(
|
|
5188
5212
|
rt,
|
|
5189
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5190
|
-
|
|
5213
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_rust_future_complete_void"),
|
|
5214
|
+
1,
|
|
5191
5215
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5192
|
-
return this->
|
|
5216
|
+
return this->cpp_ffi_bark_ffi_rust_future_complete_void(rt, thisVal, args, count);
|
|
5193
5217
|
}
|
|
5194
5218
|
);
|
|
5195
|
-
props["
|
|
5219
|
+
props["ubrn_uniffi_bark_ffi_checksum_func_extract_tx_from_psbt"] = jsi::Function::createFromHostFunction(
|
|
5196
5220
|
rt,
|
|
5197
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5221
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_func_extract_tx_from_psbt"),
|
|
5198
5222
|
0,
|
|
5199
5223
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5200
|
-
return this->
|
|
5224
|
+
return this->cpp_uniffi_bark_ffi_checksum_func_extract_tx_from_psbt(rt, thisVal, args, count);
|
|
5201
5225
|
}
|
|
5202
5226
|
);
|
|
5203
|
-
props["
|
|
5227
|
+
props["ubrn_uniffi_bark_ffi_checksum_func_generate_mnemonic"] = jsi::Function::createFromHostFunction(
|
|
5204
5228
|
rt,
|
|
5205
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5229
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_func_generate_mnemonic"),
|
|
5206
5230
|
0,
|
|
5207
5231
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5208
|
-
return this->
|
|
5232
|
+
return this->cpp_uniffi_bark_ffi_checksum_func_generate_mnemonic(rt, thisVal, args, count);
|
|
5209
5233
|
}
|
|
5210
5234
|
);
|
|
5211
|
-
props["
|
|
5235
|
+
props["ubrn_uniffi_bark_ffi_checksum_func_validate_ark_address"] = jsi::Function::createFromHostFunction(
|
|
5212
5236
|
rt,
|
|
5213
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5237
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_func_validate_ark_address"),
|
|
5214
5238
|
0,
|
|
5215
5239
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5216
|
-
return this->
|
|
5240
|
+
return this->cpp_uniffi_bark_ffi_checksum_func_validate_ark_address(rt, thisVal, args, count);
|
|
5217
5241
|
}
|
|
5218
5242
|
);
|
|
5219
|
-
props["
|
|
5243
|
+
props["ubrn_uniffi_bark_ffi_checksum_func_validate_mnemonic"] = jsi::Function::createFromHostFunction(
|
|
5220
5244
|
rt,
|
|
5221
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5245
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_func_validate_mnemonic"),
|
|
5222
5246
|
0,
|
|
5223
5247
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5224
|
-
return this->
|
|
5248
|
+
return this->cpp_uniffi_bark_ffi_checksum_func_validate_mnemonic(rt, thisVal, args, count);
|
|
5225
5249
|
}
|
|
5226
5250
|
);
|
|
5227
|
-
props["
|
|
5251
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait"] = jsi::Function::createFromHostFunction(
|
|
5228
5252
|
rt,
|
|
5229
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5253
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait"),
|
|
5230
5254
|
0,
|
|
5231
5255
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5232
|
-
return this->
|
|
5256
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait(rt, thisVal, args, count);
|
|
5233
5257
|
}
|
|
5234
5258
|
);
|
|
5235
|
-
props["
|
|
5259
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_notificationholder_next_notification"] = jsi::Function::createFromHostFunction(
|
|
5236
5260
|
rt,
|
|
5237
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5261
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_notificationholder_next_notification"),
|
|
5238
5262
|
0,
|
|
5239
5263
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5240
|
-
return this->
|
|
5264
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_notificationholder_next_notification(rt, thisVal, args, count);
|
|
5241
5265
|
}
|
|
5242
5266
|
);
|
|
5243
|
-
props["
|
|
5267
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_balance"] = jsi::Function::createFromHostFunction(
|
|
5244
5268
|
rt,
|
|
5245
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5269
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_balance"),
|
|
5246
5270
|
0,
|
|
5247
5271
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5248
|
-
return this->
|
|
5272
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_onchainwallet_balance(rt, thisVal, args, count);
|
|
5249
5273
|
}
|
|
5250
5274
|
);
|
|
5251
|
-
props["
|
|
5275
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_new_address"] = jsi::Function::createFromHostFunction(
|
|
5252
5276
|
rt,
|
|
5253
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5277
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_new_address"),
|
|
5254
5278
|
0,
|
|
5255
5279
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5256
|
-
return this->
|
|
5280
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_onchainwallet_new_address(rt, thisVal, args, count);
|
|
5257
5281
|
}
|
|
5258
5282
|
);
|
|
5259
|
-
props["
|
|
5283
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_send"] = jsi::Function::createFromHostFunction(
|
|
5260
5284
|
rt,
|
|
5261
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5285
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_send"),
|
|
5262
5286
|
0,
|
|
5263
5287
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5264
|
-
return this->
|
|
5288
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_onchainwallet_send(rt, thisVal, args, count);
|
|
5265
5289
|
}
|
|
5266
5290
|
);
|
|
5267
|
-
props["
|
|
5291
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_sync"] = jsi::Function::createFromHostFunction(
|
|
5268
5292
|
rt,
|
|
5269
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5293
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_onchainwallet_sync"),
|
|
5270
5294
|
0,
|
|
5271
5295
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5272
|
-
return this->
|
|
5296
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_onchainwallet_sync(rt, thisVal, args, count);
|
|
5273
5297
|
}
|
|
5274
5298
|
);
|
|
5275
|
-
props["
|
|
5299
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_all_exits_claimable_at_height"] = jsi::Function::createFromHostFunction(
|
|
5276
5300
|
rt,
|
|
5277
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5301
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_all_exits_claimable_at_height"),
|
|
5278
5302
|
0,
|
|
5279
5303
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5280
|
-
return this->
|
|
5304
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_all_exits_claimable_at_height(rt, thisVal, args, count);
|
|
5281
5305
|
}
|
|
5282
5306
|
);
|
|
5283
|
-
props["
|
|
5307
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_all_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5284
5308
|
rt,
|
|
5285
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5309
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_all_vtxos"),
|
|
5286
5310
|
0,
|
|
5287
5311
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5288
|
-
return this->
|
|
5312
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_all_vtxos(rt, thisVal, args, count);
|
|
5289
5313
|
}
|
|
5290
5314
|
);
|
|
5291
|
-
props["
|
|
5315
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_ark_info"] = jsi::Function::createFromHostFunction(
|
|
5292
5316
|
rt,
|
|
5293
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5317
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_ark_info"),
|
|
5294
5318
|
0,
|
|
5295
5319
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5296
|
-
return this->
|
|
5320
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(rt, thisVal, args, count);
|
|
5297
5321
|
}
|
|
5298
5322
|
);
|
|
5299
|
-
props["
|
|
5323
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_balance"] = jsi::Function::createFromHostFunction(
|
|
5300
5324
|
rt,
|
|
5301
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5325
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_balance"),
|
|
5302
5326
|
0,
|
|
5303
5327
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5304
|
-
return this->
|
|
5328
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_balance(rt, thisVal, args, count);
|
|
5305
5329
|
}
|
|
5306
5330
|
);
|
|
5307
|
-
props["
|
|
5331
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_board_all"] = jsi::Function::createFromHostFunction(
|
|
5308
5332
|
rt,
|
|
5309
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5333
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_board_all"),
|
|
5310
5334
|
0,
|
|
5311
5335
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5312
|
-
return this->
|
|
5336
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_board_all(rt, thisVal, args, count);
|
|
5313
5337
|
}
|
|
5314
5338
|
);
|
|
5315
|
-
props["
|
|
5339
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_board_amount"] = jsi::Function::createFromHostFunction(
|
|
5316
5340
|
rt,
|
|
5317
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5341
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_board_amount"),
|
|
5318
5342
|
0,
|
|
5319
5343
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5320
|
-
return this->
|
|
5344
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_board_amount(rt, thisVal, args, count);
|
|
5321
5345
|
}
|
|
5322
5346
|
);
|
|
5323
|
-
props["
|
|
5347
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_bolt11_invoice"] = jsi::Function::createFromHostFunction(
|
|
5324
5348
|
rt,
|
|
5325
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5349
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_bolt11_invoice"),
|
|
5326
5350
|
0,
|
|
5327
5351
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5328
|
-
return this->
|
|
5352
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_bolt11_invoice(rt, thisVal, args, count);
|
|
5329
5353
|
}
|
|
5330
5354
|
);
|
|
5331
|
-
props["
|
|
5355
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_broadcast_tx"] = jsi::Function::createFromHostFunction(
|
|
5332
5356
|
rt,
|
|
5333
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5357
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_broadcast_tx"),
|
|
5334
5358
|
0,
|
|
5335
5359
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5336
|
-
return this->
|
|
5360
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_broadcast_tx(rt, thisVal, args, count);
|
|
5337
5361
|
}
|
|
5338
5362
|
);
|
|
5339
|
-
props["
|
|
5363
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_cancel_all_pending_rounds"] = jsi::Function::createFromHostFunction(
|
|
5340
5364
|
rt,
|
|
5341
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5365
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_cancel_all_pending_rounds"),
|
|
5342
5366
|
0,
|
|
5343
5367
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5344
|
-
return this->
|
|
5368
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_cancel_all_pending_rounds(rt, thisVal, args, count);
|
|
5345
5369
|
}
|
|
5346
5370
|
);
|
|
5347
|
-
props["
|
|
5371
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_cancel_pending_round"] = jsi::Function::createFromHostFunction(
|
|
5348
5372
|
rt,
|
|
5349
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5373
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_cancel_pending_round"),
|
|
5350
5374
|
0,
|
|
5351
5375
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5352
|
-
return this->
|
|
5376
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_cancel_pending_round(rt, thisVal, args, count);
|
|
5353
5377
|
}
|
|
5354
5378
|
);
|
|
5355
|
-
props["
|
|
5379
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_check_lightning_payment"] = jsi::Function::createFromHostFunction(
|
|
5356
5380
|
rt,
|
|
5357
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5381
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_check_lightning_payment"),
|
|
5358
5382
|
0,
|
|
5359
5383
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5360
|
-
return this->
|
|
5384
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_check_lightning_payment(rt, thisVal, args, count);
|
|
5361
5385
|
}
|
|
5362
5386
|
);
|
|
5363
|
-
props["
|
|
5387
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_claimable_lightning_receive_balance_sats"] = jsi::Function::createFromHostFunction(
|
|
5364
5388
|
rt,
|
|
5365
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5389
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_claimable_lightning_receive_balance_sats"),
|
|
5366
5390
|
0,
|
|
5367
5391
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5368
|
-
return this->
|
|
5392
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_claimable_lightning_receive_balance_sats(rt, thisVal, args, count);
|
|
5369
5393
|
}
|
|
5370
5394
|
);
|
|
5371
|
-
props["
|
|
5395
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_config"] = jsi::Function::createFromHostFunction(
|
|
5372
5396
|
rt,
|
|
5373
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5397
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_config"),
|
|
5374
5398
|
0,
|
|
5375
5399
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5376
|
-
return this->
|
|
5400
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_config(rt, thisVal, args, count);
|
|
5377
5401
|
}
|
|
5378
5402
|
);
|
|
5379
|
-
props["
|
|
5403
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_drain_exits"] = jsi::Function::createFromHostFunction(
|
|
5380
5404
|
rt,
|
|
5381
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5405
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_drain_exits"),
|
|
5382
5406
|
0,
|
|
5383
5407
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5384
|
-
return this->
|
|
5408
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_drain_exits(rt, thisVal, args, count);
|
|
5385
5409
|
}
|
|
5386
5410
|
);
|
|
5387
|
-
props["
|
|
5411
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_board_fee"] = jsi::Function::createFromHostFunction(
|
|
5388
5412
|
rt,
|
|
5389
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5413
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_board_fee"),
|
|
5390
5414
|
0,
|
|
5391
5415
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5392
|
-
return this->
|
|
5416
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_board_fee(rt, thisVal, args, count);
|
|
5393
5417
|
}
|
|
5394
5418
|
);
|
|
5395
|
-
props["
|
|
5419
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_receive_fee"] = jsi::Function::createFromHostFunction(
|
|
5396
5420
|
rt,
|
|
5397
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5421
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_receive_fee"),
|
|
5398
5422
|
0,
|
|
5399
5423
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5400
|
-
return this->
|
|
5424
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_receive_fee(rt, thisVal, args, count);
|
|
5401
5425
|
}
|
|
5402
5426
|
);
|
|
5403
|
-
props["
|
|
5427
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_send_fee"] = jsi::Function::createFromHostFunction(
|
|
5404
5428
|
rt,
|
|
5405
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5429
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_send_fee"),
|
|
5406
5430
|
0,
|
|
5407
5431
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5408
|
-
return this->
|
|
5432
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_send_fee(rt, thisVal, args, count);
|
|
5409
5433
|
}
|
|
5410
5434
|
);
|
|
5411
|
-
props["
|
|
5435
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee"] = jsi::Function::createFromHostFunction(
|
|
5412
5436
|
rt,
|
|
5413
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5437
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee"),
|
|
5414
5438
|
0,
|
|
5415
5439
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5416
|
-
return this->
|
|
5440
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee(rt, thisVal, args, count);
|
|
5417
5441
|
}
|
|
5418
5442
|
);
|
|
5419
|
-
props["
|
|
5443
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee"] = jsi::Function::createFromHostFunction(
|
|
5420
5444
|
rt,
|
|
5421
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5445
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee"),
|
|
5422
5446
|
0,
|
|
5423
5447
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5424
|
-
return this->
|
|
5448
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee(rt, thisVal, args, count);
|
|
5425
5449
|
}
|
|
5426
5450
|
);
|
|
5427
|
-
props["
|
|
5451
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_refresh_fee"] = jsi::Function::createFromHostFunction(
|
|
5428
5452
|
rt,
|
|
5429
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5453
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_refresh_fee"),
|
|
5430
5454
|
0,
|
|
5431
5455
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5432
|
-
return this->
|
|
5456
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_refresh_fee(rt, thisVal, args, count);
|
|
5433
5457
|
}
|
|
5434
5458
|
);
|
|
5435
|
-
props["
|
|
5459
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_send_onchain_fee"] = jsi::Function::createFromHostFunction(
|
|
5436
5460
|
rt,
|
|
5437
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5461
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_estimate_send_onchain_fee"),
|
|
5438
5462
|
0,
|
|
5439
5463
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5440
|
-
return this->
|
|
5464
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_send_onchain_fee(rt, thisVal, args, count);
|
|
5441
5465
|
}
|
|
5442
5466
|
);
|
|
5443
|
-
props["
|
|
5467
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_fingerprint"] = jsi::Function::createFromHostFunction(
|
|
5444
5468
|
rt,
|
|
5445
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5469
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_fingerprint"),
|
|
5446
5470
|
0,
|
|
5447
5471
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5448
|
-
return this->
|
|
5472
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_fingerprint(rt, thisVal, args, count);
|
|
5449
5473
|
}
|
|
5450
5474
|
);
|
|
5451
|
-
props["
|
|
5475
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_status"] = jsi::Function::createFromHostFunction(
|
|
5452
5476
|
rt,
|
|
5453
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5477
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_status"),
|
|
5454
5478
|
0,
|
|
5455
5479
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5456
|
-
return this->
|
|
5480
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_exit_status(rt, thisVal, args, count);
|
|
5457
5481
|
}
|
|
5458
5482
|
);
|
|
5459
|
-
props["
|
|
5483
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5460
5484
|
rt,
|
|
5461
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5485
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_vtxos"),
|
|
5462
5486
|
0,
|
|
5463
5487
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5464
|
-
return this->
|
|
5488
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_exit_vtxos(rt, thisVal, args, count);
|
|
5465
5489
|
}
|
|
5466
5490
|
);
|
|
5467
|
-
props["
|
|
5491
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_expiring_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5468
5492
|
rt,
|
|
5469
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5493
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_expiring_vtxos"),
|
|
5470
5494
|
0,
|
|
5471
5495
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5472
|
-
return this->
|
|
5496
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_expiring_vtxos(rt, thisVal, args, count);
|
|
5473
5497
|
}
|
|
5474
5498
|
);
|
|
5475
|
-
props["
|
|
5499
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_first_expiring_vtxo_blockheight"] = jsi::Function::createFromHostFunction(
|
|
5476
5500
|
rt,
|
|
5477
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5501
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_first_expiring_vtxo_blockheight"),
|
|
5478
5502
|
0,
|
|
5479
5503
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5480
|
-
return this->
|
|
5504
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_first_expiring_vtxo_blockheight(rt, thisVal, args, count);
|
|
5481
5505
|
}
|
|
5482
5506
|
);
|
|
5483
|
-
props["
|
|
5507
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_next_required_refresh_blockheight"] = jsi::Function::createFromHostFunction(
|
|
5484
5508
|
rt,
|
|
5485
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5509
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_next_required_refresh_blockheight"),
|
|
5486
5510
|
0,
|
|
5487
5511
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5488
|
-
return this->
|
|
5512
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_next_required_refresh_blockheight(rt, thisVal, args, count);
|
|
5489
5513
|
}
|
|
5490
5514
|
);
|
|
5491
|
-
props["
|
|
5515
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_vtxo_by_id"] = jsi::Function::createFromHostFunction(
|
|
5492
5516
|
rt,
|
|
5493
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5517
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_vtxo_by_id"),
|
|
5494
5518
|
0,
|
|
5495
5519
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5496
|
-
return this->
|
|
5520
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_vtxo_by_id(rt, thisVal, args, count);
|
|
5497
5521
|
}
|
|
5498
5522
|
);
|
|
5499
|
-
props["
|
|
5523
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_vtxos_to_refresh"] = jsi::Function::createFromHostFunction(
|
|
5500
5524
|
rt,
|
|
5501
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5525
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_vtxos_to_refresh"),
|
|
5502
5526
|
0,
|
|
5503
5527
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5504
|
-
return this->
|
|
5528
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_get_vtxos_to_refresh(rt, thisVal, args, count);
|
|
5505
5529
|
}
|
|
5506
5530
|
);
|
|
5507
|
-
props["
|
|
5531
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_has_pending_exits"] = jsi::Function::createFromHostFunction(
|
|
5508
5532
|
rt,
|
|
5509
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5533
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_has_pending_exits"),
|
|
5510
5534
|
0,
|
|
5511
5535
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5512
|
-
return this->
|
|
5536
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_has_pending_exits(rt, thisVal, args, count);
|
|
5513
5537
|
}
|
|
5514
5538
|
);
|
|
5515
|
-
props["
|
|
5539
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_history"] = jsi::Function::createFromHostFunction(
|
|
5516
5540
|
rt,
|
|
5517
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5541
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_history"),
|
|
5518
5542
|
0,
|
|
5519
5543
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5520
|
-
return this->
|
|
5544
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_history(rt, thisVal, args, count);
|
|
5521
5545
|
}
|
|
5522
5546
|
);
|
|
5523
|
-
props["
|
|
5547
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method"] = jsi::Function::createFromHostFunction(
|
|
5524
5548
|
rt,
|
|
5525
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5549
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method"),
|
|
5526
5550
|
0,
|
|
5527
5551
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5528
|
-
return this->
|
|
5552
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(rt, thisVal, args, count);
|
|
5529
5553
|
}
|
|
5530
5554
|
);
|
|
5531
|
-
props["
|
|
5555
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_import_vtxo"] = jsi::Function::createFromHostFunction(
|
|
5532
5556
|
rt,
|
|
5533
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5557
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_import_vtxo"),
|
|
5534
5558
|
0,
|
|
5535
5559
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5536
|
-
return this->
|
|
5560
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(rt, thisVal, args, count);
|
|
5537
5561
|
}
|
|
5538
5562
|
);
|
|
5539
|
-
props["
|
|
5563
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status"] = jsi::Function::createFromHostFunction(
|
|
5540
5564
|
rt,
|
|
5541
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5565
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status"),
|
|
5542
5566
|
0,
|
|
5543
5567
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5544
|
-
return this->
|
|
5568
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(rt, thisVal, args, count);
|
|
5545
5569
|
}
|
|
5546
5570
|
);
|
|
5547
|
-
props["
|
|
5571
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits"] = jsi::Function::createFromHostFunction(
|
|
5548
5572
|
rt,
|
|
5549
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5573
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits"),
|
|
5550
5574
|
0,
|
|
5551
5575
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5552
|
-
return this->
|
|
5576
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(rt, thisVal, args, count);
|
|
5553
5577
|
}
|
|
5554
5578
|
);
|
|
5555
|
-
props["
|
|
5579
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization"] = jsi::Function::createFromHostFunction(
|
|
5556
5580
|
rt,
|
|
5557
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5581
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization"),
|
|
5558
5582
|
0,
|
|
5559
5583
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5560
|
-
return this->
|
|
5584
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization(rt, thisVal, args, count);
|
|
5561
5585
|
}
|
|
5562
5586
|
);
|
|
5563
|
-
props["
|
|
5587
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier"] = jsi::Function::createFromHostFunction(
|
|
5564
5588
|
rt,
|
|
5565
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5589
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier"),
|
|
5566
5590
|
0,
|
|
5567
5591
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5568
|
-
return this->
|
|
5592
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(rt, thisVal, args, count);
|
|
5569
5593
|
}
|
|
5570
5594
|
);
|
|
5571
|
-
props["
|
|
5595
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance"] = jsi::Function::createFromHostFunction(
|
|
5572
5596
|
rt,
|
|
5573
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5597
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance"),
|
|
5574
5598
|
0,
|
|
5575
5599
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5576
|
-
return this->
|
|
5600
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance(rt, thisVal, args, count);
|
|
5577
5601
|
}
|
|
5578
5602
|
);
|
|
5579
|
-
props["
|
|
5603
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated"] = jsi::Function::createFromHostFunction(
|
|
5580
5604
|
rt,
|
|
5581
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5605
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated"),
|
|
5582
5606
|
0,
|
|
5583
5607
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5584
|
-
return this->
|
|
5608
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(rt, thisVal, args, count);
|
|
5585
5609
|
}
|
|
5586
5610
|
);
|
|
5587
|
-
props["
|
|
5611
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
5588
5612
|
rt,
|
|
5589
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5613
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh"),
|
|
5590
5614
|
0,
|
|
5591
5615
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5592
|
-
return this->
|
|
5616
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh(rt, thisVal, args, count);
|
|
5593
5617
|
}
|
|
5594
5618
|
);
|
|
5595
|
-
props["
|
|
5619
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain"] = jsi::Function::createFromHostFunction(
|
|
5596
5620
|
rt,
|
|
5597
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5621
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain"),
|
|
5598
5622
|
0,
|
|
5599
5623
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5600
|
-
return this->
|
|
5624
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain(rt, thisVal, args, count);
|
|
5601
5625
|
}
|
|
5602
5626
|
);
|
|
5603
|
-
props["
|
|
5627
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated"] = jsi::Function::createFromHostFunction(
|
|
5604
5628
|
rt,
|
|
5605
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5629
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated"),
|
|
5606
5630
|
0,
|
|
5607
5631
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5608
|
-
return this->
|
|
5632
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(rt, thisVal, args, count);
|
|
5609
5633
|
}
|
|
5610
5634
|
);
|
|
5611
|
-
props["
|
|
5635
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
5612
5636
|
rt,
|
|
5613
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5637
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh"),
|
|
5614
5638
|
0,
|
|
5615
5639
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5616
|
-
return this->
|
|
5640
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh(rt, thisVal, args, count);
|
|
5617
5641
|
}
|
|
5618
5642
|
);
|
|
5619
|
-
props["
|
|
5643
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_network"] = jsi::Function::createFromHostFunction(
|
|
5620
5644
|
rt,
|
|
5621
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5645
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_network"),
|
|
5622
5646
|
0,
|
|
5623
5647
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5624
|
-
return this->
|
|
5648
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_network(rt, thisVal, args, count);
|
|
5625
5649
|
}
|
|
5626
5650
|
);
|
|
5627
|
-
props["
|
|
5651
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address"] = jsi::Function::createFromHostFunction(
|
|
5628
5652
|
rt,
|
|
5629
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5630
|
-
|
|
5653
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address"),
|
|
5654
|
+
0,
|
|
5631
5655
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5632
|
-
return this->
|
|
5656
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_new_address(rt, thisVal, args, count);
|
|
5633
5657
|
}
|
|
5634
5658
|
);
|
|
5635
|
-
props["
|
|
5659
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address_with_index"] = jsi::Function::createFromHostFunction(
|
|
5636
5660
|
rt,
|
|
5637
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5638
|
-
|
|
5661
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address_with_index"),
|
|
5662
|
+
0,
|
|
5639
5663
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5640
|
-
return this->
|
|
5664
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_new_address_with_index(rt, thisVal, args, count);
|
|
5665
|
+
}
|
|
5666
|
+
);
|
|
5667
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time"] = jsi::Function::createFromHostFunction(
|
|
5668
|
+
rt,
|
|
5669
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time"),
|
|
5670
|
+
0,
|
|
5671
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5672
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(rt, thisVal, args, count);
|
|
5673
|
+
}
|
|
5674
|
+
);
|
|
5675
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_notifications"] = jsi::Function::createFromHostFunction(
|
|
5676
|
+
rt,
|
|
5677
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_notifications"),
|
|
5678
|
+
0,
|
|
5679
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5680
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_notifications(rt, thisVal, args, count);
|
|
5681
|
+
}
|
|
5682
|
+
);
|
|
5683
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_all"] = jsi::Function::createFromHostFunction(
|
|
5684
|
+
rt,
|
|
5685
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_all"),
|
|
5686
|
+
0,
|
|
5687
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5688
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_offboard_all(rt, thisVal, args, count);
|
|
5689
|
+
}
|
|
5690
|
+
);
|
|
5691
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5692
|
+
rt,
|
|
5693
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos"),
|
|
5694
|
+
0,
|
|
5695
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5696
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos(rt, thisVal, args, count);
|
|
5697
|
+
}
|
|
5698
|
+
);
|
|
5699
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_address"] = jsi::Function::createFromHostFunction(
|
|
5700
|
+
rt,
|
|
5701
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_address"),
|
|
5702
|
+
0,
|
|
5703
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5704
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_address(rt, thisVal, args, count);
|
|
5705
|
+
}
|
|
5706
|
+
);
|
|
5707
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_invoice"] = jsi::Function::createFromHostFunction(
|
|
5708
|
+
rt,
|
|
5709
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_invoice"),
|
|
5710
|
+
0,
|
|
5711
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5712
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_invoice(rt, thisVal, args, count);
|
|
5713
|
+
}
|
|
5714
|
+
);
|
|
5715
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_offer"] = jsi::Function::createFromHostFunction(
|
|
5716
|
+
rt,
|
|
5717
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_offer"),
|
|
5718
|
+
0,
|
|
5719
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5720
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_offer(rt, thisVal, args, count);
|
|
5721
|
+
}
|
|
5722
|
+
);
|
|
5723
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_peak_address"] = jsi::Function::createFromHostFunction(
|
|
5724
|
+
rt,
|
|
5725
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_peak_address"),
|
|
5726
|
+
0,
|
|
5727
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5728
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_peak_address(rt, thisVal, args, count);
|
|
5729
|
+
}
|
|
5730
|
+
);
|
|
5731
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_peek_address"] = jsi::Function::createFromHostFunction(
|
|
5732
|
+
rt,
|
|
5733
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_peek_address"),
|
|
5734
|
+
0,
|
|
5735
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5736
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_peek_address(rt, thisVal, args, count);
|
|
5737
|
+
}
|
|
5738
|
+
);
|
|
5739
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5740
|
+
rt,
|
|
5741
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos"),
|
|
5742
|
+
0,
|
|
5743
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5744
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(rt, thisVal, args, count);
|
|
5745
|
+
}
|
|
5746
|
+
);
|
|
5747
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_boards"] = jsi::Function::createFromHostFunction(
|
|
5748
|
+
rt,
|
|
5749
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_boards"),
|
|
5750
|
+
0,
|
|
5751
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5752
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_boards(rt, thisVal, args, count);
|
|
5753
|
+
}
|
|
5754
|
+
);
|
|
5755
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats"] = jsi::Function::createFromHostFunction(
|
|
5756
|
+
rt,
|
|
5757
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats"),
|
|
5758
|
+
0,
|
|
5759
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5760
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats(rt, thisVal, args, count);
|
|
5761
|
+
}
|
|
5762
|
+
);
|
|
5763
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives"] = jsi::Function::createFromHostFunction(
|
|
5764
|
+
rt,
|
|
5765
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives"),
|
|
5766
|
+
0,
|
|
5767
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5768
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives(rt, thisVal, args, count);
|
|
5769
|
+
}
|
|
5770
|
+
);
|
|
5771
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5772
|
+
rt,
|
|
5773
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos"),
|
|
5774
|
+
0,
|
|
5775
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5776
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(rt, thisVal, args, count);
|
|
5777
|
+
}
|
|
5778
|
+
);
|
|
5779
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends"] = jsi::Function::createFromHostFunction(
|
|
5780
|
+
rt,
|
|
5781
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends"),
|
|
5782
|
+
0,
|
|
5783
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5784
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends(rt, thisVal, args, count);
|
|
5785
|
+
}
|
|
5786
|
+
);
|
|
5787
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5788
|
+
rt,
|
|
5789
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos"),
|
|
5790
|
+
0,
|
|
5791
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5792
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(rt, thisVal, args, count);
|
|
5793
|
+
}
|
|
5794
|
+
);
|
|
5795
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_states"] = jsi::Function::createFromHostFunction(
|
|
5796
|
+
rt,
|
|
5797
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_states"),
|
|
5798
|
+
0,
|
|
5799
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5800
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_states(rt, thisVal, args, count);
|
|
5801
|
+
}
|
|
5802
|
+
);
|
|
5803
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_progress_exits"] = jsi::Function::createFromHostFunction(
|
|
5804
|
+
rt,
|
|
5805
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_progress_exits"),
|
|
5806
|
+
0,
|
|
5807
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5808
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_progress_exits(rt, thisVal, args, count);
|
|
5809
|
+
}
|
|
5810
|
+
);
|
|
5811
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_progress_pending_rounds"] = jsi::Function::createFromHostFunction(
|
|
5812
|
+
rt,
|
|
5813
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_progress_pending_rounds"),
|
|
5814
|
+
0,
|
|
5815
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5816
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_progress_pending_rounds(rt, thisVal, args, count);
|
|
5817
|
+
}
|
|
5818
|
+
);
|
|
5819
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_properties"] = jsi::Function::createFromHostFunction(
|
|
5820
|
+
rt,
|
|
5821
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_properties"),
|
|
5822
|
+
0,
|
|
5823
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5824
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_properties(rt, thisVal, args, count);
|
|
5825
|
+
}
|
|
5826
|
+
);
|
|
5827
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_server"] = jsi::Function::createFromHostFunction(
|
|
5828
|
+
rt,
|
|
5829
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_server"),
|
|
5830
|
+
0,
|
|
5831
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5832
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_server(rt, thisVal, args, count);
|
|
5833
|
+
}
|
|
5834
|
+
);
|
|
5835
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5836
|
+
rt,
|
|
5837
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos"),
|
|
5838
|
+
0,
|
|
5839
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5840
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos(rt, thisVal, args, count);
|
|
5841
|
+
}
|
|
5842
|
+
);
|
|
5843
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated"] = jsi::Function::createFromHostFunction(
|
|
5844
|
+
rt,
|
|
5845
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated"),
|
|
5846
|
+
0,
|
|
5847
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5848
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(rt, thisVal, args, count);
|
|
5849
|
+
}
|
|
5850
|
+
);
|
|
5851
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment"] = jsi::Function::createFromHostFunction(
|
|
5852
|
+
rt,
|
|
5853
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment"),
|
|
5854
|
+
0,
|
|
5855
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5856
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment(rt, thisVal, args, count);
|
|
5857
|
+
}
|
|
5858
|
+
);
|
|
5859
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_send_onchain"] = jsi::Function::createFromHostFunction(
|
|
5860
|
+
rt,
|
|
5861
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_send_onchain"),
|
|
5862
|
+
0,
|
|
5863
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5864
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_send_onchain(rt, thisVal, args, count);
|
|
5865
|
+
}
|
|
5866
|
+
);
|
|
5867
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs"] = jsi::Function::createFromHostFunction(
|
|
5868
|
+
rt,
|
|
5869
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs"),
|
|
5870
|
+
0,
|
|
5871
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5872
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs(rt, thisVal, args, count);
|
|
5873
|
+
}
|
|
5874
|
+
);
|
|
5875
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_spendable_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5876
|
+
rt,
|
|
5877
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_spendable_vtxos"),
|
|
5878
|
+
0,
|
|
5879
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5880
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_spendable_vtxos(rt, thisVal, args, count);
|
|
5881
|
+
}
|
|
5882
|
+
);
|
|
5883
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_entire_wallet"] = jsi::Function::createFromHostFunction(
|
|
5884
|
+
rt,
|
|
5885
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_entire_wallet"),
|
|
5886
|
+
0,
|
|
5887
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5888
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_entire_wallet(rt, thisVal, args, count);
|
|
5889
|
+
}
|
|
5890
|
+
);
|
|
5891
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5892
|
+
rt,
|
|
5893
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_vtxos"),
|
|
5894
|
+
0,
|
|
5895
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5896
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_vtxos(rt, thisVal, args, count);
|
|
5897
|
+
}
|
|
5898
|
+
);
|
|
5899
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sync"] = jsi::Function::createFromHostFunction(
|
|
5900
|
+
rt,
|
|
5901
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_sync"),
|
|
5902
|
+
0,
|
|
5903
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5904
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_sync(rt, thisVal, args, count);
|
|
5905
|
+
}
|
|
5906
|
+
);
|
|
5907
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sync_exits"] = jsi::Function::createFromHostFunction(
|
|
5908
|
+
rt,
|
|
5909
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_sync_exits"),
|
|
5910
|
+
0,
|
|
5911
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5912
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_sync_exits(rt, thisVal, args, count);
|
|
5913
|
+
}
|
|
5914
|
+
);
|
|
5915
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sync_pending_boards"] = jsi::Function::createFromHostFunction(
|
|
5916
|
+
rt,
|
|
5917
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_sync_pending_boards"),
|
|
5918
|
+
0,
|
|
5919
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5920
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_sync_pending_boards(rt, thisVal, args, count);
|
|
5641
5921
|
}
|
|
5642
5922
|
);
|
|
5923
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_try_claim_all_lightning_receives"] = jsi::Function::createFromHostFunction(
|
|
5924
|
+
rt,
|
|
5925
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_try_claim_all_lightning_receives"),
|
|
5926
|
+
0,
|
|
5927
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5928
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_try_claim_all_lightning_receives(rt, thisVal, args, count);
|
|
5929
|
+
}
|
|
5930
|
+
);
|
|
5931
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_try_claim_lightning_receive"] = jsi::Function::createFromHostFunction(
|
|
5932
|
+
rt,
|
|
5933
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_try_claim_lightning_receive"),
|
|
5934
|
+
0,
|
|
5935
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5936
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_try_claim_lightning_receive(rt, thisVal, args, count);
|
|
5937
|
+
}
|
|
5938
|
+
);
|
|
5939
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_validate_arkoor_address"] = jsi::Function::createFromHostFunction(
|
|
5940
|
+
rt,
|
|
5941
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_validate_arkoor_address"),
|
|
5942
|
+
0,
|
|
5943
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5944
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_validate_arkoor_address(rt, thisVal, args, count);
|
|
5945
|
+
}
|
|
5946
|
+
);
|
|
5947
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5948
|
+
rt,
|
|
5949
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_vtxos"),
|
|
5950
|
+
0,
|
|
5951
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5952
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_vtxos(rt, thisVal, args, count);
|
|
5953
|
+
}
|
|
5954
|
+
);
|
|
5955
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_onchainwallet_custom"] = jsi::Function::createFromHostFunction(
|
|
5956
|
+
rt,
|
|
5957
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_onchainwallet_custom"),
|
|
5958
|
+
0,
|
|
5959
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5960
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_onchainwallet_custom(rt, thisVal, args, count);
|
|
5961
|
+
}
|
|
5962
|
+
);
|
|
5963
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_onchainwallet_default"] = jsi::Function::createFromHostFunction(
|
|
5964
|
+
rt,
|
|
5965
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_onchainwallet_default"),
|
|
5966
|
+
0,
|
|
5967
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5968
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_onchainwallet_default(rt, thisVal, args, count);
|
|
5969
|
+
}
|
|
5970
|
+
);
|
|
5971
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_wallet_create"] = jsi::Function::createFromHostFunction(
|
|
5972
|
+
rt,
|
|
5973
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_wallet_create"),
|
|
5974
|
+
0,
|
|
5975
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5976
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_wallet_create(rt, thisVal, args, count);
|
|
5977
|
+
}
|
|
5978
|
+
);
|
|
5979
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_wallet_create_with_onchain"] = jsi::Function::createFromHostFunction(
|
|
5980
|
+
rt,
|
|
5981
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_wallet_create_with_onchain"),
|
|
5982
|
+
0,
|
|
5983
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5984
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_wallet_create_with_onchain(rt, thisVal, args, count);
|
|
5985
|
+
}
|
|
5986
|
+
);
|
|
5987
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_wallet_open"] = jsi::Function::createFromHostFunction(
|
|
5988
|
+
rt,
|
|
5989
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_wallet_open"),
|
|
5990
|
+
0,
|
|
5991
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5992
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_wallet_open(rt, thisVal, args, count);
|
|
5993
|
+
}
|
|
5994
|
+
);
|
|
5995
|
+
props["ubrn_uniffi_bark_ffi_checksum_constructor_wallet_open_with_onchain"] = jsi::Function::createFromHostFunction(
|
|
5996
|
+
rt,
|
|
5997
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_constructor_wallet_open_with_onchain"),
|
|
5998
|
+
0,
|
|
5999
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6000
|
+
return this->cpp_uniffi_bark_ffi_checksum_constructor_wallet_open_with_onchain(rt, thisVal, args, count);
|
|
6001
|
+
}
|
|
6002
|
+
);
|
|
6003
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_balance"] = jsi::Function::createFromHostFunction(
|
|
6004
|
+
rt,
|
|
6005
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_balance"),
|
|
6006
|
+
0,
|
|
6007
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6008
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_balance(rt, thisVal, args, count);
|
|
6009
|
+
}
|
|
6010
|
+
);
|
|
6011
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_tx"] = jsi::Function::createFromHostFunction(
|
|
6012
|
+
rt,
|
|
6013
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_tx"),
|
|
6014
|
+
0,
|
|
6015
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6016
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_tx(rt, thisVal, args, count);
|
|
6017
|
+
}
|
|
6018
|
+
);
|
|
6019
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_drain_tx"] = jsi::Function::createFromHostFunction(
|
|
6020
|
+
rt,
|
|
6021
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_drain_tx"),
|
|
6022
|
+
0,
|
|
6023
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6024
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_drain_tx(rt, thisVal, args, count);
|
|
6025
|
+
}
|
|
6026
|
+
);
|
|
6027
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_finish_tx"] = jsi::Function::createFromHostFunction(
|
|
6028
|
+
rt,
|
|
6029
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_finish_tx"),
|
|
6030
|
+
0,
|
|
6031
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6032
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_finish_tx(rt, thisVal, args, count);
|
|
6033
|
+
}
|
|
6034
|
+
);
|
|
6035
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx"] = jsi::Function::createFromHostFunction(
|
|
6036
|
+
rt,
|
|
6037
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx"),
|
|
6038
|
+
0,
|
|
6039
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6040
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx(rt, thisVal, args, count);
|
|
6041
|
+
}
|
|
6042
|
+
);
|
|
6043
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx_confirmed_block"] = jsi::Function::createFromHostFunction(
|
|
6044
|
+
rt,
|
|
6045
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx_confirmed_block"),
|
|
6046
|
+
0,
|
|
6047
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6048
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx_confirmed_block(rt, thisVal, args, count);
|
|
6049
|
+
}
|
|
6050
|
+
);
|
|
6051
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_spending_tx"] = jsi::Function::createFromHostFunction(
|
|
6052
|
+
rt,
|
|
6053
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_spending_tx"),
|
|
6054
|
+
0,
|
|
6055
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6056
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_spending_tx(rt, thisVal, args, count);
|
|
6057
|
+
}
|
|
6058
|
+
);
|
|
6059
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_make_signed_p2a_cpfp"] = jsi::Function::createFromHostFunction(
|
|
6060
|
+
rt,
|
|
6061
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_make_signed_p2a_cpfp"),
|
|
6062
|
+
0,
|
|
6063
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6064
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_make_signed_p2a_cpfp(rt, thisVal, args, count);
|
|
6065
|
+
}
|
|
6066
|
+
);
|
|
6067
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_store_signed_p2a_cpfp"] = jsi::Function::createFromHostFunction(
|
|
6068
|
+
rt,
|
|
6069
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_store_signed_p2a_cpfp"),
|
|
6070
|
+
0,
|
|
6071
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6072
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_store_signed_p2a_cpfp(rt, thisVal, args, count);
|
|
6073
|
+
}
|
|
6074
|
+
);
|
|
6075
|
+
props["ubrn_ffi_bark_ffi_uniffi_contract_version"] = jsi::Function::createFromHostFunction(
|
|
6076
|
+
rt,
|
|
6077
|
+
jsi::PropNameID::forAscii(rt, "ubrn_ffi_bark_ffi_uniffi_contract_version"),
|
|
6078
|
+
0,
|
|
6079
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6080
|
+
return this->cpp_ffi_bark_ffi_uniffi_contract_version(rt, thisVal, args, count);
|
|
6081
|
+
}
|
|
6082
|
+
);
|
|
6083
|
+
props["ubrn_uniffi_internal_fn_method_notificationholder_ffi__bless_pointer"] = jsi::Function::createFromHostFunction(
|
|
6084
|
+
rt,
|
|
6085
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_internal_fn_method_notificationholder_ffi__bless_pointer"),
|
|
6086
|
+
1,
|
|
6087
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6088
|
+
return this->cpp_uniffi_internal_fn_method_notificationholder_ffi__bless_pointer(rt, thisVal, args, count);
|
|
6089
|
+
}
|
|
6090
|
+
);
|
|
6091
|
+
props["ubrn_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer"] = jsi::Function::createFromHostFunction(
|
|
6092
|
+
rt,
|
|
6093
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer"),
|
|
6094
|
+
1,
|
|
6095
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6096
|
+
return this->cpp_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer(rt, thisVal, args, count);
|
|
6097
|
+
}
|
|
6098
|
+
);
|
|
6099
|
+
props["ubrn_uniffi_internal_fn_method_wallet_ffi__bless_pointer"] = jsi::Function::createFromHostFunction(
|
|
6100
|
+
rt,
|
|
6101
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_internal_fn_method_wallet_ffi__bless_pointer"),
|
|
6102
|
+
1,
|
|
6103
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6104
|
+
return this->cpp_uniffi_internal_fn_method_wallet_ffi__bless_pointer(rt, thisVal, args, count);
|
|
6105
|
+
}
|
|
6106
|
+
);
|
|
6107
|
+
}
|
|
6108
|
+
|
|
6109
|
+
void NativeBark::registerModule(jsi::Runtime &rt, std::shared_ptr<react::CallInvoker> callInvoker) {
|
|
6110
|
+
auto invoker = std::make_shared<uniffi_runtime::UniffiCallInvoker>(callInvoker);
|
|
6111
|
+
auto tm = std::make_shared<NativeBark>(rt, invoker);
|
|
6112
|
+
auto obj = rt.global().createFromHostObject(rt, tm);
|
|
6113
|
+
rt.global().setProperty(rt, "NativeBark", obj);
|
|
6114
|
+
}
|
|
6115
|
+
|
|
6116
|
+
void NativeBark::unregisterModule(jsi::Runtime &rt) {
|
|
6117
|
+
uniffi::bark::registry::clearRegistry();
|
|
6118
|
+
}
|
|
6119
|
+
|
|
6120
|
+
jsi::Value NativeBark::get(jsi::Runtime& rt, const jsi::PropNameID& name) {
|
|
6121
|
+
try {
|
|
6122
|
+
return jsi::Value(rt, props.at(name.utf8(rt)));
|
|
6123
|
+
}
|
|
6124
|
+
catch (std::out_of_range &e) {
|
|
6125
|
+
return jsi::Value::undefined();
|
|
6126
|
+
}
|
|
6127
|
+
}
|
|
6128
|
+
|
|
6129
|
+
std::vector<jsi::PropNameID> NativeBark::getPropertyNames(jsi::Runtime& rt) {
|
|
6130
|
+
std::vector<jsi::PropNameID> rval;
|
|
6131
|
+
for (auto& [key, value] : props) {
|
|
6132
|
+
rval.push_back(jsi::PropNameID::forUtf8(rt, key));
|
|
6133
|
+
}
|
|
6134
|
+
return rval;
|
|
6135
|
+
}
|
|
6136
|
+
|
|
6137
|
+
void NativeBark::set(jsi::Runtime& rt, const jsi::PropNameID& name, const jsi::Value& value) {
|
|
6138
|
+
props.insert_or_assign(name.utf8(rt), &value);
|
|
6139
|
+
}
|
|
6140
|
+
|
|
6141
|
+
NativeBark::~NativeBark() {
|
|
6142
|
+
// Cleanup for callback function RustFutureContinuationCallback
|
|
6143
|
+
uniffi::bark::cb::rustfuturecontinuationcallback::cleanup();
|
|
6144
|
+
// Cleanup for callback function ForeignFutureDroppedCallback
|
|
6145
|
+
uniffi::bark::cb::foreignfuturedroppedcallback::cleanup();
|
|
6146
|
+
// Cleanup for "free" callback function CallbackInterfaceFree
|
|
6147
|
+
uniffi::bark::st::vtablecallbackinterfacecustomonchainwalletcallbacks::vtablecallbackinterfacecustomonchainwalletcallbacks::free::cleanup();
|
|
6148
|
+
uniffi::bark::cb::callbackinterfaceclone::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6149
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod0::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6150
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod1::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6151
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod2::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6152
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod3::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6153
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod4::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6154
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod5::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6155
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod6::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6156
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod7::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6157
|
+
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod8::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6160
|
+
// Utility functions for serialization/deserialization of strings.
|
|
6161
|
+
jsi::Value NativeBark::cpp_uniffi_internal_fn_func_ffi__string_to_byte_length(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6162
|
+
return uniffi_jsi::Bridging<std::string>::string_to_bytelength(rt, args[0]);
|
|
6163
|
+
}
|
|
6164
|
+
|
|
6165
|
+
jsi::Value NativeBark::cpp_uniffi_internal_fn_func_ffi__string_to_arraybuffer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6166
|
+
return uniffi_jsi::Bridging<std::string>::string_to_arraybuffer(rt, args[0]);
|
|
6167
|
+
}
|
|
6168
|
+
|
|
6169
|
+
jsi::Value NativeBark::cpp_uniffi_internal_fn_func_ffi__arraybuffer_to_string(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6170
|
+
return uniffi_jsi::Bridging<std::string>::arraybuffer_to_string(rt, args[0]);
|
|
6171
|
+
}jsi::Value NativeBark::cpp_uniffi_internal_fn_method_notificationholder_ffi__bless_pointer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6172
|
+
auto pointer = uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]);
|
|
6173
|
+
auto static destructor = [](uint64_t p) {
|
|
6174
|
+
RustCallStatus status = {0};
|
|
6175
|
+
uniffi_bark_ffi_fn_free_notificationholder(p, &status);
|
|
6176
|
+
};
|
|
6177
|
+
auto ptrObj = std::make_shared<uniffi_jsi::DestructibleObject>(pointer, destructor);
|
|
6178
|
+
auto obj = jsi::Object::createFromHostObject(rt, ptrObj);
|
|
6179
|
+
return jsi::Value(rt, obj);
|
|
6180
|
+
}jsi::Value NativeBark::cpp_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6181
|
+
auto pointer = uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]);
|
|
6182
|
+
auto static destructor = [](uint64_t p) {
|
|
6183
|
+
RustCallStatus status = {0};
|
|
6184
|
+
uniffi_bark_ffi_fn_free_onchainwallet(p, &status);
|
|
6185
|
+
};
|
|
6186
|
+
auto ptrObj = std::make_shared<uniffi_jsi::DestructibleObject>(pointer, destructor);
|
|
6187
|
+
auto obj = jsi::Object::createFromHostObject(rt, ptrObj);
|
|
6188
|
+
return jsi::Value(rt, obj);
|
|
6189
|
+
}jsi::Value NativeBark::cpp_uniffi_internal_fn_method_wallet_ffi__bless_pointer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6190
|
+
auto pointer = uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]);
|
|
6191
|
+
auto static destructor = [](uint64_t p) {
|
|
6192
|
+
RustCallStatus status = {0};
|
|
6193
|
+
uniffi_bark_ffi_fn_free_wallet(p, &status);
|
|
6194
|
+
};
|
|
6195
|
+
auto ptrObj = std::make_shared<uniffi_jsi::DestructibleObject>(pointer, destructor);
|
|
6196
|
+
auto obj = jsi::Object::createFromHostObject(rt, ptrObj);
|
|
6197
|
+
return jsi::Value(rt, obj);
|
|
6198
|
+
}
|
|
6199
|
+
|
|
6200
|
+
// Methods calling directly into the uniffi generated C API of the Rust crate.
|
|
6201
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_clone_notificationholder(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6202
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6203
|
+
auto value = uniffi_bark_ffi_fn_clone_notificationholder(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6204
|
+
&status
|
|
6205
|
+
);
|
|
6206
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6207
|
+
|
|
6208
|
+
|
|
6209
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6210
|
+
}
|
|
6211
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_free_notificationholder(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6212
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6213
|
+
uniffi_bark_ffi_fn_free_notificationholder(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6214
|
+
&status
|
|
6215
|
+
);
|
|
6216
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6217
|
+
|
|
6218
|
+
|
|
6219
|
+
return jsi::Value::undefined();
|
|
6220
|
+
}
|
|
6221
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6222
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6223
|
+
uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6224
|
+
&status
|
|
6225
|
+
);
|
|
6226
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6227
|
+
|
|
6228
|
+
|
|
6229
|
+
return jsi::Value::undefined();
|
|
6230
|
+
}
|
|
6231
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_notificationholder_next_notification(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6232
|
+
auto value = uniffi_bark_ffi_fn_method_notificationholder_next_notification(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6233
|
+
);
|
|
6234
|
+
|
|
6235
|
+
|
|
6236
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6237
|
+
}
|
|
6238
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_clone_onchainwallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6239
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6240
|
+
auto value = uniffi_bark_ffi_fn_clone_onchainwallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6241
|
+
&status
|
|
6242
|
+
);
|
|
6243
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6244
|
+
|
|
6245
|
+
|
|
6246
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6247
|
+
}
|
|
6248
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_free_onchainwallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6249
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6250
|
+
uniffi_bark_ffi_fn_free_onchainwallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6251
|
+
&status
|
|
6252
|
+
);
|
|
6253
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6254
|
+
|
|
6255
|
+
|
|
6256
|
+
return jsi::Value::undefined();
|
|
6257
|
+
}
|
|
6258
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_onchainwallet_custom(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6259
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6260
|
+
auto value = uniffi_bark_ffi_fn_constructor_onchainwallet_custom(uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6261
|
+
&status
|
|
6262
|
+
);
|
|
6263
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6264
|
+
|
|
6265
|
+
|
|
6266
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6267
|
+
}
|
|
6268
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_onchainwallet_default(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6269
|
+
auto value = uniffi_bark_ffi_fn_constructor_onchainwallet_default(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6270
|
+
);
|
|
6271
|
+
|
|
6272
|
+
|
|
6273
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6274
|
+
}
|
|
6275
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6276
|
+
auto value = uniffi_bark_ffi_fn_method_onchainwallet_balance(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6277
|
+
);
|
|
6278
|
+
|
|
6279
|
+
|
|
6280
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6281
|
+
}
|
|
6282
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_new_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6283
|
+
auto value = uniffi_bark_ffi_fn_method_onchainwallet_new_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6284
|
+
);
|
|
6285
|
+
|
|
6286
|
+
|
|
6287
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6288
|
+
}
|
|
6289
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_send(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6290
|
+
auto value = uniffi_bark_ffi_fn_method_onchainwallet_send(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[3])
|
|
6291
|
+
);
|
|
6292
|
+
|
|
6293
|
+
|
|
6294
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6295
|
+
}
|
|
6296
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6297
|
+
auto value = uniffi_bark_ffi_fn_method_onchainwallet_sync(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6298
|
+
);
|
|
6299
|
+
|
|
6300
|
+
|
|
6301
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6302
|
+
}
|
|
6303
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_clone_wallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6304
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6305
|
+
auto value = uniffi_bark_ffi_fn_clone_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6306
|
+
&status
|
|
6307
|
+
);
|
|
6308
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6309
|
+
|
|
6310
|
+
|
|
6311
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6312
|
+
}
|
|
6313
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_free_wallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6314
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6315
|
+
uniffi_bark_ffi_fn_free_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6316
|
+
&status
|
|
6317
|
+
);
|
|
6318
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6319
|
+
|
|
6320
|
+
|
|
6321
|
+
return jsi::Value::undefined();
|
|
6322
|
+
}
|
|
6323
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_wallet_create(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6324
|
+
auto value = uniffi_bark_ffi_fn_constructor_wallet_create(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3])
|
|
6325
|
+
);
|
|
6326
|
+
|
|
6327
|
+
|
|
6328
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6329
|
+
}
|
|
6330
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_wallet_create_with_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6331
|
+
auto value = uniffi_bark_ffi_fn_constructor_wallet_create_with_onchain(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[3]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[4])
|
|
6332
|
+
);
|
|
6333
|
+
|
|
6334
|
+
|
|
6335
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6336
|
+
}
|
|
6337
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_wallet_open(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6338
|
+
auto value = uniffi_bark_ffi_fn_constructor_wallet_open(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6339
|
+
);
|
|
6340
|
+
|
|
6341
|
+
|
|
6342
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6343
|
+
}
|
|
6344
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6345
|
+
auto value = uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[3])
|
|
6346
|
+
);
|
|
6347
|
+
|
|
6348
|
+
|
|
6349
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6350
|
+
}
|
|
6351
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6352
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6353
|
+
);
|
|
6354
|
+
|
|
6355
|
+
|
|
6356
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6357
|
+
}
|
|
6358
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_all_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6359
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_all_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6360
|
+
);
|
|
6361
|
+
|
|
6362
|
+
|
|
6363
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6364
|
+
}
|
|
6365
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6366
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_ark_info(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6367
|
+
);
|
|
6368
|
+
|
|
6369
|
+
|
|
6370
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6371
|
+
}
|
|
6372
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6373
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_balance(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6374
|
+
);
|
|
6375
|
+
|
|
6376
|
+
|
|
6377
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6378
|
+
}
|
|
6379
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_board_all(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6380
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_board_all(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6381
|
+
);
|
|
6382
|
+
|
|
6383
|
+
|
|
6384
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6385
|
+
}
|
|
6386
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_board_amount(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6387
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_board_amount(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6388
|
+
);
|
|
6389
|
+
|
|
6390
|
+
|
|
6391
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6392
|
+
}
|
|
6393
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_bolt11_invoice(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6394
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_bolt11_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6395
|
+
);
|
|
6396
|
+
|
|
6397
|
+
|
|
6398
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6399
|
+
}
|
|
6400
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_broadcast_tx(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6401
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_broadcast_tx(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6402
|
+
);
|
|
6403
|
+
|
|
6404
|
+
|
|
6405
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6406
|
+
}
|
|
6407
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_cancel_all_pending_rounds(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6408
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_cancel_all_pending_rounds(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6409
|
+
);
|
|
6410
|
+
|
|
6411
|
+
|
|
6412
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6413
|
+
}
|
|
6414
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_cancel_pending_round(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6415
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_cancel_pending_round(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1])
|
|
6416
|
+
);
|
|
6417
|
+
|
|
6418
|
+
|
|
6419
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6420
|
+
}
|
|
6421
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_check_lightning_payment(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6422
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_check_lightning_payment(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[2])
|
|
6423
|
+
);
|
|
6424
|
+
|
|
6425
|
+
|
|
6426
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6427
|
+
}
|
|
6428
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6429
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6430
|
+
);
|
|
6431
|
+
|
|
6432
|
+
|
|
6433
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6434
|
+
}
|
|
6435
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_config(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6436
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_config(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6437
|
+
);
|
|
6438
|
+
|
|
6439
|
+
|
|
6440
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6441
|
+
}
|
|
6442
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_drain_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6443
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_drain_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[3])
|
|
6444
|
+
);
|
|
6445
|
+
|
|
6446
|
+
|
|
6447
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6448
|
+
}
|
|
6449
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6450
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6451
|
+
);
|
|
6452
|
+
|
|
6453
|
+
|
|
6454
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6455
|
+
}
|
|
6456
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6457
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6458
|
+
);
|
|
6459
|
+
|
|
6460
|
+
|
|
6461
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6462
|
+
}
|
|
6463
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6464
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6465
|
+
);
|
|
6466
|
+
|
|
6467
|
+
|
|
6468
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5643
6469
|
}
|
|
6470
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6471
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_offboard_all_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6472
|
+
);
|
|
5644
6473
|
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
auto tm = std::make_shared<NativeBark>(rt, invoker);
|
|
5648
|
-
auto obj = rt.global().createFromHostObject(rt, tm);
|
|
5649
|
-
rt.global().setProperty(rt, "NativeBark", obj);
|
|
6474
|
+
|
|
6475
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5650
6476
|
}
|
|
6477
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6478
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6479
|
+
);
|
|
5651
6480
|
|
|
5652
|
-
|
|
5653
|
-
|
|
6481
|
+
|
|
6482
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5654
6483
|
}
|
|
6484
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6485
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6486
|
+
);
|
|
5655
6487
|
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
return jsi::Value(rt, props.at(name.utf8(rt)));
|
|
5659
|
-
}
|
|
5660
|
-
catch (std::out_of_range &e) {
|
|
5661
|
-
return jsi::Value::undefined();
|
|
5662
|
-
}
|
|
6488
|
+
|
|
6489
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5663
6490
|
}
|
|
6491
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6492
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6493
|
+
);
|
|
5664
6494
|
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
for (auto& [key, value] : props) {
|
|
5668
|
-
rval.push_back(jsi::PropNameID::forUtf8(rt, key));
|
|
5669
|
-
}
|
|
5670
|
-
return rval;
|
|
6495
|
+
|
|
6496
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5671
6497
|
}
|
|
6498
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_fingerprint(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6499
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6500
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_fingerprint(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6501
|
+
&status
|
|
6502
|
+
);
|
|
6503
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5672
6504
|
|
|
5673
|
-
|
|
5674
|
-
|
|
6505
|
+
|
|
6506
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5675
6507
|
}
|
|
6508
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_exit_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6509
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_exit_status(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3])
|
|
6510
|
+
);
|
|
5676
6511
|
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
uniffi::bark::cb::rustfuturecontinuationcallback::cleanup();
|
|
5680
|
-
// Cleanup for callback function ForeignFutureDroppedCallback
|
|
5681
|
-
uniffi::bark::cb::foreignfuturedroppedcallback::cleanup();
|
|
5682
|
-
// Cleanup for "free" callback function CallbackInterfaceFree
|
|
5683
|
-
uniffi::bark::st::vtablecallbackinterfacecustomonchainwalletcallbacks::vtablecallbackinterfacecustomonchainwalletcallbacks::free::cleanup();
|
|
5684
|
-
uniffi::bark::cb::callbackinterfaceclone::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5685
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod0::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5686
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod1::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5687
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod2::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5688
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod3::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5689
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod4::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5690
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod5::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5691
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod6::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5692
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod7::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
5693
|
-
uniffi::bark::cb::callbackinterfacecustomonchainwalletcallbacksmethod8::vtablecallbackinterfacecustomonchainwalletcallbacks::cleanup();
|
|
6512
|
+
|
|
6513
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5694
6514
|
}
|
|
6515
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_exit_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6516
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_exit_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6517
|
+
);
|
|
5695
6518
|
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
return uniffi_jsi::Bridging<std::string>::string_to_bytelength(rt, args[0]);
|
|
6519
|
+
|
|
6520
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5699
6521
|
}
|
|
6522
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_expiring_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6523
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_expiring_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1])
|
|
6524
|
+
);
|
|
5700
6525
|
|
|
5701
|
-
|
|
5702
|
-
|
|
6526
|
+
|
|
6527
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5703
6528
|
}
|
|
6529
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_first_expiring_vtxo_blockheight(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6530
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_first_expiring_vtxo_blockheight(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6531
|
+
);
|
|
5704
6532
|
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
}jsi::Value NativeBark::cpp_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
5708
|
-
auto pointer = uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]);
|
|
5709
|
-
auto static destructor = [](uint64_t p) {
|
|
5710
|
-
RustCallStatus status = {0};
|
|
5711
|
-
uniffi_bark_ffi_fn_free_onchainwallet(p, &status);
|
|
5712
|
-
};
|
|
5713
|
-
auto ptrObj = std::make_shared<uniffi_jsi::DestructibleObject>(pointer, destructor);
|
|
5714
|
-
auto obj = jsi::Object::createFromHostObject(rt, ptrObj);
|
|
5715
|
-
return jsi::Value(rt, obj);
|
|
5716
|
-
}jsi::Value NativeBark::cpp_uniffi_internal_fn_method_wallet_ffi__bless_pointer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
5717
|
-
auto pointer = uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]);
|
|
5718
|
-
auto static destructor = [](uint64_t p) {
|
|
5719
|
-
RustCallStatus status = {0};
|
|
5720
|
-
uniffi_bark_ffi_fn_free_wallet(p, &status);
|
|
5721
|
-
};
|
|
5722
|
-
auto ptrObj = std::make_shared<uniffi_jsi::DestructibleObject>(pointer, destructor);
|
|
5723
|
-
auto obj = jsi::Object::createFromHostObject(rt, ptrObj);
|
|
5724
|
-
return jsi::Value(rt, obj);
|
|
6533
|
+
|
|
6534
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5725
6535
|
}
|
|
6536
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_next_required_refresh_blockheight(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6537
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_next_required_refresh_blockheight(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6538
|
+
);
|
|
5726
6539
|
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
6540
|
+
|
|
6541
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6542
|
+
}
|
|
6543
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_vtxo_by_id(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6544
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_vtxo_by_id(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
5732
6545
|
);
|
|
5733
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5734
6546
|
|
|
5735
6547
|
|
|
5736
6548
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5737
6549
|
}
|
|
5738
|
-
jsi::Value NativeBark::
|
|
5739
|
-
|
|
5740
|
-
uniffi_bark_ffi_fn_free_onchainwallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5741
|
-
&status
|
|
6550
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_get_vtxos_to_refresh(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6551
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_get_vtxos_to_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5742
6552
|
);
|
|
5743
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5744
6553
|
|
|
5745
6554
|
|
|
5746
|
-
return
|
|
6555
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5747
6556
|
}
|
|
5748
|
-
jsi::Value NativeBark::
|
|
5749
|
-
|
|
5750
|
-
auto value = uniffi_bark_ffi_fn_constructor_onchainwallet_custom(uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5751
|
-
&status
|
|
6557
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_has_pending_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6558
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_has_pending_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5752
6559
|
);
|
|
5753
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5754
6560
|
|
|
5755
6561
|
|
|
5756
6562
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5757
6563
|
}
|
|
5758
|
-
jsi::Value NativeBark::
|
|
5759
|
-
|
|
5760
|
-
auto value = uniffi_bark_ffi_fn_constructor_onchainwallet_default(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
5761
|
-
&status
|
|
6564
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_history(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6565
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_history(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5762
6566
|
);
|
|
5763
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5764
6567
|
|
|
5765
6568
|
|
|
5766
6569
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5767
6570
|
}
|
|
5768
|
-
jsi::Value NativeBark::
|
|
5769
|
-
|
|
5770
|
-
auto value = uniffi_bark_ffi_fn_method_onchainwallet_balance(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5771
|
-
&status
|
|
6571
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6572
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
5772
6573
|
);
|
|
5773
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5774
6574
|
|
|
5775
6575
|
|
|
5776
|
-
return
|
|
6576
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5777
6577
|
}
|
|
5778
|
-
jsi::Value NativeBark::
|
|
6578
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_import_vtxo(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6579
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_import_vtxo(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6580
|
+
);
|
|
6581
|
+
|
|
6582
|
+
|
|
6583
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6584
|
+
}
|
|
6585
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6586
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6587
|
+
);
|
|
6588
|
+
|
|
6589
|
+
|
|
6590
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6591
|
+
}
|
|
6592
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6593
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6594
|
+
);
|
|
6595
|
+
|
|
6596
|
+
|
|
6597
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6598
|
+
}
|
|
6599
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_authorization(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
5779
6600
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5780
|
-
auto value =
|
|
6601
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_mailbox_authorization(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5781
6602
|
&status
|
|
5782
6603
|
);
|
|
5783
6604
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
@@ -5785,9 +6606,9 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_new_address(j
|
|
|
5785
6606
|
|
|
5786
6607
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5787
6608
|
}
|
|
5788
|
-
jsi::Value NativeBark::
|
|
6609
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
5789
6610
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5790
|
-
auto value =
|
|
6611
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5791
6612
|
&status
|
|
5792
6613
|
);
|
|
5793
6614
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
@@ -5795,399 +6616,344 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_onchainwallet_send(jsi::Run
|
|
|
5795
6616
|
|
|
5796
6617
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5797
6618
|
}
|
|
5798
|
-
jsi::Value NativeBark::
|
|
5799
|
-
|
|
5800
|
-
auto value = uniffi_bark_ffi_fn_method_onchainwallet_sync(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5801
|
-
&status
|
|
6619
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6620
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5802
6621
|
);
|
|
5803
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5804
6622
|
|
|
5805
6623
|
|
|
5806
|
-
return uniffi_jsi::Bridging
|
|
6624
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5807
6625
|
}
|
|
5808
|
-
jsi::Value NativeBark::
|
|
5809
|
-
|
|
5810
|
-
auto value = uniffi_bark_ffi_fn_clone_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5811
|
-
&status
|
|
6626
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6627
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5812
6628
|
);
|
|
5813
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5814
6629
|
|
|
5815
6630
|
|
|
5816
6631
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5817
6632
|
}
|
|
5818
|
-
jsi::Value NativeBark::
|
|
5819
|
-
|
|
5820
|
-
uniffi_bark_ffi_fn_free_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5821
|
-
&status
|
|
6633
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6634
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5822
6635
|
);
|
|
5823
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5824
6636
|
|
|
5825
6637
|
|
|
5826
|
-
return
|
|
6638
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5827
6639
|
}
|
|
5828
|
-
jsi::Value NativeBark::
|
|
5829
|
-
|
|
5830
|
-
auto value = uniffi_bark_ffi_fn_constructor_wallet_create(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3]),
|
|
5831
|
-
&status
|
|
6640
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6641
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
5832
6642
|
);
|
|
5833
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5834
6643
|
|
|
5835
6644
|
|
|
5836
6645
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5837
6646
|
}
|
|
5838
|
-
jsi::Value NativeBark::
|
|
5839
|
-
|
|
5840
|
-
auto value = uniffi_bark_ffi_fn_constructor_wallet_create_with_onchain(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[3]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[4]),
|
|
5841
|
-
&status
|
|
6647
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6648
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
5842
6649
|
);
|
|
5843
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5844
6650
|
|
|
5845
6651
|
|
|
5846
6652
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5847
6653
|
}
|
|
5848
|
-
jsi::Value NativeBark::
|
|
5849
|
-
|
|
5850
|
-
auto value = uniffi_bark_ffi_fn_constructor_wallet_open(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
5851
|
-
&status
|
|
6654
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6655
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5852
6656
|
);
|
|
5853
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5854
6657
|
|
|
5855
6658
|
|
|
5856
6659
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5857
6660
|
}
|
|
5858
|
-
jsi::Value NativeBark::
|
|
5859
|
-
|
|
5860
|
-
auto value = uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[3]),
|
|
5861
|
-
&status
|
|
6661
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_network(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6662
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_network(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5862
6663
|
);
|
|
5863
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5864
6664
|
|
|
5865
6665
|
|
|
5866
6666
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5867
6667
|
}
|
|
5868
|
-
jsi::Value NativeBark::
|
|
5869
|
-
|
|
5870
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5871
|
-
&status
|
|
6668
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_new_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6669
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_new_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5872
6670
|
);
|
|
5873
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5874
6671
|
|
|
5875
6672
|
|
|
5876
|
-
return
|
|
6673
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5877
6674
|
}
|
|
5878
|
-
jsi::Value NativeBark::
|
|
6675
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_new_address_with_index(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6676
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_new_address_with_index(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6677
|
+
);
|
|
6678
|
+
|
|
6679
|
+
|
|
6680
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6681
|
+
}
|
|
6682
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_next_round_start_time(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6683
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_next_round_start_time(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6684
|
+
);
|
|
6685
|
+
|
|
6686
|
+
|
|
6687
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6688
|
+
}
|
|
6689
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_notifications(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
5879
6690
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5880
|
-
auto value =
|
|
6691
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_notifications(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5881
6692
|
&status
|
|
5882
6693
|
);
|
|
5883
6694
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5884
6695
|
|
|
5885
6696
|
|
|
5886
|
-
return
|
|
6697
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5887
6698
|
}
|
|
5888
|
-
jsi::Value NativeBark::
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
6699
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_offboard_all(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6700
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_offboard_all(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6701
|
+
);
|
|
6702
|
+
|
|
6703
|
+
|
|
6704
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6705
|
+
}
|
|
6706
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6707
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6708
|
+
);
|
|
6709
|
+
|
|
6710
|
+
|
|
6711
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6712
|
+
}
|
|
6713
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6714
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[3])
|
|
6715
|
+
);
|
|
6716
|
+
|
|
6717
|
+
|
|
6718
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6719
|
+
}
|
|
6720
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6721
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6722
|
+
);
|
|
6723
|
+
|
|
6724
|
+
|
|
6725
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6726
|
+
}
|
|
6727
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6728
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
5892
6729
|
);
|
|
5893
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5894
6730
|
|
|
5895
6731
|
|
|
5896
|
-
return
|
|
6732
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5897
6733
|
}
|
|
5898
|
-
jsi::Value NativeBark::
|
|
5899
|
-
|
|
5900
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_balance(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5901
|
-
&status
|
|
6734
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_peak_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6735
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_peak_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1])
|
|
5902
6736
|
);
|
|
5903
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5904
6737
|
|
|
5905
6738
|
|
|
5906
|
-
return
|
|
6739
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5907
6740
|
}
|
|
5908
|
-
jsi::Value NativeBark::
|
|
5909
|
-
|
|
5910
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_board_all(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
5911
|
-
&status
|
|
6741
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_peek_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6742
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_peek_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1])
|
|
5912
6743
|
);
|
|
5913
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5914
6744
|
|
|
5915
6745
|
|
|
5916
|
-
return
|
|
6746
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5917
6747
|
}
|
|
5918
|
-
jsi::Value NativeBark::
|
|
5919
|
-
|
|
5920
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_board_amount(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]),
|
|
5921
|
-
&status
|
|
6748
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6749
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5922
6750
|
);
|
|
5923
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5924
6751
|
|
|
5925
6752
|
|
|
5926
|
-
return
|
|
6753
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5927
6754
|
}
|
|
5928
|
-
jsi::Value NativeBark::
|
|
5929
|
-
|
|
5930
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_bolt11_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
5931
|
-
&status
|
|
6755
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_boards(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6756
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_boards(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5932
6757
|
);
|
|
5933
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5934
6758
|
|
|
5935
6759
|
|
|
5936
|
-
return
|
|
6760
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5937
6761
|
}
|
|
5938
|
-
jsi::Value NativeBark::
|
|
5939
|
-
|
|
5940
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_broadcast_tx(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
5941
|
-
&status
|
|
6762
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6763
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5942
6764
|
);
|
|
5943
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5944
6765
|
|
|
5945
6766
|
|
|
5946
|
-
return
|
|
6767
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5947
6768
|
}
|
|
5948
|
-
jsi::Value NativeBark::
|
|
5949
|
-
|
|
5950
|
-
uniffi_bark_ffi_fn_method_wallet_cancel_all_pending_rounds(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5951
|
-
&status
|
|
6769
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6770
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5952
6771
|
);
|
|
5953
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5954
6772
|
|
|
5955
6773
|
|
|
5956
|
-
return
|
|
6774
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5957
6775
|
}
|
|
5958
|
-
jsi::Value NativeBark::
|
|
5959
|
-
|
|
5960
|
-
uniffi_bark_ffi_fn_method_wallet_cancel_pending_round(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1]),
|
|
5961
|
-
&status
|
|
6776
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6777
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5962
6778
|
);
|
|
5963
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5964
6779
|
|
|
5965
6780
|
|
|
5966
|
-
return
|
|
6781
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5967
6782
|
}
|
|
5968
|
-
jsi::Value NativeBark::
|
|
5969
|
-
|
|
5970
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_check_lightning_payment(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[2]),
|
|
5971
|
-
&status
|
|
6783
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6784
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5972
6785
|
);
|
|
5973
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5974
6786
|
|
|
5975
6787
|
|
|
5976
|
-
return
|
|
6788
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5977
6789
|
}
|
|
5978
|
-
jsi::Value NativeBark::
|
|
5979
|
-
|
|
5980
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5981
|
-
&status
|
|
6790
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6791
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5982
6792
|
);
|
|
5983
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5984
6793
|
|
|
5985
6794
|
|
|
5986
|
-
return uniffi_jsi::Bridging
|
|
6795
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5987
6796
|
}
|
|
5988
|
-
jsi::Value NativeBark::
|
|
5989
|
-
|
|
5990
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_config(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
5991
|
-
&status
|
|
6797
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_round_states(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6798
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_round_states(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
5992
6799
|
);
|
|
5993
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5994
6800
|
|
|
5995
6801
|
|
|
5996
|
-
return
|
|
6802
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
5997
6803
|
}
|
|
5998
|
-
jsi::Value NativeBark::
|
|
5999
|
-
|
|
6000
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_drain_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[3]),
|
|
6001
|
-
&status
|
|
6804
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_progress_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6805
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_progress_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
6002
6806
|
);
|
|
6003
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6004
6807
|
|
|
6005
6808
|
|
|
6006
|
-
return
|
|
6809
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6007
6810
|
}
|
|
6008
|
-
jsi::Value NativeBark::
|
|
6009
|
-
|
|
6010
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
6011
|
-
&status
|
|
6811
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_progress_pending_rounds(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6812
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_progress_pending_rounds(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6012
6813
|
);
|
|
6013
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6014
6814
|
|
|
6015
6815
|
|
|
6016
|
-
return uniffi_jsi::Bridging
|
|
6816
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6017
6817
|
}
|
|
6018
|
-
jsi::Value NativeBark::
|
|
6019
|
-
|
|
6020
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
6021
|
-
&status
|
|
6818
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_properties(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6819
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_properties(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6022
6820
|
);
|
|
6023
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6024
6821
|
|
|
6025
6822
|
|
|
6026
|
-
return uniffi_jsi::Bridging
|
|
6823
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6027
6824
|
}
|
|
6028
|
-
jsi::Value NativeBark::
|
|
6029
|
-
|
|
6030
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
6031
|
-
&status
|
|
6825
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_refresh_server(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6826
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_refresh_server(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6032
6827
|
);
|
|
6033
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6034
6828
|
|
|
6035
6829
|
|
|
6036
|
-
return uniffi_jsi::Bridging
|
|
6830
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6037
6831
|
}
|
|
6038
|
-
jsi::Value NativeBark::
|
|
6039
|
-
|
|
6040
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
6041
|
-
&status
|
|
6832
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6833
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6042
6834
|
);
|
|
6043
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6044
6835
|
|
|
6045
6836
|
|
|
6046
|
-
return uniffi_jsi::Bridging
|
|
6837
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6047
6838
|
}
|
|
6048
|
-
jsi::Value NativeBark::
|
|
6049
|
-
|
|
6050
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6051
|
-
&status
|
|
6839
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6840
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6052
6841
|
);
|
|
6053
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6054
6842
|
|
|
6055
6843
|
|
|
6056
|
-
return uniffi_jsi::Bridging
|
|
6844
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6057
6845
|
}
|
|
6058
|
-
jsi::Value NativeBark::
|
|
6059
|
-
|
|
6060
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]),
|
|
6061
|
-
&status
|
|
6846
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6847
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6062
6848
|
);
|
|
6063
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6064
6849
|
|
|
6065
6850
|
|
|
6066
|
-
return uniffi_jsi::Bridging
|
|
6851
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6067
6852
|
}
|
|
6068
|
-
jsi::Value NativeBark::
|
|
6069
|
-
|
|
6070
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_fingerprint(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6071
|
-
&status
|
|
6853
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_send_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6854
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_send_onchain(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6072
6855
|
);
|
|
6073
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6074
6856
|
|
|
6075
6857
|
|
|
6076
|
-
return
|
|
6858
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6077
6859
|
}
|
|
6078
|
-
jsi::Value NativeBark::
|
|
6079
|
-
|
|
6080
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_exit_status(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3]),
|
|
6081
|
-
&status
|
|
6860
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_sign_exit_claim_inputs(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6861
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_sign_exit_claim_inputs(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6082
6862
|
);
|
|
6083
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6084
6863
|
|
|
6085
6864
|
|
|
6086
|
-
return
|
|
6865
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6087
6866
|
}
|
|
6088
|
-
jsi::Value NativeBark::
|
|
6089
|
-
|
|
6090
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_exit_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6091
|
-
&status
|
|
6867
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_spendable_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6868
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_spendable_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6092
6869
|
);
|
|
6093
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6094
6870
|
|
|
6095
6871
|
|
|
6096
|
-
return
|
|
6872
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6097
6873
|
}
|
|
6098
|
-
jsi::Value NativeBark::
|
|
6099
|
-
|
|
6100
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_expiring_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1]),
|
|
6101
|
-
&status
|
|
6874
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6875
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6102
6876
|
);
|
|
6103
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6104
6877
|
|
|
6105
6878
|
|
|
6106
|
-
return
|
|
6879
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6107
6880
|
}
|
|
6108
|
-
jsi::Value NativeBark::
|
|
6109
|
-
|
|
6110
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_first_expiring_vtxo_blockheight(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6111
|
-
&status
|
|
6881
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6882
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6112
6883
|
);
|
|
6113
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6114
6884
|
|
|
6115
6885
|
|
|
6116
|
-
return
|
|
6886
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6117
6887
|
}
|
|
6118
|
-
jsi::Value NativeBark::
|
|
6119
|
-
|
|
6120
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_next_required_refresh_blockheight(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6121
|
-
&status
|
|
6888
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6889
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_sync(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6122
6890
|
);
|
|
6123
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6124
6891
|
|
|
6125
6892
|
|
|
6126
|
-
return
|
|
6893
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6127
6894
|
}
|
|
6128
|
-
jsi::Value NativeBark::
|
|
6129
|
-
|
|
6130
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_vtxo_by_id(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6131
|
-
&status
|
|
6895
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_sync_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6896
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_sync_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1])
|
|
6132
6897
|
);
|
|
6133
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6134
6898
|
|
|
6135
6899
|
|
|
6136
|
-
return
|
|
6900
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6137
6901
|
}
|
|
6138
|
-
jsi::Value NativeBark::
|
|
6139
|
-
|
|
6140
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_get_vtxos_to_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6141
|
-
&status
|
|
6902
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6903
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6142
6904
|
);
|
|
6143
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6144
6905
|
|
|
6145
6906
|
|
|
6146
|
-
return
|
|
6907
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6147
6908
|
}
|
|
6148
|
-
jsi::Value NativeBark::
|
|
6149
|
-
|
|
6150
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_has_pending_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6151
|
-
&status
|
|
6909
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_try_claim_all_lightning_receives(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6910
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_try_claim_all_lightning_receives(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[1])
|
|
6152
6911
|
);
|
|
6153
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6154
6912
|
|
|
6155
6913
|
|
|
6156
|
-
return uniffi_jsi::Bridging
|
|
6914
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6157
6915
|
}
|
|
6158
|
-
jsi::Value NativeBark::
|
|
6159
|
-
|
|
6160
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_history(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6161
|
-
&status
|
|
6916
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_try_claim_lightning_receive(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6917
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_try_claim_lightning_receive(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[2])
|
|
6162
6918
|
);
|
|
6163
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6164
6919
|
|
|
6165
6920
|
|
|
6166
|
-
return
|
|
6921
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6167
6922
|
}
|
|
6168
|
-
jsi::Value NativeBark::
|
|
6169
|
-
|
|
6170
|
-
uniffi_bark_ffi_fn_method_wallet_import_vtxo(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6171
|
-
&status
|
|
6923
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_validate_arkoor_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6924
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_validate_arkoor_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
6172
6925
|
);
|
|
6173
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6174
6926
|
|
|
6175
6927
|
|
|
6176
|
-
return
|
|
6928
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6177
6929
|
}
|
|
6178
|
-
jsi::Value NativeBark::
|
|
6179
|
-
|
|
6180
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6181
|
-
&status
|
|
6930
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6931
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6182
6932
|
);
|
|
6183
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6184
6933
|
|
|
6185
6934
|
|
|
6186
|
-
return
|
|
6935
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
6187
6936
|
}
|
|
6188
|
-
jsi::Value NativeBark::
|
|
6937
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_init_callback_vtable_customonchainwalletcallbacks(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6938
|
+
auto vtableInstance =
|
|
6939
|
+
uniffi::bark::Bridging<UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks>::fromJs(
|
|
6940
|
+
rt,
|
|
6941
|
+
callInvoker,
|
|
6942
|
+
args[0]
|
|
6943
|
+
);
|
|
6944
|
+
|
|
6945
|
+
std::lock_guard<std::mutex> lock(uniffi::bark::registry::vtableMutex);
|
|
6946
|
+
uniffi_bark_ffi_fn_init_callback_vtable_customonchainwalletcallbacks(
|
|
6947
|
+
uniffi::bark::registry::putTable(
|
|
6948
|
+
"UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks",
|
|
6949
|
+
vtableInstance
|
|
6950
|
+
)
|
|
6951
|
+
);
|
|
6952
|
+
return jsi::Value::undefined();
|
|
6953
|
+
}
|
|
6954
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_func_extract_tx_from_psbt(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6189
6955
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6190
|
-
auto value =
|
|
6956
|
+
auto value = uniffi_bark_ffi_fn_func_extract_tx_from_psbt(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]),
|
|
6191
6957
|
&status
|
|
6192
6958
|
);
|
|
6193
6959
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
@@ -6195,476 +6961,369 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits
|
|
|
6195
6961
|
|
|
6196
6962
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6197
6963
|
}
|
|
6198
|
-
jsi::Value NativeBark::
|
|
6964
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_func_generate_mnemonic(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6199
6965
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6200
|
-
auto value =
|
|
6201
|
-
&status
|
|
6966
|
+
auto value = uniffi_bark_ffi_fn_func_generate_mnemonic(&status
|
|
6202
6967
|
);
|
|
6203
6968
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6204
6969
|
|
|
6205
6970
|
|
|
6206
6971
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6207
6972
|
}
|
|
6208
|
-
jsi::Value NativeBark::
|
|
6973
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_func_validate_ark_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6209
6974
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6210
|
-
auto value =
|
|
6975
|
+
auto value = uniffi_bark_ffi_fn_func_validate_ark_address(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]),
|
|
6211
6976
|
&status
|
|
6212
6977
|
);
|
|
6213
6978
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6214
6979
|
|
|
6215
6980
|
|
|
6216
|
-
return
|
|
6981
|
+
return uniffi_jsi::Bridging<int8_t>::toJs(rt, callInvoker, value);
|
|
6217
6982
|
}
|
|
6218
|
-
jsi::Value NativeBark::
|
|
6983
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_func_validate_mnemonic(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6219
6984
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6220
|
-
|
|
6985
|
+
auto value = uniffi_bark_ffi_fn_func_validate_mnemonic(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]),
|
|
6221
6986
|
&status
|
|
6222
6987
|
);
|
|
6223
6988
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6224
6989
|
|
|
6225
6990
|
|
|
6226
|
-
return
|
|
6991
|
+
return uniffi_jsi::Bridging<int8_t>::toJs(rt, callInvoker, value);
|
|
6227
6992
|
}
|
|
6228
|
-
jsi::Value NativeBark::
|
|
6229
|
-
|
|
6230
|
-
uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6231
|
-
&status
|
|
6993
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_u8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6994
|
+
ffi_bark_ffi_rust_future_poll_u8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6232
6995
|
);
|
|
6233
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6234
6996
|
|
|
6235
6997
|
|
|
6236
6998
|
return jsi::Value::undefined();
|
|
6237
6999
|
}
|
|
6238
|
-
jsi::Value NativeBark::
|
|
6239
|
-
|
|
6240
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6241
|
-
&status
|
|
7000
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_u8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7001
|
+
ffi_bark_ffi_rust_future_cancel_u8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6242
7002
|
);
|
|
6243
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6244
7003
|
|
|
6245
7004
|
|
|
6246
|
-
return
|
|
6247
|
-
}
|
|
6248
|
-
jsi::Value NativeBark::
|
|
6249
|
-
|
|
6250
|
-
uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
6251
|
-
&status
|
|
7005
|
+
return jsi::Value::undefined();
|
|
7006
|
+
}
|
|
7007
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_u8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7008
|
+
ffi_bark_ffi_rust_future_free_u8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6252
7009
|
);
|
|
6253
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6254
7010
|
|
|
6255
7011
|
|
|
6256
7012
|
return jsi::Value::undefined();
|
|
6257
7013
|
}
|
|
6258
|
-
jsi::Value NativeBark::
|
|
7014
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_u8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6259
7015
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6260
|
-
|
|
7016
|
+
auto value = ffi_bark_ffi_rust_future_complete_u8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6261
7017
|
&status
|
|
6262
7018
|
);
|
|
6263
7019
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6264
7020
|
|
|
6265
7021
|
|
|
6266
|
-
return
|
|
7022
|
+
return uniffi_jsi::Bridging<uint8_t>::toJs(rt, callInvoker, value);
|
|
6267
7023
|
}
|
|
6268
|
-
jsi::Value NativeBark::
|
|
6269
|
-
|
|
6270
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6271
|
-
&status
|
|
7024
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_i8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7025
|
+
ffi_bark_ffi_rust_future_poll_i8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6272
7026
|
);
|
|
6273
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6274
7027
|
|
|
6275
7028
|
|
|
6276
|
-
return
|
|
7029
|
+
return jsi::Value::undefined();
|
|
6277
7030
|
}
|
|
6278
|
-
jsi::Value NativeBark::
|
|
6279
|
-
|
|
6280
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_network(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6281
|
-
&status
|
|
7031
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_i8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7032
|
+
ffi_bark_ffi_rust_future_cancel_i8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6282
7033
|
);
|
|
6283
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6284
7034
|
|
|
6285
7035
|
|
|
6286
|
-
return
|
|
7036
|
+
return jsi::Value::undefined();
|
|
6287
7037
|
}
|
|
6288
|
-
jsi::Value NativeBark::
|
|
6289
|
-
|
|
6290
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_new_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6291
|
-
&status
|
|
7038
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_i8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7039
|
+
ffi_bark_ffi_rust_future_free_i8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6292
7040
|
);
|
|
6293
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6294
7041
|
|
|
6295
7042
|
|
|
6296
|
-
return
|
|
7043
|
+
return jsi::Value::undefined();
|
|
6297
7044
|
}
|
|
6298
|
-
jsi::Value NativeBark::
|
|
7045
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_i8(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6299
7046
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6300
|
-
auto value =
|
|
7047
|
+
auto value = ffi_bark_ffi_rust_future_complete_i8(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6301
7048
|
&status
|
|
6302
7049
|
);
|
|
6303
7050
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6304
7051
|
|
|
6305
7052
|
|
|
6306
|
-
return
|
|
7053
|
+
return uniffi_jsi::Bridging<int8_t>::toJs(rt, callInvoker, value);
|
|
6307
7054
|
}
|
|
6308
|
-
jsi::Value NativeBark::
|
|
6309
|
-
|
|
6310
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_next_round_start_time(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6311
|
-
&status
|
|
7055
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_u16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7056
|
+
ffi_bark_ffi_rust_future_poll_u16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6312
7057
|
);
|
|
6313
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6314
7058
|
|
|
6315
7059
|
|
|
6316
|
-
return
|
|
7060
|
+
return jsi::Value::undefined();
|
|
6317
7061
|
}
|
|
6318
|
-
jsi::Value NativeBark::
|
|
6319
|
-
|
|
6320
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_offboard_all(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6321
|
-
&status
|
|
7062
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_u16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7063
|
+
ffi_bark_ffi_rust_future_cancel_u16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6322
7064
|
);
|
|
6323
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6324
7065
|
|
|
6325
7066
|
|
|
6326
|
-
return
|
|
7067
|
+
return jsi::Value::undefined();
|
|
6327
7068
|
}
|
|
6328
|
-
jsi::Value NativeBark::
|
|
6329
|
-
|
|
6330
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
6331
|
-
&status
|
|
7069
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_u16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7070
|
+
ffi_bark_ffi_rust_future_free_u16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6332
7071
|
);
|
|
6333
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6334
7072
|
|
|
6335
7073
|
|
|
6336
|
-
return
|
|
7074
|
+
return jsi::Value::undefined();
|
|
6337
7075
|
}
|
|
6338
|
-
jsi::Value NativeBark::
|
|
7076
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_u16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6339
7077
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6340
|
-
auto value =
|
|
7078
|
+
auto value = ffi_bark_ffi_rust_future_complete_u16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6341
7079
|
&status
|
|
6342
7080
|
);
|
|
6343
7081
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6344
7082
|
|
|
6345
7083
|
|
|
6346
|
-
return
|
|
7084
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6347
7085
|
}
|
|
6348
|
-
jsi::Value NativeBark::
|
|
6349
|
-
|
|
6350
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
6351
|
-
&status
|
|
7086
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_i16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7087
|
+
ffi_bark_ffi_rust_future_poll_i16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6352
7088
|
);
|
|
6353
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6354
7089
|
|
|
6355
7090
|
|
|
6356
|
-
return
|
|
7091
|
+
return jsi::Value::undefined();
|
|
6357
7092
|
}
|
|
6358
|
-
jsi::Value NativeBark::
|
|
6359
|
-
|
|
6360
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]),
|
|
6361
|
-
&status
|
|
7093
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_i16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7094
|
+
ffi_bark_ffi_rust_future_cancel_i16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6362
7095
|
);
|
|
6363
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6364
7096
|
|
|
6365
7097
|
|
|
6366
|
-
return
|
|
7098
|
+
return jsi::Value::undefined();
|
|
6367
7099
|
}
|
|
6368
|
-
jsi::Value NativeBark::
|
|
6369
|
-
|
|
6370
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_peak_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<uint32_t>::fromJs(rt, callInvoker, args[1]),
|
|
6371
|
-
&status
|
|
7100
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_i16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7101
|
+
ffi_bark_ffi_rust_future_free_i16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6372
7102
|
);
|
|
6373
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6374
7103
|
|
|
6375
7104
|
|
|
6376
|
-
return
|
|
7105
|
+
return jsi::Value::undefined();
|
|
6377
7106
|
}
|
|
6378
|
-
jsi::Value NativeBark::
|
|
7107
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_i16(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6379
7108
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6380
|
-
auto value =
|
|
7109
|
+
auto value = ffi_bark_ffi_rust_future_complete_i16(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6381
7110
|
&status
|
|
6382
7111
|
);
|
|
6383
7112
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6384
7113
|
|
|
6385
7114
|
|
|
6386
|
-
return
|
|
7115
|
+
return uniffi_jsi::Bridging<int16_t>::toJs(rt, callInvoker, value);
|
|
6387
7116
|
}
|
|
6388
|
-
jsi::Value NativeBark::
|
|
6389
|
-
|
|
6390
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_boards(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6391
|
-
&status
|
|
7117
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_u32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7118
|
+
ffi_bark_ffi_rust_future_poll_u32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6392
7119
|
);
|
|
6393
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6394
7120
|
|
|
6395
7121
|
|
|
6396
|
-
return
|
|
7122
|
+
return jsi::Value::undefined();
|
|
6397
7123
|
}
|
|
6398
|
-
jsi::Value NativeBark::
|
|
6399
|
-
|
|
6400
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6401
|
-
&status
|
|
7124
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_u32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7125
|
+
ffi_bark_ffi_rust_future_cancel_u32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6402
7126
|
);
|
|
6403
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6404
7127
|
|
|
6405
7128
|
|
|
6406
|
-
return
|
|
7129
|
+
return jsi::Value::undefined();
|
|
6407
7130
|
}
|
|
6408
|
-
jsi::Value NativeBark::
|
|
6409
|
-
|
|
6410
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6411
|
-
&status
|
|
7131
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_u32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7132
|
+
ffi_bark_ffi_rust_future_free_u32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6412
7133
|
);
|
|
6413
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6414
7134
|
|
|
6415
7135
|
|
|
6416
|
-
return
|
|
7136
|
+
return jsi::Value::undefined();
|
|
6417
7137
|
}
|
|
6418
|
-
jsi::Value NativeBark::
|
|
7138
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_u32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6419
7139
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6420
|
-
auto value =
|
|
7140
|
+
auto value = ffi_bark_ffi_rust_future_complete_u32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6421
7141
|
&status
|
|
6422
7142
|
);
|
|
6423
7143
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6424
7144
|
|
|
6425
7145
|
|
|
6426
|
-
return
|
|
7146
|
+
return uniffi_jsi::Bridging<uint32_t>::toJs(rt, callInvoker, value);
|
|
6427
7147
|
}
|
|
6428
|
-
jsi::Value NativeBark::
|
|
6429
|
-
|
|
6430
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6431
|
-
&status
|
|
7148
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_i32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7149
|
+
ffi_bark_ffi_rust_future_poll_i32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6432
7150
|
);
|
|
6433
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6434
7151
|
|
|
6435
7152
|
|
|
6436
|
-
return
|
|
7153
|
+
return jsi::Value::undefined();
|
|
6437
7154
|
}
|
|
6438
|
-
jsi::Value NativeBark::
|
|
6439
|
-
|
|
6440
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6441
|
-
&status
|
|
7155
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_i32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7156
|
+
ffi_bark_ffi_rust_future_cancel_i32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6442
7157
|
);
|
|
6443
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6444
7158
|
|
|
6445
7159
|
|
|
6446
|
-
return
|
|
7160
|
+
return jsi::Value::undefined();
|
|
6447
7161
|
}
|
|
6448
|
-
jsi::Value NativeBark::
|
|
6449
|
-
|
|
6450
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pending_round_states(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6451
|
-
&status
|
|
7162
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_i32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7163
|
+
ffi_bark_ffi_rust_future_free_i32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6452
7164
|
);
|
|
6453
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6454
7165
|
|
|
6455
7166
|
|
|
6456
|
-
return
|
|
7167
|
+
return jsi::Value::undefined();
|
|
6457
7168
|
}
|
|
6458
|
-
jsi::Value NativeBark::
|
|
7169
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_i32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6459
7170
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6460
|
-
auto value =
|
|
7171
|
+
auto value = ffi_bark_ffi_rust_future_complete_i32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6461
7172
|
&status
|
|
6462
7173
|
);
|
|
6463
7174
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6464
7175
|
|
|
6465
7176
|
|
|
6466
|
-
return
|
|
7177
|
+
return uniffi_jsi::Bridging<int32_t>::toJs(rt, callInvoker, value);
|
|
6467
7178
|
}
|
|
6468
|
-
jsi::Value NativeBark::
|
|
6469
|
-
|
|
6470
|
-
uniffi_bark_ffi_fn_method_wallet_progress_pending_rounds(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6471
|
-
&status
|
|
7179
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_u64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7180
|
+
ffi_bark_ffi_rust_future_poll_u64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6472
7181
|
);
|
|
6473
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6474
7182
|
|
|
6475
7183
|
|
|
6476
7184
|
return jsi::Value::undefined();
|
|
6477
7185
|
}
|
|
6478
|
-
jsi::Value NativeBark::
|
|
6479
|
-
|
|
6480
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_properties(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6481
|
-
&status
|
|
7186
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_u64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7187
|
+
ffi_bark_ffi_rust_future_cancel_u64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6482
7188
|
);
|
|
6483
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6484
7189
|
|
|
6485
7190
|
|
|
6486
|
-
return
|
|
7191
|
+
return jsi::Value::undefined();
|
|
6487
7192
|
}
|
|
6488
|
-
jsi::Value NativeBark::
|
|
6489
|
-
|
|
6490
|
-
uniffi_bark_ffi_fn_method_wallet_refresh_server(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6491
|
-
&status
|
|
7193
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_u64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7194
|
+
ffi_bark_ffi_rust_future_free_u64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6492
7195
|
);
|
|
6493
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6494
7196
|
|
|
6495
7197
|
|
|
6496
7198
|
return jsi::Value::undefined();
|
|
6497
7199
|
}
|
|
6498
|
-
jsi::Value NativeBark::
|
|
7200
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_u64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6499
7201
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6500
|
-
auto value =
|
|
7202
|
+
auto value = ffi_bark_ffi_rust_future_complete_u64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6501
7203
|
&status
|
|
6502
7204
|
);
|
|
6503
7205
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6504
7206
|
|
|
6505
7207
|
|
|
6506
|
-
return
|
|
7208
|
+
return uniffi_jsi::Bridging<uint64_t>::toJs(rt, callInvoker, value);
|
|
6507
7209
|
}
|
|
6508
|
-
jsi::Value NativeBark::
|
|
6509
|
-
|
|
6510
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6511
|
-
&status
|
|
7210
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_i64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7211
|
+
ffi_bark_ffi_rust_future_poll_i64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6512
7212
|
);
|
|
6513
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6514
7213
|
|
|
6515
7214
|
|
|
6516
|
-
return
|
|
7215
|
+
return jsi::Value::undefined();
|
|
6517
7216
|
}
|
|
6518
|
-
jsi::Value NativeBark::
|
|
6519
|
-
|
|
6520
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]),
|
|
6521
|
-
&status
|
|
7217
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_i64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7218
|
+
ffi_bark_ffi_rust_future_cancel_i64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6522
7219
|
);
|
|
6523
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6524
7220
|
|
|
6525
7221
|
|
|
6526
|
-
return
|
|
7222
|
+
return jsi::Value::undefined();
|
|
6527
7223
|
}
|
|
6528
|
-
jsi::Value NativeBark::
|
|
6529
|
-
|
|
6530
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_send_onchain(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]),
|
|
6531
|
-
&status
|
|
7224
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_i64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7225
|
+
ffi_bark_ffi_rust_future_free_i64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6532
7226
|
);
|
|
6533
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6534
7227
|
|
|
6535
7228
|
|
|
6536
|
-
return
|
|
7229
|
+
return jsi::Value::undefined();
|
|
6537
7230
|
}
|
|
6538
|
-
jsi::Value NativeBark::
|
|
7231
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_i64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6539
7232
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6540
|
-
auto value =
|
|
7233
|
+
auto value = ffi_bark_ffi_rust_future_complete_i64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6541
7234
|
&status
|
|
6542
7235
|
);
|
|
6543
7236
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6544
7237
|
|
|
6545
7238
|
|
|
6546
|
-
return
|
|
7239
|
+
return uniffi_jsi::Bridging<int64_t>::toJs(rt, callInvoker, value);
|
|
6547
7240
|
}
|
|
6548
|
-
jsi::Value NativeBark::
|
|
6549
|
-
|
|
6550
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_spendable_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6551
|
-
&status
|
|
7241
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_f32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7242
|
+
ffi_bark_ffi_rust_future_poll_f32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6552
7243
|
);
|
|
6553
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6554
7244
|
|
|
6555
7245
|
|
|
6556
|
-
return
|
|
7246
|
+
return jsi::Value::undefined();
|
|
6557
7247
|
}
|
|
6558
|
-
jsi::Value NativeBark::
|
|
6559
|
-
|
|
6560
|
-
uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6561
|
-
&status
|
|
7248
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_f32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7249
|
+
ffi_bark_ffi_rust_future_cancel_f32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6562
7250
|
);
|
|
6563
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6564
7251
|
|
|
6565
7252
|
|
|
6566
7253
|
return jsi::Value::undefined();
|
|
6567
7254
|
}
|
|
6568
|
-
jsi::Value NativeBark::
|
|
6569
|
-
|
|
6570
|
-
uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6571
|
-
&status
|
|
7255
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_f32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7256
|
+
ffi_bark_ffi_rust_future_free_f32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6572
7257
|
);
|
|
6573
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6574
7258
|
|
|
6575
7259
|
|
|
6576
7260
|
return jsi::Value::undefined();
|
|
6577
7261
|
}
|
|
6578
|
-
jsi::Value NativeBark::
|
|
7262
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_f32(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6579
7263
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6580
|
-
|
|
7264
|
+
auto value = ffi_bark_ffi_rust_future_complete_f32(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6581
7265
|
&status
|
|
6582
7266
|
);
|
|
6583
7267
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6584
7268
|
|
|
6585
7269
|
|
|
6586
|
-
return
|
|
7270
|
+
return uniffi_jsi::Bridging<float>::toJs(rt, callInvoker, value);
|
|
6587
7271
|
}
|
|
6588
|
-
jsi::Value NativeBark::
|
|
6589
|
-
|
|
6590
|
-
uniffi_bark_ffi_fn_method_wallet_sync_exits(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[1]),
|
|
6591
|
-
&status
|
|
7272
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_f64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7273
|
+
ffi_bark_ffi_rust_future_poll_f64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6592
7274
|
);
|
|
6593
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6594
7275
|
|
|
6595
7276
|
|
|
6596
7277
|
return jsi::Value::undefined();
|
|
6597
7278
|
}
|
|
6598
|
-
jsi::Value NativeBark::
|
|
6599
|
-
|
|
6600
|
-
uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6601
|
-
&status
|
|
7279
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_f64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7280
|
+
ffi_bark_ffi_rust_future_cancel_f64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6602
7281
|
);
|
|
6603
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6604
7282
|
|
|
6605
7283
|
|
|
6606
7284
|
return jsi::Value::undefined();
|
|
6607
7285
|
}
|
|
6608
|
-
jsi::Value NativeBark::
|
|
6609
|
-
|
|
6610
|
-
uniffi_bark_ffi_fn_method_wallet_try_claim_all_lightning_receives(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[1]),
|
|
6611
|
-
&status
|
|
7286
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_f64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7287
|
+
ffi_bark_ffi_rust_future_free_f64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6612
7288
|
);
|
|
6613
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6614
7289
|
|
|
6615
7290
|
|
|
6616
7291
|
return jsi::Value::undefined();
|
|
6617
7292
|
}
|
|
6618
|
-
jsi::Value NativeBark::
|
|
7293
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_f64(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6619
7294
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6620
|
-
|
|
7295
|
+
auto value = ffi_bark_ffi_rust_future_complete_f64(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6621
7296
|
&status
|
|
6622
7297
|
);
|
|
6623
7298
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6624
7299
|
|
|
6625
7300
|
|
|
6626
|
-
return
|
|
7301
|
+
return uniffi_jsi::Bridging<double>::toJs(rt, callInvoker, value);
|
|
6627
7302
|
}
|
|
6628
|
-
jsi::Value NativeBark::
|
|
6629
|
-
|
|
6630
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_validate_arkoor_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6631
|
-
&status
|
|
7303
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_rust_buffer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7304
|
+
ffi_bark_ffi_rust_future_poll_rust_buffer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6632
7305
|
);
|
|
6633
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6634
7306
|
|
|
6635
7307
|
|
|
6636
|
-
return
|
|
7308
|
+
return jsi::Value::undefined();
|
|
6637
7309
|
}
|
|
6638
|
-
jsi::Value NativeBark::
|
|
6639
|
-
|
|
6640
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_vtxos(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6641
|
-
&status
|
|
7310
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_rust_buffer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7311
|
+
ffi_bark_ffi_rust_future_cancel_rust_buffer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6642
7312
|
);
|
|
6643
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6644
7313
|
|
|
6645
7314
|
|
|
6646
|
-
return
|
|
7315
|
+
return jsi::Value::undefined();
|
|
6647
7316
|
}
|
|
6648
|
-
jsi::Value NativeBark::
|
|
6649
|
-
|
|
6650
|
-
uniffi::bark::Bridging<UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks>::fromJs(
|
|
6651
|
-
rt,
|
|
6652
|
-
callInvoker,
|
|
6653
|
-
args[0]
|
|
7317
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_rust_buffer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7318
|
+
ffi_bark_ffi_rust_future_free_rust_buffer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6654
7319
|
);
|
|
6655
7320
|
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
uniffi::bark::registry::putTable(
|
|
6659
|
-
"UniffiVTableCallbackInterfaceCustomOnchainWalletCallbacks",
|
|
6660
|
-
vtableInstance
|
|
6661
|
-
)
|
|
6662
|
-
);
|
|
6663
|
-
return jsi::Value::undefined();
|
|
7321
|
+
|
|
7322
|
+
return jsi::Value::undefined();
|
|
6664
7323
|
}
|
|
6665
|
-
jsi::Value NativeBark::
|
|
7324
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_rust_buffer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6666
7325
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6667
|
-
auto value =
|
|
7326
|
+
auto value = ffi_bark_ffi_rust_future_complete_rust_buffer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6668
7327
|
&status
|
|
6669
7328
|
);
|
|
6670
7329
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
@@ -6672,34 +7331,36 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_func_extract_tx_from_psbt(jsi::Run
|
|
|
6672
7331
|
|
|
6673
7332
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6674
7333
|
}
|
|
6675
|
-
jsi::Value NativeBark::
|
|
6676
|
-
|
|
6677
|
-
auto value = uniffi_bark_ffi_fn_func_generate_mnemonic(&status
|
|
7334
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_poll_void(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7335
|
+
ffi_bark_ffi_rust_future_poll_void(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<UniffiRustFutureContinuationCallback>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[2])
|
|
6678
7336
|
);
|
|
6679
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6680
7337
|
|
|
6681
7338
|
|
|
6682
|
-
return
|
|
7339
|
+
return jsi::Value::undefined();
|
|
6683
7340
|
}
|
|
6684
|
-
jsi::Value NativeBark::
|
|
6685
|
-
|
|
6686
|
-
auto value = uniffi_bark_ffi_fn_func_validate_ark_address(uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[0]),
|
|
6687
|
-
&status
|
|
7341
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_cancel_void(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7342
|
+
ffi_bark_ffi_rust_future_cancel_void(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
6688
7343
|
);
|
|
6689
|
-
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6690
7344
|
|
|
6691
7345
|
|
|
6692
|
-
return
|
|
7346
|
+
return jsi::Value::undefined();
|
|
6693
7347
|
}
|
|
6694
|
-
jsi::Value NativeBark::
|
|
7348
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_free_void(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7349
|
+
ffi_bark_ffi_rust_future_free_void(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
7350
|
+
);
|
|
7351
|
+
|
|
7352
|
+
|
|
7353
|
+
return jsi::Value::undefined();
|
|
7354
|
+
}
|
|
7355
|
+
jsi::Value NativeBark::cpp_ffi_bark_ffi_rust_future_complete_void(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6695
7356
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6696
|
-
|
|
7357
|
+
ffi_bark_ffi_rust_future_complete_void(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]),
|
|
6697
7358
|
&status
|
|
6698
7359
|
);
|
|
6699
7360
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6700
7361
|
|
|
6701
7362
|
|
|
6702
|
-
return
|
|
7363
|
+
return jsi::Value::undefined();
|
|
6703
7364
|
}
|
|
6704
7365
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_func_extract_tx_from_psbt(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6705
7366
|
auto value = uniffi_bark_ffi_checksum_func_extract_tx_from_psbt(
|
|
@@ -6727,6 +7388,20 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_func_validate_mnemonic(jsi::
|
|
|
6727
7388
|
);
|
|
6728
7389
|
|
|
6729
7390
|
|
|
7391
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7392
|
+
}
|
|
7393
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7394
|
+
auto value = uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait(
|
|
7395
|
+
);
|
|
7396
|
+
|
|
7397
|
+
|
|
7398
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7399
|
+
}
|
|
7400
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_notificationholder_next_notification(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7401
|
+
auto value = uniffi_bark_ffi_checksum_method_notificationholder_next_notification(
|
|
7402
|
+
);
|
|
7403
|
+
|
|
7404
|
+
|
|
6730
7405
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6731
7406
|
}
|
|
6732
7407
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_onchainwallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6874,6 +7549,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_light
|
|
|
6874
7549
|
);
|
|
6875
7550
|
|
|
6876
7551
|
|
|
7552
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7553
|
+
}
|
|
7554
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7555
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_all_fee(
|
|
7556
|
+
);
|
|
7557
|
+
|
|
7558
|
+
|
|
6877
7559
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6878
7560
|
}
|
|
6879
7561
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6965,6 +7647,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_history(jsi::R
|
|
|
6965
7647
|
);
|
|
6966
7648
|
|
|
6967
7649
|
|
|
7650
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7651
|
+
}
|
|
7652
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7653
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(
|
|
7654
|
+
);
|
|
7655
|
+
|
|
7656
|
+
|
|
6968
7657
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6969
7658
|
}
|
|
6970
7659
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7070,6 +7759,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_next_round_sta
|
|
|
7070
7759
|
);
|
|
7071
7760
|
|
|
7072
7761
|
|
|
7762
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7763
|
+
}
|
|
7764
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_notifications(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7765
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_notifications(
|
|
7766
|
+
);
|
|
7767
|
+
|
|
7768
|
+
|
|
7073
7769
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7074
7770
|
}
|
|
7075
7771
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_offboard_all(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7112,6 +7808,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_peak_address(j
|
|
|
7112
7808
|
);
|
|
7113
7809
|
|
|
7114
7810
|
|
|
7811
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7812
|
+
}
|
|
7813
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_peek_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7814
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_peek_address(
|
|
7815
|
+
);
|
|
7816
|
+
|
|
7817
|
+
|
|
7115
7818
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
7116
7819
|
}
|
|
7117
7820
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|