pub trait Ownable {
    fn get_owner(&self) -> AccountId;
    fn set_owner(&mut self, owner: AccountId);

    fn assert_owner(&self) { ... }
}
👎Deprecated since 4.1.0: This was removed because there is no standard (NEP) for upgradable contracts.

Required Methods§

👎Deprecated since 4.1.0: This was removed because there is no standard (NEP) for upgradable contracts.
👎Deprecated since 4.1.0: This was removed because there is no standard (NEP) for upgradable contracts.

Provided Methods§

👎Deprecated since 4.1.0: This was removed because there is no standard (NEP) for upgradable contracts.

Implementors§