mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
17 lines
306 B
Solidity
17 lines
306 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
interface IInstaLite {
|
|
function token() external view returns (address);
|
|
|
|
function importPosition(
|
|
address flashTkn_,
|
|
uint256 flashAmt_,
|
|
uint256 route_,
|
|
uint256 stEthAmt_,
|
|
uint256 wethAmt_,
|
|
uint256 getId,
|
|
uint256 setId
|
|
) external;
|
|
}
|