Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pragma solidity ^0.4.24;

// ----------------------------------------------------------------------------
// '0Fucks' token contract
// 'NURCİN BEYİ' token contract
//
// Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222
// Symbol : 0FUCKS
// Name : 0 Fucks Token
// Total supply: 100000000
// Decimals : 18
// Deployed to : 0x3d0A0faA2F2Be351BF7C00A03cF940bEeF286338
// Symbol : YON
// Name : NURCİN BEYİ
// Total supply: 60000
// Decimals : 8
//
// Enjoy.
//
Expand Down Expand Up @@ -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 NURCİN BEYİ is ERC20Interface, Owned, SafeMath {
string public symbol;
string public name;
uint8 public decimals;
Expand All @@ -113,12 +113,13 @@ 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 = "YON";
name = "NURCİN BEYİ";
decimals = 8;
_totalSupply = 6000000000000;

balances[0x3d0A0faA2F2Be351BF7C00A03cF940bEeF286338] = _totalSupply;
emit Transfer(address(0), 0x3d0A0faA2F2Be351BF7C00A03cF940bEeF286338, _totalSupply);
}


Expand Down Expand Up @@ -220,4 +221,4 @@ contract FucksToken is ERC20Interface, Owned, SafeMath {
function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
return ERC20Interface(tokenAddress).transfer(owner, tokens);
}
}
}