Skip to content

Latest commit

 

History

History
76 lines (43 loc) · 3.31 KB

api_ownership_multiowned.md

File metadata and controls

76 lines (43 loc) · 3.31 KB
id title
ownership_MultiOwned
MultiOwned

api_ownership_MultiOwned

contract MultiOwned

Source: ownership/MultiOwned.sol

Index

Reference

Events

  • LogFunctionAuthorized

    event LogFunctionAuthorized(address _owner, string _functionName, bytes32 _beneficiary, bytes32 _authHash)

    Parameters:_owner - address_functionName - string_beneficiary - bytes32_authHash - bytes32

  • LogOwnerChanged

    event LogOwnerChanged(address _previousOwner, address _newOwner)

    Parameters:_previousOwner - address_newOwner - address

Modifiers

  • anyOwner

    modifier anyOwner()

  • noZeroAddress

    modifier noZeroAddress(address _param)

    Parameters:_param - address

Functions

  • addOwner

    function addOwner(address _newOwner) external

    Modifiers:anyOwnerParameters:_newOwner - address

  • callAuthorizedFunction

    function callAuthorizedFunction(bytes4 _methodID) external

    Modifiers:anyOwnerParameters:_methodID - bytes4

  • removeOwner

    function removeOwner() external

    Modifiers:anyOwner

  • signForFunctionCall

    function signForFunctionCall(bytes4 _methodID) external

    Modifiers:anyOwnerParameters:_methodID - bytes4