export const name = 'RewardEscrow'; export const address = '0xd435461f7521b7647D2ad39F8DD4903C2e7f407d'; export const source = 'RewardEscrow'; export const abi = [ 'constructor(address _owner, address _synthetix, address _feePool)', 'event FeePoolUpdated(address newFeePool)', 'event OwnerChanged(address oldOwner, address newOwner)', 'event OwnerNominated(address newOwner)', 'event SynthetixUpdated(address newSynthetix)', 'event Vested(address indexed beneficiary, uint256 time, uint256 value)', 'event VestingEntryCreated(address indexed beneficiary, uint256 time, uint256 value)', 'function MAX_VESTING_ENTRIES() view returns (uint256)', 'function acceptOwnership()', 'function feePool() view returns (address)', 'function nominateNewOwner(address _owner)', 'function nominatedOwner() view returns (address)', 'function owner() view returns (address)', 'function synthetix() view returns (address)', 'function totalEscrowedAccountBalance(address) view returns (uint256)', 'function totalEscrowedBalance() view returns (uint256)', 'function totalVestedAccountBalance(address) view returns (uint256)', 'function vestingSchedules(address, uint256, uint256) view returns (uint256)', 'function setSynthetix(address _synthetix)', 'function setFeePool(address _feePool)', 'function balanceOf(address account) view returns (uint256)', 'function numVestingEntries(address account) view returns (uint256)', 'function getVestingScheduleEntry(address account, uint256 index) view returns (uint256[2])', 'function getVestingTime(address account, uint256 index) view returns (uint256)', 'function getVestingQuantity(address account, uint256 index) view returns (uint256)', 'function getNextVestingIndex(address account) view returns (uint256)', 'function getNextVestingEntry(address account) view returns (uint256[2])', 'function getNextVestingTime(address account) view returns (uint256)', 'function getNextVestingQuantity(address account) view returns (uint256)', 'function checkAccountSchedule(address account) view returns (uint256[520])', 'function appendVestingEntry(address account, uint256 quantity)', 'function vest()', ];