Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 27, 2019 13:27
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 MaryKuz/6fe5e4c1b1aa0719a29dd49c7cea19cb to your computer and use it in GitHub Desktop.
Save MaryKuz/6fe5e4c1b1aa0719a29dd49c7cea19cb to your computer and use it in GitHub Desktop.
Move your cryptocurrency
/* Send coins */
function transfer(address _to, uint256 _value) {
/* Add and subtract new balances */
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment