c. https://github.com/DigitalAssetCom/hlp-candidate
DAC本家的hlp
实现语言:JAVA
d. https://github.com/ElementsProject/elements
BlockStream 推荐的 elements 方案
实现语言:C++
2)https://github.com/IBM-Blockchain/marbles
IBM 本家基于bluemix云平台的推荐方案,与bluemix绑定
实现语言:js on Node.js
3) https://github.com/openchain/openchain
Coinprism公司开源的openchain
实现语言;C#
4)https://github.com/HydraChain/hydrachain
基于以太坊平台的私有链技术,名字好~
摘要描述:
HydraChain is an extension of the Ethereum platform which adds support for creating Permissioned Distributed Ledgers. Its primary domain of application are private chain or consortium chain setups.
5)https://github.com/myblockchain/myblockchain
类SQL方式的Blockchain,很新颖有趣。
实现语言:C++
forked by: mysql-server
摘要描述:
Start your own blockchain with the following simple command:
CREATE TABLE blocks (
id INT,
previous_block_id INT) TYPE=innodb;
复制代码
Don't forget to generate the Genesis block! Everyone can feel like Satoshi in the private Blockchain world!
INSERT INTO blocks (id, previous_block_id) VALUES (42, NULL);
复制代码
Now you are free to create your own transactions, make coins appear out of thin air, send them to yourself or your friends, censor the transactions of your competitors and collect transaction fees that are actually worth your time.