Skip to content

Commit 909d5d5

Browse files
Merge branch 'feature/testTokenCreation' of https://github.com/matterinc/web3swift into feature/testTokenCreation
2 parents 9ba1a39 + 29235a8 commit 909d5d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

TestToken/Token/Web3SwiftToken.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ pragma solidity ^0.4.24;
22

33
import "../Helpers/TokenBasics/ERC20.sol";
44

5-
contract Web3SwiftToken is ERC20 {
5+
contract web3swift is ERC20 {
66

7-
string public constant name = "Web3Swift";
8-
string public constant symbol = "W3S";
7+
string public constant name = "web3swift";
8+
string public constant symbol = "w3s";
99
uint8 public constant decimals = 18;
1010

11-
uint256 public constant INITIAL_SUPPLY = 10000 * (10 ** uint256(decimals));
11+
uint256 public constant INITIAL_SUPPLY = 1024 * (10 ** uint256(decimals));
1212

1313
/**
1414
* @dev Constructor that gives msg.sender all of existing tokens.

0 commit comments

Comments
 (0)