aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/1.0.0/Ownable/IOwnable_v1.sol
blob: 7e22d544daf58b81fe37a5bb368863bab4f1b500 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pragma solidity ^0.4.19;

/*
 * 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_v1 {
  
    function owner()
      public view
      returns (address);
  
    function transferOwnership(address newOwner)
      public;
}