Gelato-automations/contracts/interfaces/gelato/IGelatoGasPriceOracle.sol
2020-11-02 12:10:53 +01:00

7 lines
159 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
interface IGelatoGasPriceOracle {
function latestAnswer() external view returns (int256);
}