Last active
May 18, 2018 23:17
-
-
Save andredublin/f2ff9d32cfc85fc419d4ed9eaef56f00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.23; | |
import "./Ownable.sol"; | |
contract MyToken is Ownable { | |
/* This creates an array with all balances */ | |
mapping (address => uint256) public balanceOf; | |
/* Initializes contract with initial supply tokens to the creator of the contract */ | |
constructor(uint256 initialSupply) public { | |
balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens | |
} | |
/* Send coins */ | |
function transfer(address _to, uint256 _value) public onlyOwner { | |
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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment