2018-03-28 02:16:51 +00:00
|
|
|
pragma solidity ^0.4.21;
|
2018-03-17 16:50:33 +00:00
|
|
|
|
|
|
|
import "./DelegationProxyInterface.sol";
|
|
|
|
|
|
|
|
contract TrustNetworkInterface {
|
|
|
|
|
|
|
|
function addTopic(bytes32 topicId, bytes32 parentTopic) public;
|
2018-03-30 05:31:08 +00:00
|
|
|
function getTopic(bytes32 _topicId) public view returns (DelegationProxyInterface vote, DelegationProxyInterface veto);
|
2018-03-28 02:16:51 +00:00
|
|
|
function getVoteDelegation(bytes32 _topicId) public view returns (DelegationProxyInterface voteDelegation);
|
|
|
|
function getVetoDelegation(bytes32 _topicId) public view returns (DelegationProxyInterface vetoDelegation);
|
2018-03-17 16:50:33 +00:00
|
|
|
}
|