mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma solidity ^0.7.0;
 | |
| pragma experimental ABIEncoderV2;
 | |
| 
 | |
| interface IStakingRewards {
 | |
|   function stake(uint256 amount) external;
 | |
|   function withdraw(uint256 amount) external;
 | |
|   function getReward() external;
 | |
|   function balanceOf(address) external view returns(uint);
 | |
| }
 | |
| 
 | |
| interface StakingERC20Mapping {
 | |
| 
 | |
|   struct StakingData {
 | |
|     address stakingPool;
 | |
|     address stakingToken;
 | |
|     address rewardToken;
 | |
|   }
 | |
| 
 | |
|   function stakingMapping(bytes32) external view returns(StakingData memory);
 | |
| 
 | |
| } | 
