pub trait CryptoClient {
    fn client_type(&self) -> ClientType;
    fn sync_stats<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = SyncStats> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn wallet_balance<'life0, 'life1, 'async_trait>(
        &'life0 self,
        identifier: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<WalletBalance>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors