proposal-42/contracts/interfaces/IERC20.sol

6 lines
151 B
Solidity
Raw Permalink Normal View History

2023-12-12 06:18:04 +00:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
interface IERC20 {
function transfer(address recipient, uint256 amount) external;
}