pub trait StellarClientTrait {
// Required methods
fn get_transactions<'life0, 'async_trait>(
&'life0 self,
start_sequence: u32,
end_sequence: Option<u32>,
) -> Pin<Box<dyn Future<Output = Result<Vec<StellarTransaction>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_events<'life0, 'async_trait>(
&'life0 self,
start_sequence: u32,
end_sequence: Option<u32>,
) -> Pin<Box<dyn Future<Output = Result<Vec<StellarEvent>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Extended functionality specific to the Stellar blockchain