cic-contracts/solidity/Registry.sol

12 lines
379 B
Solidity
Raw Normal View History

2020-12-11 10:20:56 +01:00
pragma solidity >=0.6.12;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: GPL-3.0-or-later
2021-12-22 20:13:18 +01:00
// File-version: 1
2020-12-11 10:20:56 +01:00
2021-12-22 20:13:18 +01:00
interface Registry {
function set(bytes32, address) external returns (bool);
function bind(bytes32, bytes32) external returns (bool);
2021-11-13 07:06:52 +01:00
function identifiers(uint256) external view returns (bytes32);
2020-12-11 10:20:56 +01:00
}