소스 검색

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);
     }