如何在Hyperledger结构中获取针对链代码的所有事务历史记录

时间:2016-11-07 13:38:04

标签: hyperledger hyperledger-fabric

我能够在Hyperledger(结构实现)中进行交易。我希望通过传递用户密钥来查看用户发起的所有事务及其有效负载详细信息。

例如:

A transfers 10 units to B
A transfers 5 units to C
D transfers 8 units to A

当我通过A键时,面料必须向我提供A的所有交易。 有什么办法吗?或者我应该使用哪个结构API函数调用?

5 个答案:

答案 0 :(得分:5)

/chain/blocks/{Block}端点在指定的块中携带有序的事务列表

使用/chain端点获取链的高度(块数),然后使用/chain/blocks/{Block} REST端点从每个块中检索事务。

答案 1 :(得分:4)

您可以在链代码中开发正确的索引和查询功能。

将您的详细信息存储在内部键/值存储(stub.PutState)中并将用户作为键的每个事务的含义,并返回与查询中的用户关联的所有事务(stub.GetState)。

答案 2 :(得分:2)

最好最简单的方法是使用 shim package 功能

  

GetHistoryForKey(键字符串)

正如文件所说:

  

可以通过链码调用GetHistoryForKey函数来返回跨时间键值的历史记录。   GetHistoryForKey旨在用于只读查询。

答案 3 :(得分:1)

如果有人需要Java SDk并进行链码组合。你去那里

在这里similar question

回答
  

Java代码

public List<HistoryDao> getUFOHistory(String key) throws Exception {
    String[] args = { key };
    Logger.getLogger(QueryChaincode.class.getName()).log(Level.INFO, "UFO communication history - " + args[0]);

    Collection<ProposalResponse> responses1Query = ucc.getChannelClient().queryByChainCode("skynetchaincode", "getHistoryForUFO", args);
    String stringResponse = null;
    ArrayList<HistoryDao> newArrayList = new ArrayList<>();
    for (ProposalResponse pres : responses1Query) {
        stringResponse = new String(pres.getChaincodeActionResponsePayload());
        Logger.getLogger(QueryChaincode.class.getName()).log(Level.INFO, stringResponse);
        newArrayList = gson.fromJson(stringResponse, new TypeToken<ArrayList<HistoryDao>>() {
        }.getType());
    }
    if (null == stringResponse)
        stringResponse = "Not able to find any ufo communication history";
    return newArrayList;
}

然后您进行chancode实现,如下所示

  

执行代码

func (t *SmartContract) getHistoryForUFO(APIstub shim.ChaincodeStubInterface, args []string) sc.Response {

    if len(args) < 1 {
            return shim.Error("Incorrect number of arguments. Expecting 1")
    }

    ufoId := args[0]
    resultsIterator, err := APIstub.GetHistoryForKey(ufoId)
    if err != nil {
            return shim.Error(err.Error())
    }
    defer resultsIterator.Close()

    var buffer bytes.Buffer
    buffer.WriteString("[")

    bArrayMemberAlreadyWritten := false
    for resultsIterator.HasNext() {
            response, err := resultsIterator.Next()
            if err != nil {
                    return shim.Error(err.Error())
            }
            // Add a comma before array members, suppress it for the first array member
            if bArrayMemberAlreadyWritten == true {
                    buffer.WriteString(",")
            }
            buffer.WriteString("{\"TxId\":")
            buffer.WriteString("\"")
            buffer.WriteString(response.TxId)
            buffer.WriteString("\"")

            buffer.WriteString(", \"Value\":")
            // if it was a delete operation on given key, then we need to set the
            //corresponding value null. Else, we will write the response.Value
            //as-is (as the Value itself a JSON)
            if response.IsDelete {
                    buffer.WriteString("null")
            } else {
                    buffer.WriteString(string(response.Value))
            }

            buffer.WriteString(", \"Timestamp\":")
            buffer.WriteString("\"")
            buffer.WriteString(time.Unix(response.Timestamp.Seconds, int64(response.Timestamp.Nanos)).String())
            buffer.WriteString("\"")

            buffer.WriteString(", \"IsDelete\":")
            buffer.WriteString("\"")
            buffer.WriteString(strconv.FormatBool(response.IsDelete))
            buffer.WriteString("\"")

            buffer.WriteString("}")
            bArrayMemberAlreadyWritten = true
    }
    buffer.WriteString("]")

    fmt.Printf("- History returning:\n%s\n", buffer.String())
    return shim.Success(buffer.Bytes())

}

如果您有疑问,请告诉我。

答案 4 :(得分:0)

如果您使用的是composer-client,则只需使用Historian命令即可。

 var historian = await businessNetworkConnection.getHistorian();
 historian.getAll().then(historianRecords => console.log(historianRecords));