Browse Source

init files

Ted 5 years ago
parent
commit
6d443fa3e1
2 changed files with 11 additions and 3 deletions
  1. 10 2
      README.md
  2. 1 1
      contracts/eip20/EIP20Factory.sol

File diff suppressed because it is too large
+ 10 - 2
README.md


+ 1 - 1
contracts/eip20/EIP20Factory.sol

@@ -11,7 +11,7 @@ contract EIP20Factory {
 
     function EIP20Factory() public {
         //upon creation of the factory, deploy a EIP20 (parameters are meaningless) and store the bytecode provably.
-        address verifiedToken = createEIP20(10000, "Verify Token", 3, "VTX");
+        address verifiedToken = createEIP20(100000000, "TedToken", 18, "TEC");
         EIP20ByteCode = codeAt(verifiedToken);
     }