|
| 1 | +export default [ |
| 2 | + 'function balanceOf(address owner) view returns (uint256)', |
| 3 | + 'function decimals() view returns (uint8)', |
| 4 | + 'function symbol() view returns (string)', |
| 5 | + |
| 6 | + 'function earned(address account) public view returns (uint256)', |
| 7 | + 'function allowance(address owner, address spender) external view returns (uint256)', |
| 8 | + |
| 9 | + 'function totalSupply() public view returns (uint256)', |
| 10 | + 'function currentReward() public view returns (uint256)', |
| 11 | + 'function lastTimeRewardApplicable() public view returns (uint256)', |
| 12 | + 'function rewardPerToken() public view returns (uint256)', |
| 13 | + |
| 14 | + 'function transfer(address to, uint amount) returns (boolean)', |
| 15 | + 'function burn(uint256 amount, bytes32 to) returns (boolean)', |
| 16 | + 'function approve(address spender, uint256 amount) external returns (bool)', |
| 17 | + 'function stake(uint256 amount) external', |
| 18 | + 'function withdraw(uint256 amount) external', |
| 19 | + 'function getReward() external', |
| 20 | + 'function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external', |
| 21 | + |
| 22 | + 'event Transfer(address indexed from, address indexed to, uint amount)', |
| 23 | +] |
0 commit comments