Skip to content

Instantly share code, notes, and snippets.

View Maridkhairullah's full-sized avatar

Maridkhairullah

View GitHub Profile
@Maridkhairullah
Maridkhairullah / BasicERC20.sol
Created August 18, 2021 20:07 — 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);