Skip to content

Instantly share code, notes, and snippets.

View HappyLuckYesterday's full-sized avatar

happy HappyLuckYesterday

View GitHub Profile
@HappyLuckYesterday
HappyLuckYesterday / BasicERC20.sol
Created December 25, 2024 00:50 — forked from giladHaimov/BasicERC20.sol
Basic ERC20 implementation
pragma solidity ^0.4.19;
contract ERC20Basic {
string public constant name = "ERC20Basic";
string public constant symbol = "BSC";
uint8 public constant decimals = 18;
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);