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