breez_sdk_liquid/payjoin/
mod.rs1pub(crate) mod error;
2pub(crate) mod model;
3mod network_fee;
4mod pset;
5pub(crate) mod side_swap;
6mod utxo_select;
7
8use error::PayjoinResult;
9use lwk_wollet::elements::Transaction;
10use maybe_sync::{MaybeSend, MaybeSync};
11use model::AcceptedAsset;
12
13#[sdk_macros::async_trait]
14pub trait PayjoinService: MaybeSend + MaybeSync {
15 async fn fetch_accepted_assets(&self) -> PayjoinResult<Vec<AcceptedAsset>>;
17
18 async fn estimate_payjoin_tx_fee(&self, asset_id: &str, amount_sat: u64) -> PayjoinResult<f64>;
20
21 async fn build_payjoin_tx(
24 &self,
25 recipient_address: &str,
26 asset_id: &str,
27 amount_sat: u64,
28 ) -> PayjoinResult<(Transaction, u64)>;
29}