Trait soroban_sdk::testutils::Accounts
source · 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§
sourcefn generate_and_create(&self) -> AccountId
fn generate_and_create(&self) -> AccountId
Generate and account ID and creates an account.
sourcefn set_thresholds(&self, id: &AccountId, low: u8, med: u8, high: u8)
fn set_thresholds(&self, id: &AccountId, low: u8, med: u8, high: u8)
Set the thresholds of an account.
sourcefn set_signer_weight(&self, id: &AccountId, signer: &BytesN<32>, weight: u8)
fn set_signer_weight(&self, id: &AccountId, signer: &BytesN<32>, weight: u8)
Set the weight of a signer of an account.
Setting a weight of zero removes the signer from the account.