mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 16:45:20 +00:00
10 lines
303 B
Solidity
10 lines
303 B
Solidity
|
pragma solidity ^0.4.17;
|
||
|
|
||
|
import "./DelegationProxyInterface.sol";
|
||
|
|
||
|
contract TrustNetworkInterface {
|
||
|
|
||
|
function addTopic(bytes32 topicId, bytes32 parentTopic) public;
|
||
|
function getTopic(bytes32 _topicId) public constant returns (DelegationProxyInterface vote, DelegationProxyInterface veto);
|
||
|
|
||
|
}
|