Skip to content

Commit fe59fed

Browse files
committed
Add Uniffi bindings for LSPS1 API
1 parent 0f9d105 commit fe59fed

File tree

3 files changed

+125
-2
lines changed

3 files changed

+125
-2
lines changed

bindings/ldk_node.udl

+73
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ interface Builder {
3939
void set_chain_source_bitcoind_rpc(string rpc_host, u16 rpc_port, string rpc_user, string rpc_password);
4040
void set_gossip_source_p2p();
4141
void set_gossip_source_rgs(string rgs_server_url);
42+
void set_liquidity_source_lsps1(PublicKey node_id, SocketAddress address, string? token);
4243
void set_liquidity_source_lsps2(PublicKey node_id, SocketAddress address, string? token);
4344
void set_storage_dir_path(string storage_dir_path);
4445
void set_network(Network network);
@@ -78,6 +79,7 @@ interface Node {
7879
SpontaneousPayment spontaneous_payment();
7980
OnchainPayment onchain_payment();
8081
UnifiedQrPayment unified_qr_payment();
82+
Lsps1Liquidity lsps1_liquidity();
8183
[Throws=NodeError]
8284
void connect(PublicKey node_id, SocketAddress address, boolean persist);
8385
[Throws=NodeError]
@@ -173,6 +175,13 @@ interface UnifiedQrPayment {
173175
QrPaymentResult send([ByRef]string uri_str);
174176
};
175177

178+
interface Lsps1Liquidity {
179+
[Throws=NodeError]
180+
LSPS1OrderStatus request_channel(u64 lsp_balance_sat, u64 client_balance_sat, u32 channel_expiry_blocks, boolean announce_channel);
181+
[Throws=NodeError]
182+
LSPS1OrderStatus check_order_status(OrderId order_id);
183+
};
184+
176185
[Error]
177186
enum NodeError {
178187
"AlreadyRunning",
@@ -220,6 +229,8 @@ enum NodeError {
220229
"InvalidUri",
221230
"InvalidQuantity",
222231
"InvalidNodeAlias",
232+
"InvalidDateTime",
233+
"InvalidFeeRate",
223234
"DuplicatePayment",
224235
"UnsupportedCurrency",
225236
"InsufficientFunds",
@@ -370,6 +381,59 @@ dictionary CustomTlvRecord {
370381
sequence<u8> value;
371382
};
372383

384+
dictionary LSPS1OrderStatus {
385+
OrderId order_id;
386+
OrderParameters order_params;
387+
PaymentInfo payment_options;
388+
ChannelOrderInfo? channel_state;
389+
};
390+
391+
dictionary OrderParameters {
392+
u64 lsp_balance_sat;
393+
u64 client_balance_sat;
394+
u16 required_channel_confirmations;
395+
u16 funding_confirms_within_blocks;
396+
u32 channel_expiry_blocks;
397+
string? token;
398+
boolean announce_channel;
399+
};
400+
401+
dictionary PaymentInfo {
402+
Bolt11PaymentInfo? bolt11;
403+
OnchainPaymentInfo? onchain;
404+
};
405+
406+
dictionary Bolt11PaymentInfo {
407+
PaymentState state;
408+
DateTime expires_at;
409+
u64 fee_total_sat;
410+
u64 order_total_sat;
411+
Bolt11Invoice invoice;
412+
};
413+
414+
dictionary OnchainPaymentInfo {
415+
PaymentState state;
416+
DateTime expires_at;
417+
u64 fee_total_sat;
418+
u64 order_total_sat;
419+
Address address;
420+
u16? min_onchain_payment_confirmations;
421+
FeeRate min_fee_for_0conf;
422+
Address? refund_onchain_address;
423+
};
424+
425+
dictionary ChannelOrderInfo {
426+
DateTime funded_at;
427+
OutPoint funding_outpoint;
428+
DateTime expires_at;
429+
};
430+
431+
enum PaymentState {
432+
"ExpectPayment",
433+
"Paid",
434+
"Refunded",
435+
};
436+
373437
[Enum]
374438
interface MaxTotalRoutingFeeLimit {
375439
None ();
@@ -622,3 +686,12 @@ typedef string UntrustedString;
622686

623687
[Custom]
624688
typedef string NodeAlias;
689+
690+
[Custom]
691+
typedef string OrderId;
692+
693+
[Custom]
694+
typedef string DateTime;
695+
696+
[Custom]
697+
typedef string FeeRate;

src/error.rs

+6
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ pub enum Error {
106106
InvalidQuantity,
107107
/// The given node alias is invalid.
108108
InvalidNodeAlias,
109+
/// The given date time is invalid.
110+
InvalidDateTime,
111+
/// The given fee rate is invalid.
112+
InvalidFeeRate,
109113
/// A payment with the given hash has already been initiated.
110114
DuplicatePayment,
111115
/// The provided offer was denonminated in an unsupported currency.
@@ -172,6 +176,8 @@ impl fmt::Display for Error {
172176
Self::InvalidUri => write!(f, "The given URI is invalid."),
173177
Self::InvalidQuantity => write!(f, "The given quantity is invalid."),
174178
Self::InvalidNodeAlias => write!(f, "The given node alias is invalid."),
179+
Self::InvalidDateTime => write!(f, "The given date time is invalid."),
180+
Self::InvalidFeeRate => write!(f, "The given fee rate is invalid."),
175181
Self::DuplicatePayment => {
176182
write!(f, "A payment with the given hash has already been initiated.")
177183
},

src/uniffi_types.rs

+46-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ pub use crate::config::{
1414
default_config, AnchorChannelsConfig, EsploraSyncConfig, MaxDustHTLCExposure,
1515
};
1616
pub use crate::graph::{ChannelInfo, ChannelUpdateInfo, NodeAnnouncementInfo, NodeInfo};
17+
pub use crate::liquidity::LSPS1OrderStatus;
1718
pub use crate::payment::store::{LSPFeeLimits, PaymentDirection, PaymentKind, PaymentStatus};
1819
pub use crate::payment::{MaxTotalRoutingFeeLimit, QrPaymentResult, SendingParameters};
19-
pub use crate::types::CustomTlvRecord;
2020

2121
pub use lightning::chain::channelmonitor::BalanceSource;
2222
pub use lightning::events::{ClosureReason, PaymentFailureReason};
@@ -29,12 +29,19 @@ pub use lightning::util::string::UntrustedString;
2929

3030
pub use lightning_invoice::Bolt11Invoice;
3131

32-
pub use bitcoin::{Address, BlockHash, Network, OutPoint, Txid};
32+
pub use lightning_liquidity::lsps1::msgs::ChannelInfo as ChannelOrderInfo;
33+
pub use lightning_liquidity::lsps1::msgs::{
34+
Bolt11PaymentInfo, OnchainPaymentInfo, OrderId, OrderParameters, PaymentInfo, PaymentState,
35+
};
36+
37+
pub use bitcoin::{Address, BlockHash, FeeRate, Network, OutPoint, Txid};
3338

3439
pub use bip39::Mnemonic;
3540

3641
pub use vss_client::headers::{VssHeaderProvider, VssHeaderProviderError};
3742

43+
pub type DateTime = chrono::DateTime<chrono::Utc>;
44+
3845
use crate::UniffiCustomTypeConverter;
3946

4047
use crate::builder::sanitize_alias;
@@ -344,3 +351,40 @@ impl UniffiCustomTypeConverter for NodeAlias {
344351
obj.to_string()
345352
}
346353
}
354+
355+
impl UniffiCustomTypeConverter for OrderId {
356+
type Builtin = String;
357+
358+
fn into_custom(val: Self::Builtin) -> uniffi::Result<Self> {
359+
Ok(Self(val))
360+
}
361+
362+
fn from_custom(obj: Self) -> Self::Builtin {
363+
obj.0
364+
}
365+
}
366+
367+
impl UniffiCustomTypeConverter for DateTime {
368+
type Builtin = String;
369+
370+
fn into_custom(val: Self::Builtin) -> uniffi::Result<Self> {
371+
Ok(DateTime::from_str(&val).map_err(|_| Error::InvalidDateTime)?)
372+
}
373+
374+
fn from_custom(obj: Self) -> Self::Builtin {
375+
obj.to_rfc3339()
376+
}
377+
}
378+
379+
/// FIXME TODO
380+
impl UniffiCustomTypeConverter for FeeRate {
381+
type Builtin = String;
382+
383+
fn into_custom(val: Self::Builtin) -> uniffi::Result<Self> {
384+
Ok(FeeRate::from_str(&val).map_err(|_| Error::InvalidFeeRate)?)
385+
}
386+
387+
fn from_custom(obj: Self) -> Self::Builtin {
388+
obj.to_string()
389+
}
390+
}

0 commit comments

Comments
 (0)