aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/contracts/utils/Ownable/IOwnable.sol
blob: 5deb13497ebf7520d42a9d4e0cc5e90caaec1ba7 (plain) (blame)
1
2
3
4
5
6
7
8
pragma solidity 0.4.24;


contract IOwnable {

    function transferOwnership(address newOwner)
        public;
}