proposal-45/contracts/interfaces/IERC20.sol

6 lines
163 B
Solidity
Raw Normal View History

2024-01-03 22:12:52 +03:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
interface IERC20 {
function approve(address spender, uint256 amount) external returns (bool);
}