summaryrefslogtreecommitdiffstats
path: root/contracts/NodeInfoOracle.sol
blob: 4fbdf44d69ead3448d91c717b8469be1c33fb662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
pragma solidity ^0.5.0;

contract NodeInfoOracle {
    function delegators(uint256 Round, address NodeAddress, uint256 Index) view public returns (address owner, uint256 value, uint256 undelegated_at) {
    }

    function delegatorsLength(uint256 Round, address NodeAddress) view public returns (uint256) {
    }

    function delegatorsOffset(uint256 Round, address NodeAddress, address DelegatorAddress) view public returns (int256) {
    }
}