cic-contracts/solidity/Registry.sol

10 lines
268 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-04-28 11:59:47 +02:00
// File-version: 2
2020-12-11 10:20:56 +01:00
2021-04-28 11:59:47 +02:00
interface RegistryClient {
2020-12-31 22:29:40 +01:00
function addressOf(bytes32) external view returns (address);
2020-12-11 10:20:56 +01:00
}