token-gallery-contracts/contracts/IControlTransferEvents.sol

10 lines
318 B
Solidity
Raw Normal View History

2025-01-18 12:44:49 +00:00
// 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);
}