pub trait Accounts {
    fn generate(&self) -> AccountId;
    fn generate_and_create(&self) -> AccountId;
    fn create(&self, id: &AccountId);
    fn set_thresholds(&self, id: &AccountId, low: u8, med: u8, high: u8);
    fn set_signer_weight(&self, id: &AccountId, signer: &BytesN<32>, weight: u8);
    fn remove(&self, id: &AccountId);
}
Available on crate feature testutils only.
Expand description

Test utilities for Accounts.

Required Methods§

Generate an account ID.

Generate and account ID and creates an account.

Create an account.

Set the thresholds of an account.

Set the weight of a signer of an account.

Setting a weight of zero removes the signer from the account.

Remove an account.

Implementors§