pub trait Address {
    // Required methods
    fn random(env: &Env) -> Address;
    fn from_contract_id(contract_id: &BytesN<32>) -> Address;
    fn contract_id(&self) -> BytesN<32>;
}
Available on crate feature testutils only.

Required Methods§

source

fn random(env: &Env) -> Address

Create a random Address.

Implementation note: this always builds the contract addresses now. This shouldn’t normally matter though, as contracts should be agnostic to the underlying Address value.

source

fn from_contract_id(contract_id: &BytesN<32>) -> Address

Creates an Address corresponding to the provided contract identifier.

source

fn contract_id(&self) -> BytesN<32>

Get the contract ID of an Address as a BytesN<32>.

Panics

If the Address is not a Contract.

Implementors§