2020-12-31 22:29:40 +01:00
|
|
|
pragma solidity >=0.6.12;
|
|
|
|
|
|
|
|
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// File-version: 1
|
|
|
|
|
|
|
|
|
|
|
|
interface RegistryStandard {
|
|
|
|
function registryCount() external view returns (uint256);
|
|
|
|
function addressOf(bytes32) external view returns (address);
|
|
|
|
function register(bytes32,address) external view returns (bool);
|
2021-02-14 13:22:42 +01:00
|
|
|
function entry(uint256) external view returns (address);
|
2020-12-31 22:29:40 +01:00
|
|
|
}
|