mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
9 lines
175 B
Solidity
9 lines
175 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity 0.7.4;
|
||
|
|
||
|
interface IERC20 {
|
||
|
function transfer(address recipient, uint256 amount)
|
||
|
external
|
||
|
returns (bool);
|
||
|
}
|