Skip to content

Instantly share code, notes, and snippets.

View sm0kelt's full-sized avatar

Remigijus sm0kelt

  • Klaipėda
View GitHub Profile
### Keybase proof
I hereby claim:
* I am sm0kelt on github.
* I am remxera (https://keybase.io/remxera) on keybase.
* I have a public key ASD2tjlzBV5MvN5vNmfQWmIIIZmEipHLccQ5QOdHJNKbtQo
To claim this, I am signing this object:
@sm0kelt
sm0kelt / EIP20Interface.sol
Created December 8, 2020 21:31
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&runs=200&gist=
// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
pragma solidity ^0.4.21;
contract EIP20Interface {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
@sm0kelt
sm0kelt / EIP20Interface.sol
Created December 8, 2020 21:30
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&runs=200&gist=
// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
pragma solidity ^0.4.21;
contract EIP20Interface {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;