pub fn _proxy_target() -> Option<ContractId> 
Expand description

Returns the proxy target.

Returns

  • [Option] - The ContractId of the proxy target.

Number of Storage Accesses

  • Reads: 1

Examples

use sway_libs::upgradability::_proxy_target;

fn foo() {
    let stored_proxy_target = _proxy_target();
}