mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
10 lines
278 B
Solidity
10 lines
278 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.2;
|
|
|
|
interface IStakingRewards {
|
|
function stake(uint256 amount) external;
|
|
function withdraw(uint256 amount) external;
|
|
function getReward() external;
|
|
function balanceOf(address account) external view returns(uint256);
|
|
}
|