mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
18 lines
363 B
Solidity
18 lines
363 B
Solidity
|
// "SPDX-License-Identifier: UNLICENSED"
|
||
|
pragma solidity 0.7.4;
|
||
|
pragma experimental ABIEncoderV2;
|
||
|
|
||
|
interface IInstaPoolResolver {
|
||
|
struct RouteData {
|
||
|
uint256 dydx;
|
||
|
uint256 maker;
|
||
|
uint256 compound;
|
||
|
uint256 aave;
|
||
|
}
|
||
|
|
||
|
function getTokenLimit(address token)
|
||
|
external
|
||
|
view
|
||
|
returns (RouteData memory);
|
||
|
}
|