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

/*
 * 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;
}