mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
22 lines
530 B
Solidity
22 lines
530 B
Solidity
// "SPDX-License-Identifier: UNLICENSED"
|
|
pragma solidity 0.7.4;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
interface IInstaMakerResolver {
|
|
struct VaultData {
|
|
uint256 id;
|
|
address owner;
|
|
string colType;
|
|
uint256 collateral;
|
|
uint256 art;
|
|
uint256 debt;
|
|
uint256 liquidatedCol;
|
|
uint256 borrowRate;
|
|
uint256 colPrice;
|
|
uint256 liquidationRatio;
|
|
address vaultAddress;
|
|
}
|
|
|
|
function getVaultById(uint256 id) external view returns (VaultData memory);
|
|
}
|