mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
13 lines
324 B
Solidity
13 lines
324 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity 0.7.4;
|
|
|
|
interface IMcdManager {
|
|
function ilks(uint256) external view returns (bytes32);
|
|
|
|
function urns(uint256) external view returns (address);
|
|
|
|
function vat() external view returns (address);
|
|
|
|
function owns(uint256) external view returns (address);
|
|
}
|