12 lines
377 B
Solidity
12 lines
377 B
Solidity
// SPDX-License-Identifier: AGPL-3.0-only
|
|
pragma solidity ^0.8.0;
|
|
|
|
interface AddressWhitelistInterface {
|
|
function addToWhitelist(address newElement) external;
|
|
|
|
function removeFromWhitelist(address newElement) external;
|
|
|
|
function isOnWhitelist(address newElement) external view returns (bool);
|
|
|
|
function getWhitelist() external view returns (address[] memory);
|
|
} |