mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 08:35:14 +00:00
11 lines
459 B
Solidity
11 lines
459 B
Solidity
pragma solidity >=0.5.0 <0.6.0;
|
|
|
|
import "./Delegation.sol";
|
|
|
|
contract TrustNetworkInterface {
|
|
|
|
function addTopic(bytes32 topicId, bytes32 parentTopic) public;
|
|
function getTopic(bytes32 _topicId) public view returns (Delegation vote, Delegation veto);
|
|
function getVoteDelegation(bytes32 _topicId) public view returns (Delegation voteDelegation);
|
|
function getVetoDelegation(bytes32 _topicId) public view returns (Delegation vetoDelegation);
|
|
} |