Skip to content

Instantly share code, notes, and snippets.

View yes00101's full-sized avatar
🏠
Working from home

Shawn yes00101

🏠
Working from home
View GitHub Profile
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
interface ITOKEN{
function approve(address spender, uint256 value) external;
function transfer(address to, uint256 value) external;
function transferFrom(
address from,
address to,