Skip to content

Instantly share code, notes, and snippets.

@scyclow
Last active March 18, 2018 19:15
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 scyclow/9ddbdf8d998d80989c187ca5ec1c6e98 to your computer and use it in GitHub Desktop.
Save scyclow/9ddbdf8d998d80989c187ca5ec1c6e98 to your computer and use it in GitHub Desktop.
Hello World Contract
pragma solidity ^0.4.17;
/*
Copyright 2017, FastCashMoneyPlus.biz
This contract is for educational purposes only, and is presented WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED.
*/
contract FastCashMoneyPlus {
uint public totalSupply;
uint256 public fastCashBank;
uint public decimals = 18;
string public name = "FastCashMoneyPlus";
mapping (address => uint) public balanceOf;
function FastCashMoneyPlus() {
totalSupply = 1000000 * 10 ** uint256(decimals);
fastCashBank = totalSupply;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment