Gelato-automations/contracts/interfaces/tokens/IERC20.sol

9 lines
175 B
Solidity
Raw Normal View History

2020-11-02 10:51:49 +00:00
// SPDX-License-Identifier: MIT
pragma solidity 0.7.4;
interface IERC20 {
function transfer(address recipient, uint256 amount)
external
returns (bool);
}