IKernel

contract IKernel

is IKernelEvents, IVaultRecoverable

Source: contracts/kernel/IKernel.sol

Index

Reference

Functions

acl

abstract function`` acl() public view returns (IACL)


Returns:

  • IACL

getApp

abstract function`` getApp(bytes32 namespace, bytes32 appId) public view returns (address)


Parameters:

  • namespace - bytes32

  • appId - bytes32

Returns:

  • address

hasPermission

abstract function`` hasPermission(address who, address where, bytes32 what, bytes how) public view returns (bool)


Parameters:

  • who - address

  • where - address

  • what - bytes32

  • how - bytes

Returns:

  • bool

setApp

abstract function`` setApp(bytes32 namespace, bytes32 appId, address app) public


Parameters:

  • namespace - bytes32

  • appId - bytes32

  • app - address

Last updated