Gelato-automations/contracts/interfaces/gelato/IGelatoGasPriceOracle.sol

7 lines
159 B
Solidity
Raw Normal View History

2020-10-30 17:35:11 +00:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
interface IGelatoGasPriceOracle {
function latestAnswer() external view returns (int256);
}