Gelato-automations/contracts/interfaces/IMakerPriceFeed.sol
2020-10-23 16:46:29 +02:00

7 lines
148 B
Solidity

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