aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/2.0.0/utils/Ownable/IOwnable.sol
blob: 116b8dc89b8399e15f2291d9d320f4f274fc602a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma solidity 0.4.24;

/*
 * Ownable
 *
 * Base contract with an owner.
 * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner.
 */

contract IOwnable {
    function transferOwnership(address newOwner)
        public;
}