pub fn _proxy_owner() -> State 
Expand description

Returns the owner of the proxy.

Returns

  • [State] - The state of the proxy ownership.

Number of Storage Accesses

  • Reads: 1

Examples

use sway_libs::upgradability::_proxy_owner;


fn foo() {
    let stored_proxy_owner = _proxy_owner();
}