Last active
March 18, 2018 19:15
-
-
Save scyclow/9ddbdf8d998d80989c187ca5ec1c6e98 to your computer and use it in GitHub Desktop.
Hello World Contract
This file contains hidden or 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.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