Skip to content

Instantly share code, notes, and snippets.

@treeder
Last active September 25, 2018 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save treeder/315211ef9621d2b042966575ffe6ab27 to your computer and use it in GitHub Desktop.
Save treeder/315211ef9621d2b042966575ffe6ab27 to your computer and use it in GitHub Desktop.
// Slightly modified from ETH website
pragma solidity ^0.4.24;
contract MyToken {
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
uint256 public totalSupply;
/* Initializes contract with initial supply tokens to the creator of the contract */
constructor() public {
uint256 initialSupply = 10000;
balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens
totalSupply = initialSupply;
}
/* Send coins */
function transfer(address _to, uint256 _value) public returns (bool success) {
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
require(balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
balanceOf[msg.sender] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment