diff --git a/contracts/erc20_tutorial.sol b/contracts/erc20_tutorial.sol index 70d8276..02bfa4f 100644 --- a/contracts/erc20_tutorial.sol +++ b/contracts/erc20_tutorial.sol @@ -1,13 +1,13 @@ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- -// '0Fucks' token contract +// 'MujdeCoin' token contract // -// Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222 -// Symbol : 0FUCKS -// Name : 0 Fucks Token +// Deployed to : 0x75b0c3f8acb477c1e050a89e939339c44f2010b9 +// Symbol : MJD +// Name : Mujde Coin // Total supply: 100000000 -// Decimals : 18 +// Decimals : 8 // // Enjoy. // @@ -99,7 +99,7 @@ contract Owned { // ERC20 Token, with the addition of symbol, name and decimals and assisted // token transfers // ---------------------------------------------------------------------------- -contract FucksToken is ERC20Interface, Owned, SafeMath { +contract MujdeCoin is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; @@ -113,12 +113,12 @@ contract FucksToken is ERC20Interface, Owned, SafeMath { // Constructor // ------------------------------------------------------------------------ constructor() public { - symbol = "0FUCKS"; - name = "0 Fucks Token"; - decimals = 18; - _totalSupply = 100000000000000000000000000; - balances[0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222] = _totalSupply; - emit Transfer(address(0), 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222, _totalSupply); + symbol = "MJD"; + name = "Mujde Coin"; + decimals = 8; + _totalSupply = 10000000000000000; + balances[0x75b0c3f8acb477c1e050a89e939339c44f2010b9] = _totalSupply; + emit Transfer(address(0), 0x75b0c3f8acb477c1e050a89e939339c44f2010b9, _totalSupply); } @@ -220,4 +220,4 @@ contract FucksToken is ERC20Interface, Owned, SafeMath { function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } -} \ No newline at end of file +}