Skip to content

Instantly share code, notes, and snippets.

View FOFIE2002's full-sized avatar

Fofie Fopa Elisabeth FOFIE2002

View GitHub Profile
@FOFIE2002
FOFIE2002 / IERC20.sol
Created August 18, 2025 16:33 — forked from Signor1/IERC20.sol
Mainnet Forking
// 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);
}