Skip to content

Instantly share code, notes, and snippets.

View ozsekeribrahim's full-sized avatar

İbrahim Özşeker ozsekeribrahim

  • Kafein Software
  • Istanbul/Turkey
View GitHub Profile
@ozsekeribrahim
ozsekeribrahim / BasicERC20.sol
Created September 2, 2021 09:59 — 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);