token-gallery-contracts/contracts/IControlTransferEvents.sol

10 lines
318 B
Solidity

// SPDX-License-Identifier: Proprietary
pragma solidity ^0.7.2;
interface IControlTransferEvents {
event CreatorTransferred(address indexed from, address indexed to);
event ManagerTransferred(address indexed from, address indexed to);
event PayoutTransferred(address indexed from, address indexed to);
}