reth::providers

Trait AccountReader

Source
pub trait AccountReader: Send + Sync {
    // Required method
    fn basic_account(
        &self,
        address: &Address,
    ) -> Result<Option<Account>, ProviderError>;
}
Expand description

Account reader

Required Methods§

Source

fn basic_account( &self, address: &Address, ) -> Result<Option<Account>, ProviderError>

Get basic account information.

Returns None if the account doesn’t exist.

Implementations on Foreign Types§

Source§

impl<'a, T> AccountReader for &'a T
where T: 'a + AccountReader + ?Sized, &'a T: Send + Sync,

§

impl<N> AccountReader for MemoryOverlayStateProviderRef<'_, N>
where N: NodePrimitives,

Source§

impl<T> AccountReader for Box<T>
where T: AccountReader + ?Sized, Box<T>: Send + Sync,

Source§

impl<T> AccountReader for Arc<T>
where T: AccountReader + ?Sized, Arc<T>: Send + Sync,

Implementors§