浏览代码

init files

Ted 6 年之前
父节点
当前提交
6d443fa3e1
共有 2 个文件被更改,包括 11 次插入3 次删除
  1. 10 2
      README.md
  2. 1 1
      contracts/eip20/EIP20Factory.sol

文件差异内容过多而无法显示
+ 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);
     }