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

19 lines
364 B
Solidity
Raw Normal View History

2020-10-30 17:35:11 +00:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
interface IConnectCompound {
function borrow(
address token,
uint256 amt,
uint256 getId,
uint256 setId
) external payable;
function deposit(
address token,
uint256 amt,
uint256 getId,
uint256 setId
) external payable;
}