pub type Address = MultiAddress<AccountId, ()>;Aliased Type§
pub enum Address {
Id(AccountId32),
Index(()),
Raw(Vec<u8>),
Address32([u8; 32]),
Address20([u8; 20]),
}Variants§
Id(AccountId32)
It’s an account ID (pubkey).
Index(())
It’s an account index.
Raw(Vec<u8>)
It’s some arbitrary raw bytes.
Address32([u8; 32])
It’s a 32 byte representation.
Address20([u8; 20])
It’s a 20 byte representation.
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.