mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
15 lines
378 B
Solidity
15 lines
378 B
Solidity
|
pragma solidity ^0.8.5;
|
||
|
|
||
|
contract Directory {
|
||
|
|
||
|
bytes[] public communities;
|
||
|
|
||
|
function isCommunityInDirectory(bytes calldata community) public view returns (bool) { }
|
||
|
|
||
|
function getCommunities() public view returns (bytes[] memory) { }
|
||
|
|
||
|
function addCommunity(bytes calldata community) public { }
|
||
|
|
||
|
function removeCommunity(bytes calldata community) public { }
|
||
|
}
|