pub trait BalanceClient: Debug + Sync {
    fn account_balance(&self, address: &Address) -> U256;
}
Expand description

State balance client

Required methods

Fetch only account balance for given sender.

Implementors