From 1f9f1a623dad6d5db0367c7b62742bfaad9f745e Mon Sep 17 00:00:00 2001 From: Darek87111 <82703646+Darek87111@users.noreply.github.com> Date: Thu, 29 Apr 2021 11:08:50 +0200 Subject: [PATCH] =?UTF-8?q?Update=20and=20rename=20contracts/erc20=5Ftutor?= =?UTF-8?q?ial.sol=20to=20Um=C3=B3w/erc20=5Ftutorial.sol?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../erc20_tutorial.sol" | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename contracts/erc20_tutorial.sol => "Um\303\263w/erc20_tutorial.sol" (94%) diff --git a/contracts/erc20_tutorial.sol "b/Um\303\263w/erc20_tutorial.sol" similarity index 94% rename from contracts/erc20_tutorial.sol rename to "Um\303\263w/erc20_tutorial.sol" index 70d8276..0407020 100644 --- a/contracts/erc20_tutorial.sol +++ "b/Um\303\263w/erc20_tutorial.sol" @@ -1,11 +1,11 @@ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- -// '0Fucks' token contract +// 'Abi' token contract // -// Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222 -// Symbol : 0FUCKS -// Name : 0 Fucks Token +// Deployed to : 0x468E0f0CCb3c5F3c9557BDe7eA0d8ABA964F9081 +// Symbol : Abi Token +// Name : Abi Token // Total supply: 100000000 // Decimals : 18 // @@ -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 AbiToken is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; @@ -113,8 +113,8 @@ contract FucksToken is ERC20Interface, Owned, SafeMath { // Constructor // ------------------------------------------------------------------------ constructor() public { - symbol = "0FUCKS"; - name = "0 Fucks Token"; + symbol = "AbiToken"; + name = "0 Abi Token"; decimals = 18; _totalSupply = 100000000000000000000000000; balances[0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222] = _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 +}