Fund
Fund entity
One time method to be called at deployment to configure the contract. Required so Fund contracts can be deployed as minimal proxies (clones).
function initialize(Registry _registry, address _manager) public;
Parameters
Name | Type | Description |
---|---|---|
_registry | Registry | The registry to host the Fund Entity. |
_manager | address | The address of the Fund's manager. |
Each entity will implement this function to allow a caller to interrogate what kind of entity it is.
function entityType() public pure override returns (uint8);
Last modified 2mo ago