Gelato-automations/contracts/interfaces/IMakerPriceFeed.sol

7 lines
148 B
Solidity
Raw Normal View History

// "SPDX-License-Identifier: UNLICENSED"
pragma solidity 0.7.4;
interface IMakerPriceFeed {
function read() external view returns (bytes32);
}