aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/contracts/current/utils/Ownable/IOwnable.sol
blob: 63b04945fc4f8a88ad962edf987b862e59912e4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pragma solidity ^0.4.23;
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;
}