mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
9 lines
422 B
Solidity
9 lines
422 B
Solidity
pragma solidity ^0.8.6;
|
|
|
|
interface P1M2 {
|
|
|
|
function supply(address token_, uint amount_) external returns (uint itokenAmount_);
|
|
function withdraw(address token_, uint amount_) external returns (uint itokenAmount_);
|
|
function withdrawItoken(address token_, uint itokenAmount_) external returns (uint amount_);
|
|
function claim(address user_, address token_) external returns (uint[] memory updatedRewards_);
|
|
} |