2018年11月15日

摘要: pragma solidity ^0.4.0; contract modifierTest{ uint public v1; uint constant v2 =10; //uint constant v3; Uninitialized "constant" variable string public v4='test1'; string c... 阅读全文

posted @ 2018-11-15 18:04 eilinge 阅读(297) 评论(0) 推荐(0) 编辑

摘要: abi.encode(...) returns (bytes):对给定的参数进行ABI编码。 abi.encodePacked(...) returns (bytes): Performes packed encoding of the given arguments abi.encodeWithS 阅读全文

posted @ 2018-11-15 16:06 eilinge 阅读(587) 评论(0) 推荐(0) 编辑

摘要: pragma solidity ^0.4.0; contract Test{ address _owner; uint160 _c; constructor() public{ _owner = 0xca35b7d915458ef540ade6068dfe2f44e8fa733c; _c = 115441409061981179681... 阅读全文

posted @ 2018-11-15 14:26 eilinge 阅读(1094) 评论(0) 推荐(0) 编辑