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

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);
}