hwelltech block chain cpp sdk
Dependencies: EthernetInterface SDFileSystem mbed-rtos mbed uniqueCPUID
Fork of bcsdk by
bcsdk 是 block chain sdk 的简写。它是由江苏恒为信息科技有限公司开发的 BlockChain 的 基于 mbed os 的 C++ 版本SDK,它能帮助开发者快速的在支持 mbed os 的芯片上开发 BlockChain 的应用。 bcsdk 的demo文件中包含了BlockChain中的 Key、Account、Asset、Transaction等方面的示例。其中: (1) Key 加密私钥是区块链上的主要授权机制。他们控制资产单位的发行和转让。 资产或帐户将定义发行或转移所需的单个密钥。 在 Key_test.cpp 中,我们实现了: 创建HSM密钥 键入密钥别名的名称(例如'gold','silver','bronze'),密钥别名是用于区分密钥的标签。
(2) Asset 资产是一种可以在区块链上发布的值类型。资产的所有单位均可互换,可以在各方之间直接交易,无需发行人参与。 在 Asset_test.cpp 中,我们实现了: 创建资产 键入资产别名的名称(例如'gold','silver','bronze'),资产别名是用于区分资产的标签。 选择“Key”键以使用现有的HSM密键,此密钥将用于此帐户中资产单位的发放和转移。
(3) Account 加帐户是恒为区块链核心平台中的一个对象,通过创建和跟踪控制程序来跟踪区块链上的资产的所有权。创建帐户时,您提供一个或多个“root”密钥和仲裁。 在 Account_test.cpp 中,我们实现了: 创建帐户 1 输入帐户别名的名称(例如'alice','bob'),帐户别名是用于区分帐户的标签。 2 键入名称以生成新的HSM密钥(例如'alice key','bob key'),此密钥将用于此帐户中资产单位的发放和转移。
(4) Transaction 交易包含一个或多个输入,以及一个或多个输出。恒为区块链核心平台的API允许您使用操作(包括发出,支出和返还)构建交易。 在 Transaction_test.cpp 中,我们实现了: 资产的交易 1 添加“账户支出”操作 2 为资产别名选择“Asset” 3 输入“100”作为金额 4 添加“使用帐户控制”操作 5 为帐户别名选择“Account” 6 为资产别名选择“Asset” 7 输入“100”作为金额 8 “提交”
Diff: Transaction.h
- Revision:
- 10:aabd720e632c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Transaction.h Fri Nov 03 01:07:32 2017 +0000 @@ -0,0 +1,94 @@ +/*********************************************************************** + * Module: Transaction.h + * Author: Administrator + * Modified: 2017年9月8日 14:50:31 + * Purpose: Declaration of the class Transaction + * Comment: 恒为区块链核心上的单个事务。 + ***********************************************************************/ + +#if !defined(__Account_Transaction_h) +#define __Account_Transaction_h +#include <ctime> // struct tm +#include <string> +#include <map> +#include <list> +#include "Client.h" +#include "Input.h" +#include "Output.h" +#include "MbedJSONValue.h" + +using namespace std; + +class Object; +class Input; +class Output; + + +struct Actions +{ + string accounts_alias; + string asset_alias; + int amount; + MbedJSONValue reference_data; + string type; +}; + +class Transaction +{ +public: + std::string id; + struct tm timestamp; + std::string blockId; + int blockHeight; + int position; + map<string,Object> referenceData; + std::string isLocal; + list<Input> inputs; + list<Output> outputs; + + + void setId(const string newId){this->id = newId;}; + string getId(){return this->id;}; + + string m_type; + void setType(const string type){ this->m_type = type;}; + string getType(){ return this->m_type;}; + + string sender; + void setSender(const string & account){ this->sender = account; }; + + string receiver; + void setReceiver(const string & account){ this->receiver = account; }; + + int amount; + void setAmount(int amount){ this->amount = amount; }; + + string asset_alias; + void setAsset(const string & asset){ this->asset_alias = asset; }; + + + // 后续对应多账户的操作用map管理,暂时只支持少于两个账户的交易 + // 交易过程支持多对多的交易,而且和顺序没什么关系,只要amount达到平衡就可以 + map<string,Actions> m_mapActions; + vector<Actions> m_vctActions; + + + string buildTransaction(); + string buildTransaction(string type); + string buildTransaction(vector<Actions> &actions); + //string /mockhsm/sign-transaction; + string signTransaction(); + string submitTransaction(); + string listTransactions(); + + +protected: +private: + Client client; + MbedJSONValue m_valRep; + MbedJSONValue m_valXpub; + string m_strXpub; + +}; + +#endif \ No newline at end of file