mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
2a2158f89b
* feat: conditions debt ceiling and dust
25 lines
552 B
Solidity
25 lines
552 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity 0.7.4;
|
|
|
|
interface IVat {
|
|
function ilks(bytes32)
|
|
external
|
|
view
|
|
returns (
|
|
uint256,
|
|
uint256,
|
|
uint256,
|
|
uint256,
|
|
uint256
|
|
);
|
|
|
|
function dai(address) external view returns (uint256);
|
|
|
|
function urns(bytes32, address) external view returns (uint256, uint256);
|
|
|
|
function debt() external view returns (uint256);
|
|
|
|
// solhint-disable-next-line
|
|
function Line() external view returns (uint256);
|
|
}
|