mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-12 16:25:39 -04:00

This command uses a rendezvous node to find sellers (i.e. ASBs) and query them for quotes. Sellers, that can be dialed and queried for a quote will be listed.
14 lines
330 B
Rust
14 lines
330 B
Rust
mod behaviour;
|
|
pub mod cancel;
|
|
pub mod command;
|
|
mod event_loop;
|
|
mod list_sellers;
|
|
pub mod refund;
|
|
pub mod tracing;
|
|
pub mod transport;
|
|
|
|
pub use behaviour::{Behaviour, OutEvent};
|
|
pub use cancel::cancel;
|
|
pub use event_loop::{EventLoop, EventLoopHandle};
|
|
pub use list_sellers::{list_sellers, XmrBtcNamespace};
|
|
pub use refund::refund;
|