@secondts/bark-react-native 0.1.0-beta.7 → 0.1.2-beta.13
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 +24 -0
- package/cpp/generated/bark.cpp +443 -12
- package/cpp/generated/bark.hpp +24 -2
- package/lib/commonjs/generated/bark-ffi.js.map +1 -1
- package/lib/commonjs/generated/bark.js +204 -9
- package/lib/commonjs/generated/bark.js.map +1 -1
- package/lib/module/generated/bark-ffi.js.map +1 -1
- package/lib/module/generated/bark.js +204 -9
- package/lib/module/generated/bark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts +24 -2
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark.d.ts +342 -152
- package/lib/typescript/commonjs/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark-ffi.d.ts +24 -2
- package/lib/typescript/module/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark.d.ts +342 -152
- package/lib/typescript/module/src/generated/bark.d.ts.map +1 -1
- package/package.json +6 -3
- package/plugin/tsconfig.tsbuildinfo +1 -1
- package/scripts/postinstall.js +8 -2
- package/src/generated/bark-ffi.ts +59 -2
- package/src/generated/bark.ts +456 -15
package/cpp/generated/bark.cpp
CHANGED
|
@@ -339,6 +339,10 @@ extern "C" {
|
|
|
339
339
|
RustBuffer fee_rate_sat_per_vb,
|
|
340
340
|
RustCallStatus *uniffi_out_err
|
|
341
341
|
);
|
|
342
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_fingerprint(
|
|
343
|
+
void * ptr,
|
|
344
|
+
RustCallStatus *uniffi_out_err
|
|
345
|
+
);
|
|
342
346
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_get_exit_status(
|
|
343
347
|
void * ptr,
|
|
344
348
|
RustBuffer vtxo_id,
|
|
@@ -389,10 +393,18 @@ extern "C" {
|
|
|
389
393
|
void * ptr,
|
|
390
394
|
RustCallStatus *uniffi_out_err
|
|
391
395
|
);
|
|
396
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(
|
|
397
|
+
void * ptr,
|
|
398
|
+
RustCallStatus *uniffi_out_err
|
|
399
|
+
);
|
|
392
400
|
void uniffi_bark_ffi_fn_method_wallet_maintenance(
|
|
393
401
|
void * ptr,
|
|
394
402
|
RustCallStatus *uniffi_out_err
|
|
395
403
|
);
|
|
404
|
+
void uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(
|
|
405
|
+
void * ptr,
|
|
406
|
+
RustCallStatus *uniffi_out_err
|
|
407
|
+
);
|
|
396
408
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(
|
|
397
409
|
void * ptr,
|
|
398
410
|
RustCallStatus *uniffi_out_err
|
|
@@ -402,10 +414,19 @@ extern "C" {
|
|
|
402
414
|
void * onchain_wallet,
|
|
403
415
|
RustCallStatus *uniffi_out_err
|
|
404
416
|
);
|
|
417
|
+
void uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(
|
|
418
|
+
void * ptr,
|
|
419
|
+
void * onchain_wallet,
|
|
420
|
+
RustCallStatus *uniffi_out_err
|
|
421
|
+
);
|
|
405
422
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(
|
|
406
423
|
void * ptr,
|
|
407
424
|
RustCallStatus *uniffi_out_err
|
|
408
425
|
);
|
|
426
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_network(
|
|
427
|
+
void * ptr,
|
|
428
|
+
RustCallStatus *uniffi_out_err
|
|
429
|
+
);
|
|
409
430
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_new_address(
|
|
410
431
|
void * ptr,
|
|
411
432
|
RustCallStatus *uniffi_out_err
|
|
@@ -414,6 +435,10 @@ extern "C" {
|
|
|
414
435
|
void * ptr,
|
|
415
436
|
RustCallStatus *uniffi_out_err
|
|
416
437
|
);
|
|
438
|
+
uint64_t uniffi_bark_ffi_fn_method_wallet_next_round_start_time(
|
|
439
|
+
void * ptr,
|
|
440
|
+
RustCallStatus *uniffi_out_err
|
|
441
|
+
);
|
|
417
442
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_offboard_all(
|
|
418
443
|
void * ptr,
|
|
419
444
|
RustBuffer bitcoin_address,
|
|
@@ -449,6 +474,14 @@ extern "C" {
|
|
|
449
474
|
uint32_t index,
|
|
450
475
|
RustCallStatus *uniffi_out_err
|
|
451
476
|
);
|
|
477
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(
|
|
478
|
+
void * ptr,
|
|
479
|
+
RustCallStatus *uniffi_out_err
|
|
480
|
+
);
|
|
481
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_boards(
|
|
482
|
+
void * ptr,
|
|
483
|
+
RustCallStatus *uniffi_out_err
|
|
484
|
+
);
|
|
452
485
|
uint64_t uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(
|
|
453
486
|
void * ptr,
|
|
454
487
|
RustCallStatus *uniffi_out_err
|
|
@@ -457,10 +490,18 @@ extern "C" {
|
|
|
457
490
|
void * ptr,
|
|
458
491
|
RustCallStatus *uniffi_out_err
|
|
459
492
|
);
|
|
493
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(
|
|
494
|
+
void * ptr,
|
|
495
|
+
RustCallStatus *uniffi_out_err
|
|
496
|
+
);
|
|
460
497
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(
|
|
461
498
|
void * ptr,
|
|
462
499
|
RustCallStatus *uniffi_out_err
|
|
463
500
|
);
|
|
501
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(
|
|
502
|
+
void * ptr,
|
|
503
|
+
RustCallStatus *uniffi_out_err
|
|
504
|
+
);
|
|
464
505
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_pending_round_states(
|
|
465
506
|
void * ptr,
|
|
466
507
|
RustCallStatus *uniffi_out_err
|
|
@@ -488,13 +529,18 @@ extern "C" {
|
|
|
488
529
|
RustBuffer vtxo_ids,
|
|
489
530
|
RustCallStatus *uniffi_out_err
|
|
490
531
|
);
|
|
532
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(
|
|
533
|
+
void * ptr,
|
|
534
|
+
RustBuffer vtxo_ids,
|
|
535
|
+
RustCallStatus *uniffi_out_err
|
|
536
|
+
);
|
|
491
537
|
RustBuffer uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(
|
|
492
538
|
void * ptr,
|
|
493
539
|
RustBuffer ark_address,
|
|
494
540
|
uint64_t amount_sats,
|
|
495
541
|
RustCallStatus *uniffi_out_err
|
|
496
542
|
);
|
|
497
|
-
RustBuffer
|
|
543
|
+
RustBuffer uniffi_bark_ffi_fn_method_wallet_send_onchain(
|
|
498
544
|
void * ptr,
|
|
499
545
|
RustBuffer address,
|
|
500
546
|
uint64_t amount_sats,
|
|
@@ -824,6 +870,8 @@ extern "C" {
|
|
|
824
870
|
);
|
|
825
871
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_drain_exits(
|
|
826
872
|
);
|
|
873
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_fingerprint(
|
|
874
|
+
);
|
|
827
875
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_get_exit_status(
|
|
828
876
|
);
|
|
829
877
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_get_exit_vtxos(
|
|
@@ -846,18 +894,28 @@ extern "C" {
|
|
|
846
894
|
);
|
|
847
895
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(
|
|
848
896
|
);
|
|
897
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(
|
|
898
|
+
);
|
|
849
899
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_maintenance(
|
|
850
900
|
);
|
|
901
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(
|
|
902
|
+
);
|
|
851
903
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh(
|
|
852
904
|
);
|
|
853
905
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain(
|
|
854
906
|
);
|
|
907
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(
|
|
908
|
+
);
|
|
855
909
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh(
|
|
856
910
|
);
|
|
911
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_network(
|
|
912
|
+
);
|
|
857
913
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_new_address(
|
|
858
914
|
);
|
|
859
915
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_new_address_with_index(
|
|
860
916
|
);
|
|
917
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(
|
|
918
|
+
);
|
|
861
919
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_offboard_all(
|
|
862
920
|
);
|
|
863
921
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos(
|
|
@@ -870,12 +928,20 @@ extern "C" {
|
|
|
870
928
|
);
|
|
871
929
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_peak_address(
|
|
872
930
|
);
|
|
931
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(
|
|
932
|
+
);
|
|
933
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_boards(
|
|
934
|
+
);
|
|
873
935
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats(
|
|
874
936
|
);
|
|
875
937
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives(
|
|
876
938
|
);
|
|
939
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(
|
|
940
|
+
);
|
|
877
941
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends(
|
|
878
942
|
);
|
|
943
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(
|
|
944
|
+
);
|
|
879
945
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_pending_round_states(
|
|
880
946
|
);
|
|
881
947
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_progress_exits(
|
|
@@ -888,9 +954,11 @@ extern "C" {
|
|
|
888
954
|
);
|
|
889
955
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos(
|
|
890
956
|
);
|
|
957
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(
|
|
958
|
+
);
|
|
891
959
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment(
|
|
892
960
|
);
|
|
893
|
-
uint16_t
|
|
961
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_send_onchain(
|
|
894
962
|
);
|
|
895
963
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs(
|
|
896
964
|
);
|
|
@@ -4123,6 +4191,14 @@ NativeBark::NativeBark(
|
|
|
4123
4191
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_drain_exits(rt, thisVal, args, count);
|
|
4124
4192
|
}
|
|
4125
4193
|
);
|
|
4194
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_fingerprint"] = jsi::Function::createFromHostFunction(
|
|
4195
|
+
rt,
|
|
4196
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_fingerprint"),
|
|
4197
|
+
1,
|
|
4198
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4199
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_fingerprint(rt, thisVal, args, count);
|
|
4200
|
+
}
|
|
4201
|
+
);
|
|
4126
4202
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_get_exit_status"] = jsi::Function::createFromHostFunction(
|
|
4127
4203
|
rt,
|
|
4128
4204
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_get_exit_status"),
|
|
@@ -4211,6 +4287,14 @@ NativeBark::NativeBark(
|
|
|
4211
4287
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(rt, thisVal, args, count);
|
|
4212
4288
|
}
|
|
4213
4289
|
);
|
|
4290
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier"] = jsi::Function::createFromHostFunction(
|
|
4291
|
+
rt,
|
|
4292
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier"),
|
|
4293
|
+
1,
|
|
4294
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4295
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(rt, thisVal, args, count);
|
|
4296
|
+
}
|
|
4297
|
+
);
|
|
4214
4298
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance"] = jsi::Function::createFromHostFunction(
|
|
4215
4299
|
rt,
|
|
4216
4300
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance"),
|
|
@@ -4219,6 +4303,14 @@ NativeBark::NativeBark(
|
|
|
4219
4303
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_maintenance(rt, thisVal, args, count);
|
|
4220
4304
|
}
|
|
4221
4305
|
);
|
|
4306
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_delegated"] = jsi::Function::createFromHostFunction(
|
|
4307
|
+
rt,
|
|
4308
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_delegated"),
|
|
4309
|
+
1,
|
|
4310
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4311
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(rt, thisVal, args, count);
|
|
4312
|
+
}
|
|
4313
|
+
);
|
|
4222
4314
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
4223
4315
|
rt,
|
|
4224
4316
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_refresh"),
|
|
@@ -4235,6 +4327,14 @@ NativeBark::NativeBark(
|
|
|
4235
4327
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(rt, thisVal, args, count);
|
|
4236
4328
|
}
|
|
4237
4329
|
);
|
|
4330
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated"] = jsi::Function::createFromHostFunction(
|
|
4331
|
+
rt,
|
|
4332
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated"),
|
|
4333
|
+
2,
|
|
4334
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4335
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(rt, thisVal, args, count);
|
|
4336
|
+
}
|
|
4337
|
+
);
|
|
4238
4338
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
4239
4339
|
rt,
|
|
4240
4340
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh"),
|
|
@@ -4243,6 +4343,14 @@ NativeBark::NativeBark(
|
|
|
4243
4343
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(rt, thisVal, args, count);
|
|
4244
4344
|
}
|
|
4245
4345
|
);
|
|
4346
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_network"] = jsi::Function::createFromHostFunction(
|
|
4347
|
+
rt,
|
|
4348
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_network"),
|
|
4349
|
+
1,
|
|
4350
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4351
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_network(rt, thisVal, args, count);
|
|
4352
|
+
}
|
|
4353
|
+
);
|
|
4246
4354
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_new_address"] = jsi::Function::createFromHostFunction(
|
|
4247
4355
|
rt,
|
|
4248
4356
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_new_address"),
|
|
@@ -4259,6 +4367,14 @@ NativeBark::NativeBark(
|
|
|
4259
4367
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_new_address_with_index(rt, thisVal, args, count);
|
|
4260
4368
|
}
|
|
4261
4369
|
);
|
|
4370
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_next_round_start_time"] = jsi::Function::createFromHostFunction(
|
|
4371
|
+
rt,
|
|
4372
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_next_round_start_time"),
|
|
4373
|
+
1,
|
|
4374
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4375
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_next_round_start_time(rt, thisVal, args, count);
|
|
4376
|
+
}
|
|
4377
|
+
);
|
|
4262
4378
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_offboard_all"] = jsi::Function::createFromHostFunction(
|
|
4263
4379
|
rt,
|
|
4264
4380
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_offboard_all"),
|
|
@@ -4307,6 +4423,22 @@ NativeBark::NativeBark(
|
|
|
4307
4423
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_peak_address(rt, thisVal, args, count);
|
|
4308
4424
|
}
|
|
4309
4425
|
);
|
|
4426
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos"] = jsi::Function::createFromHostFunction(
|
|
4427
|
+
rt,
|
|
4428
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos"),
|
|
4429
|
+
1,
|
|
4430
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4431
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(rt, thisVal, args, count);
|
|
4432
|
+
}
|
|
4433
|
+
);
|
|
4434
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_boards"] = jsi::Function::createFromHostFunction(
|
|
4435
|
+
rt,
|
|
4436
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_boards"),
|
|
4437
|
+
1,
|
|
4438
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4439
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_boards(rt, thisVal, args, count);
|
|
4440
|
+
}
|
|
4441
|
+
);
|
|
4310
4442
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats"] = jsi::Function::createFromHostFunction(
|
|
4311
4443
|
rt,
|
|
4312
4444
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats"),
|
|
@@ -4323,6 +4455,14 @@ NativeBark::NativeBark(
|
|
|
4323
4455
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(rt, thisVal, args, count);
|
|
4324
4456
|
}
|
|
4325
4457
|
);
|
|
4458
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos"] = jsi::Function::createFromHostFunction(
|
|
4459
|
+
rt,
|
|
4460
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos"),
|
|
4461
|
+
1,
|
|
4462
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4463
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(rt, thisVal, args, count);
|
|
4464
|
+
}
|
|
4465
|
+
);
|
|
4326
4466
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends"] = jsi::Function::createFromHostFunction(
|
|
4327
4467
|
rt,
|
|
4328
4468
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends"),
|
|
@@ -4331,6 +4471,14 @@ NativeBark::NativeBark(
|
|
|
4331
4471
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(rt, thisVal, args, count);
|
|
4332
4472
|
}
|
|
4333
4473
|
);
|
|
4474
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos"] = jsi::Function::createFromHostFunction(
|
|
4475
|
+
rt,
|
|
4476
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos"),
|
|
4477
|
+
1,
|
|
4478
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4479
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(rt, thisVal, args, count);
|
|
4480
|
+
}
|
|
4481
|
+
);
|
|
4334
4482
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pending_round_states"] = jsi::Function::createFromHostFunction(
|
|
4335
4483
|
rt,
|
|
4336
4484
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pending_round_states"),
|
|
@@ -4379,6 +4527,14 @@ NativeBark::NativeBark(
|
|
|
4379
4527
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(rt, thisVal, args, count);
|
|
4380
4528
|
}
|
|
4381
4529
|
);
|
|
4530
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated"] = jsi::Function::createFromHostFunction(
|
|
4531
|
+
rt,
|
|
4532
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated"),
|
|
4533
|
+
2,
|
|
4534
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4535
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(rt, thisVal, args, count);
|
|
4536
|
+
}
|
|
4537
|
+
);
|
|
4382
4538
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment"] = jsi::Function::createFromHostFunction(
|
|
4383
4539
|
rt,
|
|
4384
4540
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment"),
|
|
@@ -4387,12 +4543,12 @@ NativeBark::NativeBark(
|
|
|
4387
4543
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(rt, thisVal, args, count);
|
|
4388
4544
|
}
|
|
4389
4545
|
);
|
|
4390
|
-
props["
|
|
4546
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_send_onchain"] = jsi::Function::createFromHostFunction(
|
|
4391
4547
|
rt,
|
|
4392
|
-
jsi::PropNameID::forAscii(rt, "
|
|
4548
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_send_onchain"),
|
|
4393
4549
|
3,
|
|
4394
4550
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4395
|
-
return this->
|
|
4551
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_send_onchain(rt, thisVal, args, count);
|
|
4396
4552
|
}
|
|
4397
4553
|
);
|
|
4398
4554
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_sign_exit_claim_inputs"] = jsi::Function::createFromHostFunction(
|
|
@@ -4699,6 +4855,14 @@ NativeBark::NativeBark(
|
|
|
4699
4855
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_drain_exits(rt, thisVal, args, count);
|
|
4700
4856
|
}
|
|
4701
4857
|
);
|
|
4858
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_fingerprint"] = jsi::Function::createFromHostFunction(
|
|
4859
|
+
rt,
|
|
4860
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_fingerprint"),
|
|
4861
|
+
0,
|
|
4862
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4863
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_fingerprint(rt, thisVal, args, count);
|
|
4864
|
+
}
|
|
4865
|
+
);
|
|
4702
4866
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_status"] = jsi::Function::createFromHostFunction(
|
|
4703
4867
|
rt,
|
|
4704
4868
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_get_exit_status"),
|
|
@@ -4787,6 +4951,14 @@ NativeBark::NativeBark(
|
|
|
4787
4951
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(rt, thisVal, args, count);
|
|
4788
4952
|
}
|
|
4789
4953
|
);
|
|
4954
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier"] = jsi::Function::createFromHostFunction(
|
|
4955
|
+
rt,
|
|
4956
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier"),
|
|
4957
|
+
0,
|
|
4958
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4959
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(rt, thisVal, args, count);
|
|
4960
|
+
}
|
|
4961
|
+
);
|
|
4790
4962
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance"] = jsi::Function::createFromHostFunction(
|
|
4791
4963
|
rt,
|
|
4792
4964
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance"),
|
|
@@ -4795,6 +4967,14 @@ NativeBark::NativeBark(
|
|
|
4795
4967
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance(rt, thisVal, args, count);
|
|
4796
4968
|
}
|
|
4797
4969
|
);
|
|
4970
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated"] = jsi::Function::createFromHostFunction(
|
|
4971
|
+
rt,
|
|
4972
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated"),
|
|
4973
|
+
0,
|
|
4974
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4975
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(rt, thisVal, args, count);
|
|
4976
|
+
}
|
|
4977
|
+
);
|
|
4798
4978
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
4799
4979
|
rt,
|
|
4800
4980
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh"),
|
|
@@ -4811,6 +4991,14 @@ NativeBark::NativeBark(
|
|
|
4811
4991
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain(rt, thisVal, args, count);
|
|
4812
4992
|
}
|
|
4813
4993
|
);
|
|
4994
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated"] = jsi::Function::createFromHostFunction(
|
|
4995
|
+
rt,
|
|
4996
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated"),
|
|
4997
|
+
0,
|
|
4998
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4999
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(rt, thisVal, args, count);
|
|
5000
|
+
}
|
|
5001
|
+
);
|
|
4814
5002
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh"] = jsi::Function::createFromHostFunction(
|
|
4815
5003
|
rt,
|
|
4816
5004
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh"),
|
|
@@ -4819,6 +5007,14 @@ NativeBark::NativeBark(
|
|
|
4819
5007
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh(rt, thisVal, args, count);
|
|
4820
5008
|
}
|
|
4821
5009
|
);
|
|
5010
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_network"] = jsi::Function::createFromHostFunction(
|
|
5011
|
+
rt,
|
|
5012
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_network"),
|
|
5013
|
+
0,
|
|
5014
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5015
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_network(rt, thisVal, args, count);
|
|
5016
|
+
}
|
|
5017
|
+
);
|
|
4822
5018
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address"] = jsi::Function::createFromHostFunction(
|
|
4823
5019
|
rt,
|
|
4824
5020
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_new_address"),
|
|
@@ -4835,6 +5031,14 @@ NativeBark::NativeBark(
|
|
|
4835
5031
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_new_address_with_index(rt, thisVal, args, count);
|
|
4836
5032
|
}
|
|
4837
5033
|
);
|
|
5034
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time"] = jsi::Function::createFromHostFunction(
|
|
5035
|
+
rt,
|
|
5036
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time"),
|
|
5037
|
+
0,
|
|
5038
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5039
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(rt, thisVal, args, count);
|
|
5040
|
+
}
|
|
5041
|
+
);
|
|
4838
5042
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_all"] = jsi::Function::createFromHostFunction(
|
|
4839
5043
|
rt,
|
|
4840
5044
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_offboard_all"),
|
|
@@ -4883,6 +5087,22 @@ NativeBark::NativeBark(
|
|
|
4883
5087
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_peak_address(rt, thisVal, args, count);
|
|
4884
5088
|
}
|
|
4885
5089
|
);
|
|
5090
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5091
|
+
rt,
|
|
5092
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos"),
|
|
5093
|
+
0,
|
|
5094
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5095
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(rt, thisVal, args, count);
|
|
5096
|
+
}
|
|
5097
|
+
);
|
|
5098
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_boards"] = jsi::Function::createFromHostFunction(
|
|
5099
|
+
rt,
|
|
5100
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_boards"),
|
|
5101
|
+
0,
|
|
5102
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5103
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_boards(rt, thisVal, args, count);
|
|
5104
|
+
}
|
|
5105
|
+
);
|
|
4886
5106
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats"] = jsi::Function::createFromHostFunction(
|
|
4887
5107
|
rt,
|
|
4888
5108
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats"),
|
|
@@ -4899,6 +5119,14 @@ NativeBark::NativeBark(
|
|
|
4899
5119
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives(rt, thisVal, args, count);
|
|
4900
5120
|
}
|
|
4901
5121
|
);
|
|
5122
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5123
|
+
rt,
|
|
5124
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos"),
|
|
5125
|
+
0,
|
|
5126
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5127
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(rt, thisVal, args, count);
|
|
5128
|
+
}
|
|
5129
|
+
);
|
|
4902
5130
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends"] = jsi::Function::createFromHostFunction(
|
|
4903
5131
|
rt,
|
|
4904
5132
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends"),
|
|
@@ -4907,6 +5135,14 @@ NativeBark::NativeBark(
|
|
|
4907
5135
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends(rt, thisVal, args, count);
|
|
4908
5136
|
}
|
|
4909
5137
|
);
|
|
5138
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos"] = jsi::Function::createFromHostFunction(
|
|
5139
|
+
rt,
|
|
5140
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos"),
|
|
5141
|
+
0,
|
|
5142
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5143
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(rt, thisVal, args, count);
|
|
5144
|
+
}
|
|
5145
|
+
);
|
|
4910
5146
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_states"] = jsi::Function::createFromHostFunction(
|
|
4911
5147
|
rt,
|
|
4912
5148
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_pending_round_states"),
|
|
@@ -4955,6 +5191,14 @@ NativeBark::NativeBark(
|
|
|
4955
5191
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos(rt, thisVal, args, count);
|
|
4956
5192
|
}
|
|
4957
5193
|
);
|
|
5194
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated"] = jsi::Function::createFromHostFunction(
|
|
5195
|
+
rt,
|
|
5196
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated"),
|
|
5197
|
+
0,
|
|
5198
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5199
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(rt, thisVal, args, count);
|
|
5200
|
+
}
|
|
5201
|
+
);
|
|
4958
5202
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment"] = jsi::Function::createFromHostFunction(
|
|
4959
5203
|
rt,
|
|
4960
5204
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment"),
|
|
@@ -4963,12 +5207,12 @@ NativeBark::NativeBark(
|
|
|
4963
5207
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment(rt, thisVal, args, count);
|
|
4964
5208
|
}
|
|
4965
5209
|
);
|
|
4966
|
-
props["
|
|
5210
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_send_onchain"] = jsi::Function::createFromHostFunction(
|
|
4967
5211
|
rt,
|
|
4968
|
-
jsi::PropNameID::forAscii(rt, "
|
|
5212
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_send_onchain"),
|
|
4969
5213
|
0,
|
|
4970
5214
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4971
|
-
return this->
|
|
5215
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_send_onchain(rt, thisVal, args, count);
|
|
4972
5216
|
}
|
|
4973
5217
|
);
|
|
4974
5218
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs"] = jsi::Function::createFromHostFunction(
|
|
@@ -5574,6 +5818,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_drain_exits(jsi::Run
|
|
|
5574
5818
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5575
5819
|
|
|
5576
5820
|
|
|
5821
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5822
|
+
}
|
|
5823
|
+
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) {
|
|
5824
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5825
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_fingerprint(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
5826
|
+
&status
|
|
5827
|
+
);
|
|
5828
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5829
|
+
|
|
5830
|
+
|
|
5577
5831
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5578
5832
|
}
|
|
5579
5833
|
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) {
|
|
@@ -5684,6 +5938,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits
|
|
|
5684
5938
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5685
5939
|
|
|
5686
5940
|
|
|
5941
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5942
|
+
}
|
|
5943
|
+
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) {
|
|
5944
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5945
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
5946
|
+
&status
|
|
5947
|
+
);
|
|
5948
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5949
|
+
|
|
5950
|
+
|
|
5687
5951
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5688
5952
|
}
|
|
5689
5953
|
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) {
|
|
@@ -5694,6 +5958,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance(jsi::Run
|
|
|
5694
5958
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5695
5959
|
|
|
5696
5960
|
|
|
5961
|
+
return jsi::Value::undefined();
|
|
5962
|
+
}
|
|
5963
|
+
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) {
|
|
5964
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5965
|
+
uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
5966
|
+
&status
|
|
5967
|
+
);
|
|
5968
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5969
|
+
|
|
5970
|
+
|
|
5697
5971
|
return jsi::Value::undefined();
|
|
5698
5972
|
}
|
|
5699
5973
|
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) {
|
|
@@ -5714,6 +5988,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onc
|
|
|
5714
5988
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5715
5989
|
|
|
5716
5990
|
|
|
5991
|
+
return jsi::Value::undefined();
|
|
5992
|
+
}
|
|
5993
|
+
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) {
|
|
5994
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5995
|
+
uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]), uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[1]),
|
|
5996
|
+
&status
|
|
5997
|
+
);
|
|
5998
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5999
|
+
|
|
6000
|
+
|
|
5717
6001
|
return jsi::Value::undefined();
|
|
5718
6002
|
}
|
|
5719
6003
|
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) {
|
|
@@ -5724,6 +6008,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maint
|
|
|
5724
6008
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5725
6009
|
|
|
5726
6010
|
|
|
6011
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6012
|
+
}
|
|
6013
|
+
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) {
|
|
6014
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6015
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_network(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6016
|
+
&status
|
|
6017
|
+
);
|
|
6018
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6019
|
+
|
|
6020
|
+
|
|
5727
6021
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5728
6022
|
}
|
|
5729
6023
|
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) {
|
|
@@ -5746,6 +6040,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_new_address_with_ind
|
|
|
5746
6040
|
|
|
5747
6041
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5748
6042
|
}
|
|
6043
|
+
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) {
|
|
6044
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6045
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_next_round_start_time(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6046
|
+
&status
|
|
6047
|
+
);
|
|
6048
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6049
|
+
|
|
6050
|
+
|
|
6051
|
+
return uniffi_jsi::Bridging<uint64_t>::toJs(rt, callInvoker, value);
|
|
6052
|
+
}
|
|
5749
6053
|
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) {
|
|
5750
6054
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5751
6055
|
auto value = uniffi_bark_ffi_fn_method_wallet_offboard_all(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
@@ -5804,6 +6108,26 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_peak_address(jsi::Ru
|
|
|
5804
6108
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5805
6109
|
|
|
5806
6110
|
|
|
6111
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6112
|
+
}
|
|
6113
|
+
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) {
|
|
6114
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6115
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6116
|
+
&status
|
|
6117
|
+
);
|
|
6118
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6119
|
+
|
|
6120
|
+
|
|
6121
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6122
|
+
}
|
|
6123
|
+
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) {
|
|
6124
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6125
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_boards(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6126
|
+
&status
|
|
6127
|
+
);
|
|
6128
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6129
|
+
|
|
6130
|
+
|
|
5807
6131
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5808
6132
|
}
|
|
5809
6133
|
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) {
|
|
@@ -5824,6 +6148,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_re
|
|
|
5824
6148
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5825
6149
|
|
|
5826
6150
|
|
|
6151
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6152
|
+
}
|
|
6153
|
+
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) {
|
|
6154
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6155
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6156
|
+
&status
|
|
6157
|
+
);
|
|
6158
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6159
|
+
|
|
6160
|
+
|
|
5827
6161
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5828
6162
|
}
|
|
5829
6163
|
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) {
|
|
@@ -5834,6 +6168,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_se
|
|
|
5834
6168
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5835
6169
|
|
|
5836
6170
|
|
|
6171
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6172
|
+
}
|
|
6173
|
+
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) {
|
|
6174
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6175
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
6176
|
+
&status
|
|
6177
|
+
);
|
|
6178
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6179
|
+
|
|
6180
|
+
|
|
5837
6181
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5838
6182
|
}
|
|
5839
6183
|
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) {
|
|
@@ -5894,6 +6238,16 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(jsi::R
|
|
|
5894
6238
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
5895
6239
|
|
|
5896
6240
|
|
|
6241
|
+
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
6242
|
+
}
|
|
6243
|
+
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) {
|
|
6244
|
+
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
6245
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]),
|
|
6246
|
+
&status
|
|
6247
|
+
);
|
|
6248
|
+
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
6249
|
+
|
|
6250
|
+
|
|
5897
6251
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5898
6252
|
}
|
|
5899
6253
|
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) {
|
|
@@ -5906,9 +6260,9 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(
|
|
|
5906
6260
|
|
|
5907
6261
|
return uniffi::bark::Bridging<RustBuffer>::toJs(rt, callInvoker, value);
|
|
5908
6262
|
}
|
|
5909
|
-
jsi::Value NativeBark::
|
|
6263
|
+
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) {
|
|
5910
6264
|
RustCallStatus status = uniffi::bark::Bridging<RustCallStatus>::rustSuccess(rt);
|
|
5911
|
-
auto value =
|
|
6265
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_send_onchain(uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]),
|
|
5912
6266
|
&status
|
|
5913
6267
|
);
|
|
5914
6268
|
uniffi::bark::Bridging<RustCallStatus>::copyIntoJs(rt, callInvoker, status, args[count - 1]);
|
|
@@ -6234,6 +6588,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_drain_exits(js
|
|
|
6234
6588
|
);
|
|
6235
6589
|
|
|
6236
6590
|
|
|
6591
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6592
|
+
}
|
|
6593
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_fingerprint(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6594
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_fingerprint(
|
|
6595
|
+
);
|
|
6596
|
+
|
|
6597
|
+
|
|
6237
6598
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6238
6599
|
}
|
|
6239
6600
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_get_exit_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6311,6 +6672,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable
|
|
|
6311
6672
|
);
|
|
6312
6673
|
|
|
6313
6674
|
|
|
6675
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6676
|
+
}
|
|
6677
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6678
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(
|
|
6679
|
+
);
|
|
6680
|
+
|
|
6681
|
+
|
|
6314
6682
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6315
6683
|
}
|
|
6316
6684
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6318,6 +6686,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance(js
|
|
|
6318
6686
|
);
|
|
6319
6687
|
|
|
6320
6688
|
|
|
6689
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6690
|
+
}
|
|
6691
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6692
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(
|
|
6693
|
+
);
|
|
6694
|
+
|
|
6695
|
+
|
|
6321
6696
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6322
6697
|
}
|
|
6323
6698
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6332,6 +6707,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_wi
|
|
|
6332
6707
|
);
|
|
6333
6708
|
|
|
6334
6709
|
|
|
6710
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6711
|
+
}
|
|
6712
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6713
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(
|
|
6714
|
+
);
|
|
6715
|
+
|
|
6716
|
+
|
|
6335
6717
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6336
6718
|
}
|
|
6337
6719
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6339,6 +6721,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule
|
|
|
6339
6721
|
);
|
|
6340
6722
|
|
|
6341
6723
|
|
|
6724
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6725
|
+
}
|
|
6726
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_network(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6727
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_network(
|
|
6728
|
+
);
|
|
6729
|
+
|
|
6730
|
+
|
|
6342
6731
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6343
6732
|
}
|
|
6344
6733
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_new_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6353,6 +6742,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_new_address_wi
|
|
|
6353
6742
|
);
|
|
6354
6743
|
|
|
6355
6744
|
|
|
6745
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6746
|
+
}
|
|
6747
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6748
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(
|
|
6749
|
+
);
|
|
6750
|
+
|
|
6751
|
+
|
|
6356
6752
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6357
6753
|
}
|
|
6358
6754
|
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) {
|
|
@@ -6395,6 +6791,20 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_peak_address(j
|
|
|
6395
6791
|
);
|
|
6396
6792
|
|
|
6397
6793
|
|
|
6794
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6795
|
+
}
|
|
6796
|
+
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) {
|
|
6797
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(
|
|
6798
|
+
);
|
|
6799
|
+
|
|
6800
|
+
|
|
6801
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6802
|
+
}
|
|
6803
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_boards(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6804
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_pending_boards(
|
|
6805
|
+
);
|
|
6806
|
+
|
|
6807
|
+
|
|
6398
6808
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6399
6809
|
}
|
|
6400
6810
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6409,6 +6819,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightn
|
|
|
6409
6819
|
);
|
|
6410
6820
|
|
|
6411
6821
|
|
|
6822
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6823
|
+
}
|
|
6824
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6825
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(
|
|
6826
|
+
);
|
|
6827
|
+
|
|
6828
|
+
|
|
6412
6829
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6413
6830
|
}
|
|
6414
6831
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6416,6 +6833,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightn
|
|
|
6416
6833
|
);
|
|
6417
6834
|
|
|
6418
6835
|
|
|
6836
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6837
|
+
}
|
|
6838
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6839
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(
|
|
6840
|
+
);
|
|
6841
|
+
|
|
6842
|
+
|
|
6419
6843
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6420
6844
|
}
|
|
6421
6845
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_states(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6458,6 +6882,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos(
|
|
|
6458
6882
|
);
|
|
6459
6883
|
|
|
6460
6884
|
|
|
6885
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6886
|
+
}
|
|
6887
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6888
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(
|
|
6889
|
+
);
|
|
6890
|
+
|
|
6891
|
+
|
|
6461
6892
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6462
6893
|
}
|
|
6463
6894
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -6467,8 +6898,8 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_pa
|
|
|
6467
6898
|
|
|
6468
6899
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
6469
6900
|
}
|
|
6470
|
-
jsi::Value NativeBark::
|
|
6471
|
-
auto value =
|
|
6901
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_send_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
6902
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_send_onchain(
|
|
6472
6903
|
);
|
|
6473
6904
|
|
|
6474
6905
|
|