@breeztech/breez-sdk-spark-react-native 0.18.0-dev4 → 0.19.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breeztech/breez-sdk-spark-react-native",
3
- "version": "0.18.0-dev4",
3
+ "version": "0.19.0",
4
4
  "description": "React Native bindings for the Breez SDK - Nodeless (Spark Implementation)",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/commonjs/index.js",
@@ -209,7 +209,7 @@
209
209
  "version": "0.49.0"
210
210
  },
211
211
  "checksums": {
212
- "android": "fd65c68d895751af0f17cc47d231477c336e666ac011243ff1a19f839ab83b05",
213
- "ios": "ce2c643c155e5fc48d7b702394047d787b536ade23c0f1dc8954ad9c35ddf5c6"
212
+ "android": "8f4cc1d7ca3efd0c7bf737f02654dd5ce7f92d9af116cea77dc5be70ab08b4b9",
213
+ "ios": "0a1c59f6bc32ce9e4f0f7c38f3d5ba96b92d3fe7627914f5c0be6bbe56b9c2b2"
214
214
  }
215
215
  }
@@ -73,6 +73,14 @@ interface NativeModuleInterface {
73
73
  ptr: bigint,
74
74
  request: Uint8Array
75
75
  ): bigint;
76
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_build_unsigned_lnurl_pay_package(
77
+ ptr: bigint,
78
+ request: Uint8Array
79
+ ): bigint;
80
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_build_unsigned_transfer_package(
81
+ ptr: bigint,
82
+ request: Uint8Array
83
+ ): bigint;
76
84
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_buy_bitcoin(
77
85
  ptr: bigint,
78
86
  request: Uint8Array
@@ -186,6 +194,14 @@ interface NativeModuleInterface {
186
194
  ptr: bigint,
187
195
  request: Uint8Array
188
196
  ): bigint;
197
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_publish_signed_lnurl_pay_package(
198
+ ptr: bigint,
199
+ request: Uint8Array
200
+ ): bigint;
201
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_publish_signed_transfer_package(
202
+ ptr: bigint,
203
+ request: Uint8Array
204
+ ): bigint;
189
205
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_receive_payment(
190
206
  ptr: bigint,
191
207
  request: Uint8Array
@@ -281,6 +297,36 @@ interface NativeModuleInterface {
281
297
  message: Uint8Array,
282
298
  path: Uint8Array
283
299
  ): bigint;
300
+ ubrn_uniffi_breez_sdk_spark_fn_clone_externalsigningsigner(
301
+ ptr: bigint,
302
+ uniffi_out_err: UniffiRustCallStatus
303
+ ): bigint;
304
+ ubrn_uniffi_breez_sdk_spark_fn_free_externalsigningsigner(
305
+ ptr: bigint,
306
+ uniffi_out_err: UniffiRustCallStatus
307
+ ): void;
308
+ ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsigningsigner(
309
+ vtable: UniffiVTableCallbackInterfaceExternalSigningSigner
310
+ ): void;
311
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_derive_public_key(
312
+ ptr: bigint,
313
+ path: Uint8Array
314
+ ): bigint;
315
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_ecdsa(
316
+ ptr: bigint,
317
+ message: Uint8Array,
318
+ path: Uint8Array
319
+ ): bigint;
320
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_ecdsa_recoverable(
321
+ ptr: bigint,
322
+ message: Uint8Array,
323
+ path: Uint8Array
324
+ ): bigint;
325
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_hash_schnorr(
326
+ ptr: bigint,
327
+ hash: Uint8Array,
328
+ path: Uint8Array
329
+ ): bigint;
284
330
  ubrn_uniffi_breez_sdk_spark_fn_clone_externalsparksigner(
285
331
  ptr: bigint,
286
332
  uniffi_out_err: UniffiRustCallStatus
@@ -299,6 +345,10 @@ interface NativeModuleInterface {
299
345
  ptr: bigint,
300
346
  leafId: Uint8Array
301
347
  ): bigint;
348
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_is_remote(
349
+ ptr: bigint,
350
+ uniffi_out_err: UniffiRustCallStatus
351
+ ): number;
302
352
  ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_get_static_deposit_public_key(
303
353
  ptr: bigint,
304
354
  index: number
@@ -513,6 +563,12 @@ interface NativeModuleInterface {
513
563
  sparkSigner: bigint,
514
564
  uniffi_out_err: UniffiRustCallStatus
515
565
  ): bigint;
566
+ ubrn_uniffi_breez_sdk_spark_fn_constructor_sdkbuilder_new_with_signing_only_signer(
567
+ config: Uint8Array,
568
+ breezSigner: bigint,
569
+ sparkSigner: bigint,
570
+ uniffi_out_err: UniffiRustCallStatus
571
+ ): bigint;
516
572
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_build(ptr: bigint): bigint;
517
573
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_account_number(
518
574
  ptr: bigint,
@@ -544,6 +600,10 @@ interface NativeModuleInterface {
544
600
  apiType: Uint8Array,
545
601
  credentials: Uint8Array
546
602
  ): bigint;
603
+ ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_session_store(
604
+ ptr: bigint,
605
+ sessionStore: bigint
606
+ ): bigint;
547
607
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_shared_context(
548
608
  ptr: bigint,
549
609
  context: bigint
@@ -779,9 +839,15 @@ interface NativeModuleInterface {
779
839
  ubrn_uniffi_breez_sdk_spark_fn_func_connect_with_signer(
780
840
  request: Uint8Array
781
841
  ): bigint;
842
+ ubrn_uniffi_breez_sdk_spark_fn_func_connect_with_signing_only_signer(
843
+ request: Uint8Array
844
+ ): bigint;
782
845
  ubrn_uniffi_breez_sdk_spark_fn_func_create_turnkey_signer(
783
846
  config: Uint8Array
784
847
  ): bigint;
848
+ ubrn_uniffi_breez_sdk_spark_fn_func_create_turnkey_signing_only_signer(
849
+ config: Uint8Array
850
+ ): bigint;
785
851
  ubrn_uniffi_breez_sdk_spark_fn_func_custom_storage(
786
852
  storage: bigint,
787
853
  uniffi_out_err: UniffiRustCallStatus
@@ -801,6 +867,11 @@ interface NativeModuleInterface {
801
867
  network: Uint8Array,
802
868
  uniffi_out_err: UniffiRustCallStatus
803
869
  ): Uint8Array;
870
+ ubrn_uniffi_breez_sdk_spark_fn_func_default_session_store(
871
+ backend: bigint,
872
+ network: Uint8Array,
873
+ identity: Uint8Array
874
+ ): bigint;
804
875
  ubrn_uniffi_breez_sdk_spark_fn_func_default_storage(
805
876
  storageDir: Uint8Array,
806
877
  uniffi_out_err: UniffiRustCallStatus
@@ -966,11 +1037,14 @@ interface NativeModuleInterface {
966
1037
  ): void;
967
1038
  ubrn_uniffi_breez_sdk_spark_checksum_func_connect(): number;
968
1039
  ubrn_uniffi_breez_sdk_spark_checksum_func_connect_with_signer(): number;
1040
+ ubrn_uniffi_breez_sdk_spark_checksum_func_connect_with_signing_only_signer(): number;
969
1041
  ubrn_uniffi_breez_sdk_spark_checksum_func_create_turnkey_signer(): number;
1042
+ ubrn_uniffi_breez_sdk_spark_checksum_func_create_turnkey_signing_only_signer(): number;
970
1043
  ubrn_uniffi_breez_sdk_spark_checksum_func_custom_storage(): number;
971
1044
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_config(): number;
972
1045
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_external_signers(): number;
973
1046
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_server_config(): number;
1047
+ ubrn_uniffi_breez_sdk_spark_checksum_func_default_session_store(): number;
974
1048
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_storage(): number;
975
1049
  ubrn_uniffi_breez_sdk_spark_checksum_func_get_spark_status(): number;
976
1050
  ubrn_uniffi_breez_sdk_spark_checksum_func_init_logging(): number;
@@ -984,6 +1058,8 @@ interface NativeModuleInterface {
984
1058
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_add_contact(): number;
985
1059
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_add_event_listener(): number;
986
1060
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_authorize_lightning_address_transfer(): number;
1061
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_build_unsigned_lnurl_pay_package(): number;
1062
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_build_unsigned_transfer_package(): number;
987
1063
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_buy_bitcoin(): number;
988
1064
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_address_available(): number;
989
1065
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_message(): number;
@@ -1014,6 +1090,8 @@ interface NativeModuleInterface {
1014
1090
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_parse(): number;
1015
1091
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_prepare_lnurl_pay(): number;
1016
1092
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_prepare_send_payment(): number;
1093
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_publish_signed_lnurl_pay_package(): number;
1094
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_publish_signed_transfer_package(): number;
1017
1095
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_receive_payment(): number;
1018
1096
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_recommended_fees(): number;
1019
1097
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_refund_deposit(): number;
@@ -1034,8 +1112,13 @@ interface NativeModuleInterface {
1034
1112
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_decrypt_ecies(): number;
1035
1113
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_sign_hash_schnorr(): number;
1036
1114
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_hmac_sha256(): number;
1115
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_derive_public_key(): number;
1116
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_ecdsa(): number;
1117
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_ecdsa_recoverable(): number;
1118
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_hash_schnorr(): number;
1037
1119
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_identity_public_key(): number;
1038
1120
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_public_key_for_leaf(): number;
1121
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_is_remote(): number;
1039
1122
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_static_deposit_public_key(): number;
1040
1123
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_authentication_challenge(): number;
1041
1124
  ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_message(): number;
@@ -1075,6 +1158,7 @@ interface NativeModuleInterface {
1075
1158
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_lnurl_client(): number;
1076
1159
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_payment_observer(): number;
1077
1160
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_rest_chain_service(): number;
1161
+ ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_session_store(): number;
1078
1162
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_shared_context(): number;
1079
1163
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_storage(): number;
1080
1164
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_storage_backend(): number;
@@ -1121,6 +1205,7 @@ interface NativeModuleInterface {
1121
1205
  ubrn_uniffi_breez_sdk_spark_checksum_constructor_passkeyclient_new(): number;
1122
1206
  ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new(): number;
1123
1207
  ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new_with_signer(): number;
1208
+ ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new_with_signing_only_signer(): number;
1124
1209
  ubrn_uniffi_breez_sdk_spark_checksum_method_eventlistener_on_event(): number;
1125
1210
  ubrn_uniffi_breez_sdk_spark_checksum_method_logger_log(): number;
1126
1211
  ubrn_ffi_breez_sdk_spark_uniffi_contract_version(): number;
@@ -1136,6 +1221,10 @@ interface NativeModuleInterface {
1136
1221
  pointer: bigint,
1137
1222
  uniffi_out_err: UniffiRustCallStatus
1138
1223
  ): UniffiRustArcPtr;
1224
+ ubrn_uniffi_internal_fn_method_externalsigningsigner_ffi__bless_pointer(
1225
+ pointer: bigint,
1226
+ uniffi_out_err: UniffiRustCallStatus
1227
+ ): UniffiRustArcPtr;
1139
1228
  ubrn_uniffi_internal_fn_method_externalsparksigner_ffi__bless_pointer(
1140
1229
  pointer: bigint,
1141
1230
  uniffi_out_err: UniffiRustCallStatus
@@ -1404,44 +1493,68 @@ type UniffiCallbackInterfaceExternalBreezSignerMethod6 = (
1404
1493
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1405
1494
  uniffiCallbackData: bigint
1406
1495
  ) => UniffiForeignFuture;
1407
- type UniffiCallbackInterfaceExternalSparkSignerMethod0 = (
1496
+ type UniffiCallbackInterfaceExternalSigningSignerMethod0 = (
1408
1497
  uniffiHandle: bigint,
1498
+ path: Uint8Array,
1409
1499
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1410
1500
  uniffiCallbackData: bigint
1411
1501
  ) => UniffiForeignFuture;
1412
- type UniffiCallbackInterfaceExternalSparkSignerMethod1 = (
1502
+ type UniffiCallbackInterfaceExternalSigningSignerMethod1 = (
1413
1503
  uniffiHandle: bigint,
1414
- leafId: Uint8Array,
1504
+ message: Uint8Array,
1505
+ path: Uint8Array,
1415
1506
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1416
1507
  uniffiCallbackData: bigint
1417
1508
  ) => UniffiForeignFuture;
1418
- type UniffiCallbackInterfaceExternalSparkSignerMethod2 = (
1509
+ type UniffiCallbackInterfaceExternalSigningSignerMethod2 = (
1419
1510
  uniffiHandle: bigint,
1420
- index: number,
1511
+ message: Uint8Array,
1512
+ path: Uint8Array,
1513
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1514
+ uniffiCallbackData: bigint
1515
+ ) => UniffiForeignFuture;
1516
+ type UniffiCallbackInterfaceExternalSigningSignerMethod3 = (
1517
+ uniffiHandle: bigint,
1518
+ hash: Uint8Array,
1519
+ path: Uint8Array,
1520
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1521
+ uniffiCallbackData: bigint
1522
+ ) => UniffiForeignFuture;
1523
+ type UniffiCallbackInterfaceExternalSparkSignerMethod0 = (
1524
+ uniffiHandle: bigint,
1525
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1526
+ uniffiCallbackData: bigint
1527
+ ) => UniffiForeignFuture;
1528
+ type UniffiCallbackInterfaceExternalSparkSignerMethod1 = (
1529
+ uniffiHandle: bigint,
1530
+ leafId: Uint8Array,
1421
1531
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1422
1532
  uniffiCallbackData: bigint
1423
1533
  ) => UniffiForeignFuture;
1534
+ type UniffiCallbackInterfaceExternalSparkSignerMethod2 = (
1535
+ uniffiHandle: bigint
1536
+ ) => UniffiResult<number>;
1424
1537
  type UniffiCallbackInterfaceExternalSparkSignerMethod3 = (
1425
1538
  uniffiHandle: bigint,
1426
- challenge: Uint8Array,
1539
+ index: number,
1427
1540
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1428
1541
  uniffiCallbackData: bigint
1429
1542
  ) => UniffiForeignFuture;
1430
1543
  type UniffiCallbackInterfaceExternalSparkSignerMethod4 = (
1431
1544
  uniffiHandle: bigint,
1432
- message: Uint8Array,
1545
+ challenge: Uint8Array,
1433
1546
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1434
1547
  uniffiCallbackData: bigint
1435
1548
  ) => UniffiForeignFuture;
1436
1549
  type UniffiCallbackInterfaceExternalSparkSignerMethod5 = (
1437
1550
  uniffiHandle: bigint,
1438
- jobs: Uint8Array,
1551
+ message: Uint8Array,
1439
1552
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1440
1553
  uniffiCallbackData: bigint
1441
1554
  ) => UniffiForeignFuture;
1442
1555
  type UniffiCallbackInterfaceExternalSparkSignerMethod6 = (
1443
1556
  uniffiHandle: bigint,
1444
- request: Uint8Array,
1557
+ jobs: Uint8Array,
1445
1558
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1446
1559
  uniffiCallbackData: bigint
1447
1560
  ) => UniffiForeignFuture;
@@ -1493,6 +1606,12 @@ type UniffiCallbackInterfaceExternalSparkSignerMethod14 = (
1493
1606
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1494
1607
  uniffiCallbackData: bigint
1495
1608
  ) => UniffiForeignFuture;
1609
+ type UniffiCallbackInterfaceExternalSparkSignerMethod15 = (
1610
+ uniffiHandle: bigint,
1611
+ request: Uint8Array,
1612
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1613
+ uniffiCallbackData: bigint
1614
+ ) => UniffiForeignFuture;
1496
1615
  type UniffiCallbackInterfaceFiatServiceMethod0 = (
1497
1616
  uniffiHandle: bigint,
1498
1617
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
@@ -1793,22 +1912,30 @@ export type UniffiVTableCallbackInterfaceExternalBreezSigner = {
1793
1912
  hmacSha256: UniffiCallbackInterfaceExternalBreezSignerMethod6;
1794
1913
  uniffiFree: UniffiCallbackInterfaceFree;
1795
1914
  };
1915
+ export type UniffiVTableCallbackInterfaceExternalSigningSigner = {
1916
+ derivePublicKey: UniffiCallbackInterfaceExternalSigningSignerMethod0;
1917
+ signEcdsa: UniffiCallbackInterfaceExternalSigningSignerMethod1;
1918
+ signEcdsaRecoverable: UniffiCallbackInterfaceExternalSigningSignerMethod2;
1919
+ signHashSchnorr: UniffiCallbackInterfaceExternalSigningSignerMethod3;
1920
+ uniffiFree: UniffiCallbackInterfaceFree;
1921
+ };
1796
1922
  export type UniffiVTableCallbackInterfaceExternalSparkSigner = {
1797
1923
  getIdentityPublicKey: UniffiCallbackInterfaceExternalSparkSignerMethod0;
1798
1924
  getPublicKeyForLeaf: UniffiCallbackInterfaceExternalSparkSignerMethod1;
1799
- getStaticDepositPublicKey: UniffiCallbackInterfaceExternalSparkSignerMethod2;
1800
- signAuthenticationChallenge: UniffiCallbackInterfaceExternalSparkSignerMethod3;
1801
- signMessage: UniffiCallbackInterfaceExternalSparkSignerMethod4;
1802
- signFrost: UniffiCallbackInterfaceExternalSparkSignerMethod5;
1803
- prepareTransfer: UniffiCallbackInterfaceExternalSparkSignerMethod6;
1804
- prepareClaim: UniffiCallbackInterfaceExternalSparkSignerMethod7;
1805
- prepareLightningReceive: UniffiCallbackInterfaceExternalSparkSignerMethod8;
1806
- prepareStaticDeposit: UniffiCallbackInterfaceExternalSparkSignerMethod9;
1807
- startStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod10;
1808
- signStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod11;
1809
- signSparkInvoice: UniffiCallbackInterfaceExternalSparkSignerMethod12;
1810
- prepareTokenTransaction: UniffiCallbackInterfaceExternalSparkSignerMethod13;
1811
- prepareStaticDepositClaim: UniffiCallbackInterfaceExternalSparkSignerMethod14;
1925
+ isRemote: UniffiCallbackInterfaceExternalSparkSignerMethod2;
1926
+ getStaticDepositPublicKey: UniffiCallbackInterfaceExternalSparkSignerMethod3;
1927
+ signAuthenticationChallenge: UniffiCallbackInterfaceExternalSparkSignerMethod4;
1928
+ signMessage: UniffiCallbackInterfaceExternalSparkSignerMethod5;
1929
+ signFrost: UniffiCallbackInterfaceExternalSparkSignerMethod6;
1930
+ prepareTransfer: UniffiCallbackInterfaceExternalSparkSignerMethod7;
1931
+ prepareClaim: UniffiCallbackInterfaceExternalSparkSignerMethod8;
1932
+ prepareLightningReceive: UniffiCallbackInterfaceExternalSparkSignerMethod9;
1933
+ prepareStaticDeposit: UniffiCallbackInterfaceExternalSparkSignerMethod10;
1934
+ startStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod11;
1935
+ signStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod12;
1936
+ signSparkInvoice: UniffiCallbackInterfaceExternalSparkSignerMethod13;
1937
+ prepareTokenTransaction: UniffiCallbackInterfaceExternalSparkSignerMethod14;
1938
+ prepareStaticDepositClaim: UniffiCallbackInterfaceExternalSparkSignerMethod15;
1812
1939
  uniffiFree: UniffiCallbackInterfaceFree;
1813
1940
  };
1814
1941
  export type UniffiVTableCallbackInterfaceFiatService = {