IManager

Git Source

Functions

getInitManagementSelector

function used to know the selector of initManagement functions.

function getInitManagementSelector()
    external
    pure
    returns (bytes4 selector);

isManaged

function used to know if a vault is under management by this manager.

function isManaged(address vault_)
    external
    view
    returns (bool isManaged);

Parameters

NameTypeDescription
vault_addressaddress of the meta vault the caller want to check.

Returns

NameTypeDescription
isManagedboolboolean which is true if the vault is under management, false otherwise.