pub trait IlpTransport: Send + Sync {
// Required method
fn send(
&self,
ilp_address: &str,
amount_micro_cents: u64,
via_nym: bool,
) -> Result<(), String>;
}Expand description
Low-level transport interface. Implemented for HTTP, Nym, and a mock stub.