Skip to content

Instantly share code, notes, and snippets.

View shahzaintariq's full-sized avatar
👨‍🎓
Studying

Shahzain Tariq shahzaintariq

👨‍🎓
Studying
View GitHub Profile
@giladHaimov
giladHaimov / BasicERC20.sol
Last active March 19, 2024 20:03
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);