This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.9; | |
| interface IERC20 { | |
| function approve(address _spender, uint256 _value) external; | |
| function balanceOf(address who) external view returns (uint256 balance); | |
| } |