token-gallery-contracts/contracts/IControl.sol

8 lines
268 B
Solidity

// SPDX-License-Identifier: Proprietary
pragma solidity ^0.7.2;
interface IControl {
function creator() external view returns (address);
function changeCreator(address payable _newCreator) external;
function mothership() external view returns (address);
}