Merkle Tree 概念 来源 https://www.cnblogs.com/fengzhiwu/p/5524324.html /*最近在看Ethereum,其中一个重要的概念是Merkle Tree,以前从来没有听说过,所以查了些资料,学习了Merkle Tree的知识,因为接触时间不长,对 ...
分类:
其他好文 时间:
2018-12-18 19:39:20
阅读次数:
187
原文链接:醒者呆的博客园,https://www.cnblogs.com/Evsward/p/multi_index.html 智能合约操作链数据库是很常见的应用场景。EOS提供了专门的工具来做这件事(相当于Ethereum的leveldb),专业术语叫做持久化API,本文将完整严密地介绍这个工具以 ...
分类:
数据库 时间:
2018-12-14 14:56:25
阅读次数:
163
pragma solidity ^0.4.10; contract Delete{ /* delete可用于任何变量(除mapping),将其设置成默认值 bytes/string:删除所有元素,其长度变为0 bytes32:重置所有索引的值 mapping:什么都不会发生 mapping(key=... ...
分类:
其他好文 时间:
2018-12-07 20:48:58
阅读次数:
217
pragma solidity ^0.4.0; contract EMath{ string public _a="lin"; function f() public{ modify(_a); } //function modify(string storage name) private{ fun... ...
分类:
其他好文 时间:
2018-12-06 20:16:53
阅读次数:
371
pragma solidity ^0.4.0; contract base{ address public _owner=msg.sender; uint _a; string internal _b ; uint private _c; //uint external _d;ParserError... ...
分类:
其他好文 时间:
2018-12-06 01:32:56
阅读次数:
277
据Ethereum World News消息,自从2009年中本聪提出比特币的概念以来,比特币已经被“宣布死亡”了328次!而最近的一次宣判来自瑞银Paul Donovan发布的《我来埋葬比特币,不是为了赞美它》。在这次熊市里,比特币价格比最高点下跌了80%,而在此前,比特币还经历过3次大幅下跌,分... ...
分类:
其他好文 时间:
2018-12-05 12:10:02
阅读次数:
219
https://github.com/ethereum/EIPs/blob/master/EIPS/eip-725.md 725 Proxy Identity Fabian Vogelsteller (@frozeman) https://github.com/ethereum/EIPs/issue ...
分类:
其他好文 时间:
2018-11-23 16:47:32
阅读次数:
155
https://github.com/ethereum/EIPs/issues/735 Abstract The following describes standard functions for adding, removing and holding of claims.These claim ...
分类:
其他好文 时间:
2018-11-23 16:46:51
阅读次数:
190
Utilities for handling Ethereum keys ethereumjs-wallet A lightweight wallet implementation. At the moment it supports key creation and conversion betw ...
分类:
Web程序 时间:
2018-11-21 15:59:50
阅读次数:
471
pragma solidity ^0.4.4; contract funder{ //0xca35b7d915458ef540ade6068dfe2f44e8fa733c //0x14723a09acff6d2a60dcdf7aa4aff308fddc160c :10 //0x583031d1113... ...
分类:
其他好文 时间:
2018-11-19 20:21:00
阅读次数:
156