IHaiProxyFactory

Git Source

Functions

isProxy

Mapping of proxy addresses to boolean state

function isProxy(address _proxyAddress) external view returns (bool _exists);

build

Deploys a new proxy instance, setting the caller as the owner

function build() external returns (address payable _proxy);

Returns

NameTypeDescription
_proxyaddress payableAddress of the new proxy

build

Deploys a new proxy instance, setting the specified address as the owner

function build(address _owner) external returns (address payable _proxy);

Parameters

NameTypeDescription
_owneraddressAddress of the owner of the new proxy

Returns

NameTypeDescription
_proxyaddress payableAddress of the new proxy

Events

Created

Emitted when a new proxy is deployed

event Created(address indexed _sender, address indexed _owner, address _proxy);