cic-contracts/solidity/OwnedTaker.sol

12 lines
318 B
Solidity
Raw Permalink Normal View History

2023-03-25 13:32:56 +01:00
pragma solidity >=0.6.12;
2021-05-10 09:13:22 +02:00
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
2023-03-25 13:32:56 +01:00
// SPDX-License-Identifier: AGPL-3.0-or-later
// File-version: 2
2021-05-10 09:13:22 +02:00
interface OwnerTakeable {
event OwnershipTaken(address _result);
function takeOwnership(address _target) external view returns (bool);
}