Add missing file

This commit is contained in:
nolash 2021-04-28 13:02:50 +02:00
parent 43b43a189e
commit 03856123d2
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 12 additions and 0 deletions

12
AccountsIndex.sol Normal file
View File

@ -0,0 +1,12 @@
pragma solidity >=0.6.12;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: GPL-3.0-or-later
// File-version: 3
interface AccountsIndex {
function entryCount() external view returns (uint256);
function entry(uint256) external view returns (address);
function add(address _account) external returns (bool);
function have(address _account) external view returns (bool);
}