1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::{accounts::AccountId, contracttype, BytesN};
/// Address is all the types that can be the invoker of a contract.
///
/// The Address type is a contracttype and transmitted to the host like an enum,
/// however it is not exported into contract specs because it has its own spec
/// definition type dedicated to it.
#[contracttype(crate_path = "crate", lib = "soroban_sdk", export = false)]
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub enum Address {
Account(AccountId),
Contract(BytesN<32>),
}