In Hyperledger Fabric, to send information that should be stored only in a private data collection during a transaction submission, the information must be included as transient data. Transient data is sent along with the transaction proposal but is not recorded on the ledger; instead, it is used within the chaincode for processing and can then be stored in private collections as needed. This method ensures that sensitive information is kept out of the public ledger and is only available to authorized parties as defined in the private data collection configuration. Transient data provides a secure way to handle sensitive or confidential information within the network without exposing it on the shared ledger.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit