How do we enforce privacy while providing tracing of provenance using multiple channels in Hyperledger Fabric v1.0?

后端 未结 3 1692
无人及你
无人及你 2021-02-14 08:03

In Hyperledger Fabric v0.6, a supply chain app can be implemented that allows tracing of provenance and avoids double-spending (i.e., distributing/selling items more than it has

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-14 08:24

    At the moment there is no straight forward way of providing provenance across two different channels within Hyperledger Fabric 1.0. There few directions to support such scenarios:

    1. First one is to have an ability to keep portions of the data of the ledger and provide discrete segregation within the channel, the work item described here: FAB-1151.

    2. Additionally there is proposal of adding support for private data while maintaining the ability to proof existence and ownership of claimed asset was posted in mailing list.

    What you can do currently is to leverage application side encryption to provide privacy and keep all related transactions on the same channel, e.g. same ledger (pretty much similar to approach you had back in v0.6).

提交回复
热议问题