cic-contracts/solidity/OwnedTaker.sol

12 lines
315 B
Solidity

pragma solidity ^0.8.0;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: GPL-3.0-or-later
// File-version: 1
interface OwnerTakeable {
event OwnershipTaken(address _result);
function takeOwnership(address _target) external view returns (bool);
}