pub trait ParityAccountsInfo: Sized + Send + Sync + 'static {
    fn accounts_info(&self) -> Result<BTreeMap<H160, AccountInfo>>;
fn default_account(&self) -> Result<H160>; fn to_delegate<M: Metadata>(self) -> IoDelegate<Self, M> { ... } }
Expand description

Parity-specific read-only accounts rpc interface.

Required methods

Returns accounts information.

Returns default account for dapp.

Provided methods

Create an IoDelegate, wiring rpc calls to the trait methods.

Implementors