DAOFactory
Last updated
Was this helpful?
Source: contracts/factory/DAOFactory.sol
event`` DeployDAO(address dao)
Parameters:
dao - address
event`` DeployEVMScriptRegistry(address reg)
Parameters:
reg - address
function (IKernel _baseKernel, IACL _baseACL, EVMScriptRegistryFactory _regFactory) public
Create a new DAOFactory, creating DAOs with Kernels proxied to `_baseKernel`, ACLs proxied to `_baseACL`, and new EVMScriptRegistries created from `_regFactory`.
Parameters:
_baseKernel - Base Kernel
_baseACL - Base ACL
_regFactory - EVMScriptRegistry factory
function`` newDAO(address _root) public returns (Kernel)
Create a new DAO with `_root` set as the initial admin.
Parameters:
_root - Address that will be granted control to setup DAO permissions
Returns:
Newly created DAO
Last updated
Was this helpful?
Was this helpful?
