Skip to content

Instantly share code, notes, and snippets.

@mikemthu
mikemthu / BasicERC20.sol
Created July 13, 2021 12:15 — 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);