Hyperledger Fabric:获取所有区块的区块数据
我刚刚为我和我的团队设置了一个带有链码(node js)的 Hyperledger Fabric 网络(2.2)。
我们正在使用 用于 NodeJS 的 Hyperledger SDK< /a>(版本 2.2)用于网络交互。
现在的问题是,我们需要查询网络中所有交易的区块数据。
我们如何获取所有现有的块并查询它们?
SDK 1.4 中提供了channel.getBlockbyTXid()。
最新的SDK版本有解决办法吗?
I just set up a Hyperledger Fabric network (2.2) with chaincode(node js) for me and my team.
We are using Hyperledger SDK for NodeJS (Version 2.2) for network interaction.
Now the problem is, we need to query block data for all transactions in the network.
How can we get all existing blocks and query them?
With SDK 1.4, there was channel.getBlockbyTXid().
Is there a solution for the newest SDK Version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
QSCC
Chaincode 并调用GetBlockByNumber
和GetTransactionByID
等函数。例子
Use the
QSCC
Chaincode and invoke functions likeGetBlockByNumber
andGetTransactionByID
.Example