@breeztech/breez-sdk-spark-react-native 0.8.2 → 0.9.1
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/lib/commonjs/generated/breez_sdk_spark.js +60 -17
- package/lib/commonjs/generated/breez_sdk_spark.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark.js +59 -16
- package/lib/module/generated/breez_sdk_spark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts +193 -22
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts +193 -22
- package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/generated/breez_sdk_spark.ts +284 -25
|
@@ -778,6 +778,19 @@ export type Config = {
|
|
|
778
778
|
* More leaves allow payments to be made without needing a swap, reducing payment latency.
|
|
779
779
|
*/
|
|
780
780
|
optimizationConfig: OptimizationConfig;
|
|
781
|
+
/**
|
|
782
|
+
* Configuration for automatic conversion of Bitcoin to stable tokens.
|
|
783
|
+
*
|
|
784
|
+
* When set, received sats will be automatically converted to the specified token
|
|
785
|
+
* once the balance exceeds the threshold.
|
|
786
|
+
*/
|
|
787
|
+
stableBalanceConfig: StableBalanceConfig | undefined;
|
|
788
|
+
/**
|
|
789
|
+
* Maximum number of concurrent transfer claims.
|
|
790
|
+
*
|
|
791
|
+
* Default is 4. Increase for server environments with high incoming payment volume.
|
|
792
|
+
*/
|
|
793
|
+
maxConcurrentClaims: number;
|
|
781
794
|
};
|
|
782
795
|
/**
|
|
783
796
|
* Generated factory for {@link Config} record objects.
|
|
@@ -2838,11 +2851,15 @@ export type OptimizationConfig = {
|
|
|
2838
2851
|
*/
|
|
2839
2852
|
autoEnabled: boolean;
|
|
2840
2853
|
/**
|
|
2841
|
-
* The desired multiplicity for the leaf set.
|
|
2854
|
+
* The desired multiplicity for the leaf set.
|
|
2842
2855
|
*
|
|
2843
2856
|
* Setting this to 0 will optimize for maximizing unilateral exit.
|
|
2844
2857
|
* Higher values will optimize for minimizing transfer swaps, with higher values
|
|
2845
|
-
* being more aggressive.
|
|
2858
|
+
* being more aggressive and allowing better TPS rates.
|
|
2859
|
+
*
|
|
2860
|
+
* For end-user wallets, values of 1-5 are recommended. Values above 5 are
|
|
2861
|
+
* intended for high-throughput server environments and are not recommended
|
|
2862
|
+
* for end-user wallets due to significantly higher unilateral exit costs.
|
|
2846
2863
|
*
|
|
2847
2864
|
* Default value is 1.
|
|
2848
2865
|
*/
|
|
@@ -3999,6 +4016,64 @@ export declare const SparkStatus: Readonly<{
|
|
|
3999
4016
|
*/
|
|
4000
4017
|
defaults: () => Partial<SparkStatus>;
|
|
4001
4018
|
}>;
|
|
4019
|
+
/**
|
|
4020
|
+
* Configuration for automatic conversion of Bitcoin to stable tokens.
|
|
4021
|
+
*
|
|
4022
|
+
* When configured, the SDK automatically monitors the Bitcoin balance after each
|
|
4023
|
+
* wallet sync. When the balance exceeds the configured threshold plus the reserved
|
|
4024
|
+
* amount, the SDK automatically converts the excess balance (above the reserve)
|
|
4025
|
+
* to the specified stable token.
|
|
4026
|
+
*
|
|
4027
|
+
* When the balance is held in a stable token, Bitcoin payments can still be sent.
|
|
4028
|
+
* The SDK automatically detects when there's not enough Bitcoin balance to cover a
|
|
4029
|
+
* payment and auto-populates the token-to-Bitcoin conversion options to facilitate
|
|
4030
|
+
* the payment.
|
|
4031
|
+
*/
|
|
4032
|
+
export type StableBalanceConfig = {
|
|
4033
|
+
/**
|
|
4034
|
+
* The token identifier to convert Bitcoin to (required).
|
|
4035
|
+
*/
|
|
4036
|
+
tokenIdentifier: string;
|
|
4037
|
+
/**
|
|
4038
|
+
* The minimum sats balance that triggers auto-conversion.
|
|
4039
|
+
*
|
|
4040
|
+
* If not provided, uses the minimum from conversion limits.
|
|
4041
|
+
* If provided but less than the conversion limit minimum, the limit minimum is used.
|
|
4042
|
+
*/
|
|
4043
|
+
thresholdSats: /*u64*/ bigint | undefined;
|
|
4044
|
+
/**
|
|
4045
|
+
* Maximum slippage in basis points (1/100 of a percent).
|
|
4046
|
+
*
|
|
4047
|
+
* Defaults to 50 bps (0.5%) if not set.
|
|
4048
|
+
*/
|
|
4049
|
+
maxSlippageBps: /*u32*/ number | undefined;
|
|
4050
|
+
/**
|
|
4051
|
+
* Amount of sats to keep as Bitcoin and not convert to stable tokens.
|
|
4052
|
+
*
|
|
4053
|
+
* This reserve ensures you can send Bitcoin payments without hitting
|
|
4054
|
+
* the minimum conversion limit. Defaults to the conversion minimum if not set.
|
|
4055
|
+
*/
|
|
4056
|
+
reservedSats: /*u64*/ bigint | undefined;
|
|
4057
|
+
};
|
|
4058
|
+
/**
|
|
4059
|
+
* Generated factory for {@link StableBalanceConfig} record objects.
|
|
4060
|
+
*/
|
|
4061
|
+
export declare const StableBalanceConfig: Readonly<{
|
|
4062
|
+
/**
|
|
4063
|
+
* Create a frozen instance of {@link StableBalanceConfig}, with defaults specified
|
|
4064
|
+
* in Rust, in the {@link breez_sdk_spark} crate.
|
|
4065
|
+
*/
|
|
4066
|
+
create: (partial: Partial<StableBalanceConfig> & Required<Omit<StableBalanceConfig, "maxSlippageBps" | "thresholdSats" | "reservedSats">>) => StableBalanceConfig;
|
|
4067
|
+
/**
|
|
4068
|
+
* Create a frozen instance of {@link StableBalanceConfig}, with defaults specified
|
|
4069
|
+
* in Rust, in the {@link breez_sdk_spark} crate.
|
|
4070
|
+
*/
|
|
4071
|
+
new: (partial: Partial<StableBalanceConfig> & Required<Omit<StableBalanceConfig, "maxSlippageBps" | "thresholdSats" | "reservedSats">>) => StableBalanceConfig;
|
|
4072
|
+
/**
|
|
4073
|
+
* Defaults specified in the {@link breez_sdk_spark} crate.
|
|
4074
|
+
*/
|
|
4075
|
+
defaults: () => Partial<StableBalanceConfig>;
|
|
4076
|
+
}>;
|
|
4002
4077
|
/**
|
|
4003
4078
|
* Settings for the symbol representation of a currency
|
|
4004
4079
|
*/
|
|
@@ -4844,7 +4919,8 @@ export declare const ChainServiceError: Readonly<{
|
|
|
4844
4919
|
export type ChainServiceError = InstanceType<(typeof ChainServiceError)[keyof Omit<typeof ChainServiceError, 'instanceOf'>]>;
|
|
4845
4920
|
export declare enum ConversionPurpose_Tags {
|
|
4846
4921
|
OngoingPayment = "OngoingPayment",
|
|
4847
|
-
SelfTransfer = "SelfTransfer"
|
|
4922
|
+
SelfTransfer = "SelfTransfer",
|
|
4923
|
+
AutoConversion = "AutoConversion"
|
|
4848
4924
|
}
|
|
4849
4925
|
/**
|
|
4850
4926
|
* The purpose of the conversion, which is used to provide context for the conversion
|
|
@@ -4921,6 +4997,32 @@ export declare const ConversionPurpose: Readonly<{
|
|
|
4921
4997
|
readonly [uniffiTypeNameSymbol]: "ConversionPurpose";
|
|
4922
4998
|
};
|
|
4923
4999
|
};
|
|
5000
|
+
AutoConversion: {
|
|
5001
|
+
new (): {
|
|
5002
|
+
readonly tag: ConversionPurpose_Tags.AutoConversion;
|
|
5003
|
+
/**
|
|
5004
|
+
* @private
|
|
5005
|
+
* This field is private and should not be used, use `tag` instead.
|
|
5006
|
+
*/
|
|
5007
|
+
readonly [uniffiTypeNameSymbol]: "ConversionPurpose";
|
|
5008
|
+
};
|
|
5009
|
+
"new"(): {
|
|
5010
|
+
readonly tag: ConversionPurpose_Tags.AutoConversion;
|
|
5011
|
+
/**
|
|
5012
|
+
* @private
|
|
5013
|
+
* This field is private and should not be used, use `tag` instead.
|
|
5014
|
+
*/
|
|
5015
|
+
readonly [uniffiTypeNameSymbol]: "ConversionPurpose";
|
|
5016
|
+
};
|
|
5017
|
+
instanceOf(obj: any): obj is {
|
|
5018
|
+
readonly tag: ConversionPurpose_Tags.AutoConversion;
|
|
5019
|
+
/**
|
|
5020
|
+
* @private
|
|
5021
|
+
* This field is private and should not be used, use `tag` instead.
|
|
5022
|
+
*/
|
|
5023
|
+
readonly [uniffiTypeNameSymbol]: "ConversionPurpose";
|
|
5024
|
+
};
|
|
5025
|
+
};
|
|
4924
5026
|
}>;
|
|
4925
5027
|
/**
|
|
4926
5028
|
* The purpose of the conversion, which is used to provide context for the conversion
|
|
@@ -6455,20 +6557,17 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6455
6557
|
/**
|
|
6456
6558
|
* Represents the invoice description
|
|
6457
6559
|
*/ description: string | undefined;
|
|
6458
|
-
/**
|
|
6459
|
-
* The preimage of the paid invoice (proof of payment).
|
|
6460
|
-
*/ preimage: string | undefined;
|
|
6461
6560
|
/**
|
|
6462
6561
|
* Represents the Bolt11/Bolt12 invoice associated with a payment
|
|
6463
6562
|
* In the case of a Send payment, this is the invoice paid by the user
|
|
6464
6563
|
* In the case of a Receive payment, this is the invoice paid to the user
|
|
6465
6564
|
*/ invoice: string;
|
|
6466
|
-
/**
|
|
6467
|
-
* The payment hash of the invoice
|
|
6468
|
-
*/ paymentHash: string;
|
|
6469
6565
|
/**
|
|
6470
6566
|
* The invoice destination/payee pubkey
|
|
6471
6567
|
*/ destinationPubkey: string;
|
|
6568
|
+
/**
|
|
6569
|
+
* The HTLC transfer details
|
|
6570
|
+
*/ htlcDetails: SparkHtlcDetails;
|
|
6472
6571
|
/**
|
|
6473
6572
|
* Lnurl payment information if this was an lnurl payment.
|
|
6474
6573
|
*/ lnurlPayInfo: LnurlPayInfo | undefined;
|
|
@@ -6482,10 +6581,9 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6482
6581
|
readonly tag: PaymentDetails_Tags.Lightning;
|
|
6483
6582
|
readonly inner: Readonly<{
|
|
6484
6583
|
description: string | undefined;
|
|
6485
|
-
preimage: string | undefined;
|
|
6486
6584
|
invoice: string;
|
|
6487
|
-
paymentHash: string;
|
|
6488
6585
|
destinationPubkey: string;
|
|
6586
|
+
htlcDetails: SparkHtlcDetails;
|
|
6489
6587
|
lnurlPayInfo: LnurlPayInfo | undefined;
|
|
6490
6588
|
lnurlWithdrawInfo: LnurlWithdrawInfo | undefined;
|
|
6491
6589
|
lnurlReceiveMetadata: LnurlReceiveMetadata | undefined;
|
|
@@ -6500,20 +6598,17 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6500
6598
|
/**
|
|
6501
6599
|
* Represents the invoice description
|
|
6502
6600
|
*/ description: string | undefined;
|
|
6503
|
-
/**
|
|
6504
|
-
* The preimage of the paid invoice (proof of payment).
|
|
6505
|
-
*/ preimage: string | undefined;
|
|
6506
6601
|
/**
|
|
6507
6602
|
* Represents the Bolt11/Bolt12 invoice associated with a payment
|
|
6508
6603
|
* In the case of a Send payment, this is the invoice paid by the user
|
|
6509
6604
|
* In the case of a Receive payment, this is the invoice paid to the user
|
|
6510
6605
|
*/ invoice: string;
|
|
6511
|
-
/**
|
|
6512
|
-
* The payment hash of the invoice
|
|
6513
|
-
*/ paymentHash: string;
|
|
6514
6606
|
/**
|
|
6515
6607
|
* The invoice destination/payee pubkey
|
|
6516
6608
|
*/ destinationPubkey: string;
|
|
6609
|
+
/**
|
|
6610
|
+
* The HTLC transfer details
|
|
6611
|
+
*/ htlcDetails: SparkHtlcDetails;
|
|
6517
6612
|
/**
|
|
6518
6613
|
* Lnurl payment information if this was an lnurl payment.
|
|
6519
6614
|
*/ lnurlPayInfo: LnurlPayInfo | undefined;
|
|
@@ -6527,10 +6622,9 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6527
6622
|
readonly tag: PaymentDetails_Tags.Lightning;
|
|
6528
6623
|
readonly inner: Readonly<{
|
|
6529
6624
|
description: string | undefined;
|
|
6530
|
-
preimage: string | undefined;
|
|
6531
6625
|
invoice: string;
|
|
6532
|
-
paymentHash: string;
|
|
6533
6626
|
destinationPubkey: string;
|
|
6627
|
+
htlcDetails: SparkHtlcDetails;
|
|
6534
6628
|
lnurlPayInfo: LnurlPayInfo | undefined;
|
|
6535
6629
|
lnurlWithdrawInfo: LnurlWithdrawInfo | undefined;
|
|
6536
6630
|
lnurlReceiveMetadata: LnurlReceiveMetadata | undefined;
|
|
@@ -6545,10 +6639,9 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6545
6639
|
readonly tag: PaymentDetails_Tags.Lightning;
|
|
6546
6640
|
readonly inner: Readonly<{
|
|
6547
6641
|
description: string | undefined;
|
|
6548
|
-
preimage: string | undefined;
|
|
6549
6642
|
invoice: string;
|
|
6550
|
-
paymentHash: string;
|
|
6551
6643
|
destinationPubkey: string;
|
|
6644
|
+
htlcDetails: SparkHtlcDetails;
|
|
6552
6645
|
lnurlPayInfo: LnurlPayInfo | undefined;
|
|
6553
6646
|
lnurlWithdrawInfo: LnurlWithdrawInfo | undefined;
|
|
6554
6647
|
lnurlReceiveMetadata: LnurlReceiveMetadata | undefined;
|
|
@@ -6642,7 +6735,8 @@ export declare const PaymentDetails: Readonly<{
|
|
|
6642
6735
|
export type PaymentDetails = InstanceType<(typeof PaymentDetails)[keyof Omit<typeof PaymentDetails, 'instanceOf'>]>;
|
|
6643
6736
|
export declare enum PaymentDetailsFilter_Tags {
|
|
6644
6737
|
Spark = "Spark",
|
|
6645
|
-
Token = "Token"
|
|
6738
|
+
Token = "Token",
|
|
6739
|
+
Lightning = "Lightning"
|
|
6646
6740
|
}
|
|
6647
6741
|
export declare const PaymentDetailsFilter: Readonly<{
|
|
6648
6742
|
instanceOf: (obj: any) => obj is PaymentDetailsFilter;
|
|
@@ -6759,6 +6853,49 @@ export declare const PaymentDetailsFilter: Readonly<{
|
|
|
6759
6853
|
readonly [uniffiTypeNameSymbol]: "PaymentDetailsFilter";
|
|
6760
6854
|
};
|
|
6761
6855
|
};
|
|
6856
|
+
Lightning: {
|
|
6857
|
+
new (inner: {
|
|
6858
|
+
/**
|
|
6859
|
+
* Filter specific Spark HTLC statuses
|
|
6860
|
+
*/ htlcStatus: Array<SparkHtlcStatus> | undefined;
|
|
6861
|
+
}): {
|
|
6862
|
+
readonly tag: PaymentDetailsFilter_Tags.Lightning;
|
|
6863
|
+
readonly inner: Readonly<{
|
|
6864
|
+
htlcStatus: Array<SparkHtlcStatus> | undefined;
|
|
6865
|
+
}>;
|
|
6866
|
+
/**
|
|
6867
|
+
* @private
|
|
6868
|
+
* This field is private and should not be used, use `tag` instead.
|
|
6869
|
+
*/
|
|
6870
|
+
readonly [uniffiTypeNameSymbol]: "PaymentDetailsFilter";
|
|
6871
|
+
};
|
|
6872
|
+
"new"(inner: {
|
|
6873
|
+
/**
|
|
6874
|
+
* Filter specific Spark HTLC statuses
|
|
6875
|
+
*/ htlcStatus: Array<SparkHtlcStatus> | undefined;
|
|
6876
|
+
}): {
|
|
6877
|
+
readonly tag: PaymentDetailsFilter_Tags.Lightning;
|
|
6878
|
+
readonly inner: Readonly<{
|
|
6879
|
+
htlcStatus: Array<SparkHtlcStatus> | undefined;
|
|
6880
|
+
}>;
|
|
6881
|
+
/**
|
|
6882
|
+
* @private
|
|
6883
|
+
* This field is private and should not be used, use `tag` instead.
|
|
6884
|
+
*/
|
|
6885
|
+
readonly [uniffiTypeNameSymbol]: "PaymentDetailsFilter";
|
|
6886
|
+
};
|
|
6887
|
+
instanceOf(obj: any): obj is {
|
|
6888
|
+
readonly tag: PaymentDetailsFilter_Tags.Lightning;
|
|
6889
|
+
readonly inner: Readonly<{
|
|
6890
|
+
htlcStatus: Array<SparkHtlcStatus> | undefined;
|
|
6891
|
+
}>;
|
|
6892
|
+
/**
|
|
6893
|
+
* @private
|
|
6894
|
+
* This field is private and should not be used, use `tag` instead.
|
|
6895
|
+
*/
|
|
6896
|
+
readonly [uniffiTypeNameSymbol]: "PaymentDetailsFilter";
|
|
6897
|
+
};
|
|
6898
|
+
};
|
|
6762
6899
|
}>;
|
|
6763
6900
|
export type PaymentDetailsFilter = InstanceType<(typeof PaymentDetailsFilter)[keyof Omit<typeof PaymentDetailsFilter, 'instanceOf'>]>;
|
|
6764
6901
|
export declare enum PaymentMethod {
|
|
@@ -7288,12 +7425,18 @@ export declare const ReceivePaymentMethod: Readonly<{
|
|
|
7288
7425
|
/**
|
|
7289
7426
|
* The expiry of the invoice as a duration in seconds
|
|
7290
7427
|
*/ expirySecs: /*u32*/ number | undefined;
|
|
7428
|
+
/**
|
|
7429
|
+
* If set, creates a HODL invoice with this payment hash (hex-encoded).
|
|
7430
|
+
* The payer's HTLC will be held until the preimage is provided via
|
|
7431
|
+
* `claim_htlc_payment` or the HTLC expires.
|
|
7432
|
+
*/ paymentHash: string | undefined;
|
|
7291
7433
|
}): {
|
|
7292
7434
|
readonly tag: ReceivePaymentMethod_Tags.Bolt11Invoice;
|
|
7293
7435
|
readonly inner: Readonly<{
|
|
7294
7436
|
description: string;
|
|
7295
7437
|
amountSats: /*u64*/ bigint | undefined;
|
|
7296
7438
|
expirySecs: /*u32*/ number | undefined;
|
|
7439
|
+
paymentHash: string | undefined;
|
|
7297
7440
|
}>;
|
|
7298
7441
|
/**
|
|
7299
7442
|
* @private
|
|
@@ -7307,12 +7450,18 @@ export declare const ReceivePaymentMethod: Readonly<{
|
|
|
7307
7450
|
/**
|
|
7308
7451
|
* The expiry of the invoice as a duration in seconds
|
|
7309
7452
|
*/ expirySecs: /*u32*/ number | undefined;
|
|
7453
|
+
/**
|
|
7454
|
+
* If set, creates a HODL invoice with this payment hash (hex-encoded).
|
|
7455
|
+
* The payer's HTLC will be held until the preimage is provided via
|
|
7456
|
+
* `claim_htlc_payment` or the HTLC expires.
|
|
7457
|
+
*/ paymentHash: string | undefined;
|
|
7310
7458
|
}): {
|
|
7311
7459
|
readonly tag: ReceivePaymentMethod_Tags.Bolt11Invoice;
|
|
7312
7460
|
readonly inner: Readonly<{
|
|
7313
7461
|
description: string;
|
|
7314
7462
|
amountSats: /*u64*/ bigint | undefined;
|
|
7315
7463
|
expirySecs: /*u32*/ number | undefined;
|
|
7464
|
+
paymentHash: string | undefined;
|
|
7316
7465
|
}>;
|
|
7317
7466
|
/**
|
|
7318
7467
|
* @private
|
|
@@ -7326,6 +7475,7 @@ export declare const ReceivePaymentMethod: Readonly<{
|
|
|
7326
7475
|
description: string;
|
|
7327
7476
|
amountSats: /*u64*/ bigint | undefined;
|
|
7328
7477
|
expirySecs: /*u32*/ number | undefined;
|
|
7478
|
+
paymentHash: string | undefined;
|
|
7329
7479
|
}>;
|
|
7330
7480
|
/**
|
|
7331
7481
|
* @private
|
|
@@ -12269,6 +12419,13 @@ export declare class PaymentObserverImpl extends UniffiAbstractObject implements
|
|
|
12269
12419
|
uniffiDestroy(): void;
|
|
12270
12420
|
static instanceOf(obj: any): obj is PaymentObserverImpl;
|
|
12271
12421
|
}
|
|
12422
|
+
/**
|
|
12423
|
+
* REST client trait for making HTTP requests.
|
|
12424
|
+
*
|
|
12425
|
+
* This trait provides a way for users to supply their own HTTP client implementation
|
|
12426
|
+
* for use with the SDK. The SDK will use this client for all HTTP operations including
|
|
12427
|
+
* LNURL flows and chain service requests.
|
|
12428
|
+
*/
|
|
12272
12429
|
export interface RestClient {
|
|
12273
12430
|
/**
|
|
12274
12431
|
* Makes a GET request and logs on DEBUG.
|
|
@@ -12300,6 +12457,13 @@ export interface RestClient {
|
|
|
12300
12457
|
signal: AbortSignal;
|
|
12301
12458
|
}): Promise<RestResponse>;
|
|
12302
12459
|
}
|
|
12460
|
+
/**
|
|
12461
|
+
* REST client trait for making HTTP requests.
|
|
12462
|
+
*
|
|
12463
|
+
* This trait provides a way for users to supply their own HTTP client implementation
|
|
12464
|
+
* for use with the SDK. The SDK will use this client for all HTTP operations including
|
|
12465
|
+
* LNURL flows and chain service requests.
|
|
12466
|
+
*/
|
|
12303
12467
|
export declare class RestClientImpl extends UniffiAbstractObject implements RestClient {
|
|
12304
12468
|
readonly [uniffiTypeNameSymbol] = "RestClientImpl";
|
|
12305
12469
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
@@ -14329,6 +14493,13 @@ declare const _default: Readonly<{
|
|
|
14329
14493
|
lift(value: UniffiByteArray): SparkStatus;
|
|
14330
14494
|
lower(value: SparkStatus): UniffiByteArray;
|
|
14331
14495
|
};
|
|
14496
|
+
FfiConverterTypeStableBalanceConfig: {
|
|
14497
|
+
read(from: RustBuffer): StableBalanceConfig;
|
|
14498
|
+
write(value: StableBalanceConfig, into: RustBuffer): void;
|
|
14499
|
+
allocationSize(value: StableBalanceConfig): number;
|
|
14500
|
+
lift(value: UniffiByteArray): StableBalanceConfig;
|
|
14501
|
+
lower(value: StableBalanceConfig): UniffiByteArray;
|
|
14502
|
+
};
|
|
14332
14503
|
FfiConverterTypeStorage: FfiConverterObjectWithCallbacks<Storage>;
|
|
14333
14504
|
FfiConverterTypeSuccessAction: {
|
|
14334
14505
|
read(from: RustBuffer): SuccessAction;
|