dsa-connectors/contracts/mainnet/connectors/instaLite/interface.sol

19 lines
374 B
Solidity
Raw Normal View History

2022-04-01 17:03:30 +00:00
//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
2022-04-02 18:32:38 +00:00
interface IInstaLite {
2022-04-06 02:27:57 +00:00
2022-04-01 17:03:30 +00:00
function supplyEth(address to_) external payable returns (uint256);
function supply(
address token_,
uint256 amount_,
address to_
) external returns (uint256);
function withdraw(uint256 amount_, address to_) external returns (uint256);
2022-04-06 02:27:57 +00:00
function deleverage(uint amt_) external;
2022-04-01 17:03:30 +00:00
}