mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
20 lines
411 B
Solidity
20 lines
411 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);
|
||
|
}
|