mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
7 lines
159 B
Solidity
7 lines
159 B
Solidity
|
// SPDX-License-Identifier: UNLICENSED
|
||
|
pragma solidity 0.7.4;
|
||
|
|
||
|
interface IGelatoGasPriceOracle {
|
||
|
function latestAnswer() external view returns (int256);
|
||
|
}
|