cic-contracts/solidity/RegistryClient.sol

10 lines
268 B
Solidity
Raw Normal View History

2021-12-22 20:13:18 +01:00
pragma solidity >=0.6.12;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: GPL-3.0-or-later
// File-version: 3
interface RegistryClient {
function addressOf(bytes32) external view returns (address);
}