Gelato-automations/contracts/interfaces/InstaDapp/connectors/IConnectInstaPoolV2.sol

19 lines
388 B
Solidity
Raw Normal View History

2020-10-30 17:35:11 +00:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
2020-11-02 10:51:49 +00:00
interface IConnectInstaPoolV2 {
2020-10-30 17:35:11 +00:00
function flashBorrowAndCast(
address token,
uint256 amt,
uint256 route,
bytes memory data
) external payable;
function flashPayback(
address token,
uint256 amt,
uint256 getId,
uint256 setId
) external payable;
}