CoAP Gateway for Hyperledger Fabric (#66)
- CoAP Gateway for Hyperledger Fabric RFC
- Added a new RFC proposing a CoAP gateway to enable IoT and resource-constrained devices to interact with Fabric networks.
- Defined lightweight, UDP-based communication using CoAP protocol with DTLS security for encrypted and authenticated connections.
- Outlined the gateway architecture as an optional peer service that acts as a protocol converter.
- Included four core endpoints: /evaluate, /endorse, /submit, and /events for transaction operations.
- Provided integration with existing Fabric MSP for device identity management and X.509 certificate authentication.
- Ensured backward compatibility by making the CoAP gateway an optional feature that doesn’t affect existing gRPC gateway functionality.
- Added comprehensive error handling with appropriate CoAP response codes and security model integration.
- Included example use cases for supply chain tracking and smart city applications with IoT sensors.
Signed-off-by: bernardo.figueiredo bernardo.figueiredo@voidsoftware.com
- Improve markdown formatting and readability
- Standardizes the document structure to improve readability
- Standardizes heading levels and adds consistent spacing between sections
- The technical content remains unchanged, but the overall document is now more consistent and easier to read.
Signed-off-by: bernardo.figueiredo bernardo.figueiredo@voidsoftware.com
- Add CommitStatus endpoint to CoAP Gateway RFC
- Add /commit-status endpoint with SignedCommitStatusRequest/CommitStatusResponse
- Clarify submit behavior: waits for orderer submission
- Update endpoint count and API documentation for complete gateway parity
- Add CommitStatusHandler to core components
Enables IoT devices to check transaction status asynchronously after submission.
Signed-off-by: bernardo.figueiredo bernardo.figueiredo@voidsoftware.com
- Switch CoAP Gateway to protoc plugin with dual-cert security
Key changes:
- Automated client generation via protoc plugin
- Clarify dual-certificate model follows standard Fabric pattern
- Update endpoints to RPC-style (/rpc/gateway.Gateway/{Method})
- Add implementation details (peer lifecycle, context flow, error mapping)
- Add developer experience section with code examples
- Remove duplicate MSP configuration (uses peer-level config)
- Streamline security explanations to emphasize consistency with gRPC
Signed-off-by: bernardo.figueiredo bernardo.figueiredo@voidsoftware.com
Signed-off-by: bernardo.figueiredo bernardo.figueiredo@voidsoftware.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
layout: default title: RFCs Process nav_order: 2
Hyperledger Fabric RFCs Process
Many changes, including bug fixes and documentation improvements can be implemented and reviewed via the normal GitHub pull request workflow.
Some changes though are substantial, and we ask that these be put through a bit of a design process and produce a consensus among the Fabric maintainers and broader community.
The RFC (request for comments) process is intended to provide a consistent and controlled path for major changes to Fabric and other official project components, so that all stakeholders can be confident about the direction in which Fabric is evolving.
This process is intended to be substantially similar to the RFCs process other Hyperledger teams have adopted, customized as necessary for use with Fabric. The
README.mdand0000-template.mdfiles were forked from the Sawtooth RFCs repo, which was derived from the Rust project.Table of Contents
When you need to follow this process
You need to follow this process if you intend to make substantial changes to Fabric or any of its sub-components including but not limited to fabric-baseimage, fabric-sdk-node, fabric-sdk-java, fabric-ca, fabric-chaincode-go, fabric-chaincode-java, fabric-chaincode-node, fabric-chaincode-evm, fabric-protos, fabric-protos-go, or the RFC process itself. What constitutes a substantial change is evolving based on community norms and varies depending on what part of the ecosystem you are proposing to change, but may include the following:
Some changes do not require an RFC:
If you submit a pull request to implement a new feature without going through the RFC process, it may be closed with a polite request to submit an RFC first.
Before creating an RFC
A hastily-proposed RFC can hurt its chances of acceptance. Low quality proposals, proposals for previously-rejected changes, or those that don’t fit into the near-term roadmap, may be quickly rejected, which can be demotivating for the unprepared contributor. Laying some groundwork ahead of the RFC can make the process smoother.
Although there is no single way to prepare for submitting an RFC, it is generally a good idea to pursue feedback from other project developers beforehand, to ascertain that the RFC may be desirable; having a consistent impact on the project requires concerted effort toward consensus-building.
The most common preparations for writing and submitting an RFC include talking the idea over to the Fabric mailing list.
As a rule of thumb, receiving encouraging feedback from long-standing project developers, and particularly the project’s maintainers is a good indication that the RFC is worth pursuing.
What the process is
In short, to get a major feature added to Fabric, one must first get the RFC merged into the RFC repository as a markdown file. At that point the RFC is “active” and may be implemented with the goal of eventual inclusion into Fabric.
0000-template.mdtotext/0000-my-feature.md, where “my-feature” is descriptive. Don’t assign an RFC number yet.The RFC life-cycle
Once an RFC is merged, it becomes “active” and developers may implement it and submit the code change as a pull request to the corresponding Fabric repo. Being “active” is not a rubber stamp, and it does not mean the change will ultimately be merged; it does mean that in principle all the major stakeholders have agreed to the change, and are amenable to merging it.
Furthermore, the fact that a given RFC has been accepted and is “active” implies nothing about what priority is assigned to its implementation, nor does it imply anything about whether a Fabric developer has been assigned the task of implementing the feature. While it is not necessary that the author of the RFC also write the implementation, it is by far the most effective way to see an RFC through to completion: authors should not expect that other project developers will take on responsibility for implementing their accepted feature.
Modifications to active RFCs can be done in follow-up pull requests. We strive to write each RFC in a manner that it will reflect the final design of the feature; but the nature of the process means that we cannot expect every merged RFC to actually reflect what the end result will be at the time of the next major release.
In general, once accepted, RFCs should not be substantially changed. Only very minor changes should be submitted as amendments. More substantial changes should be new RFCs, with a note added to the original RFC. Exactly what counts as a “very minor change” is up to the maintainers to decide.
Reviewing RFCs
While the RFC pull request is up, the maintainers may schedule meetings with the author and/or relevant stakeholders to discuss the issues in greater detail, and in some cases the topic may be discussed at a contributors meeting. In either case a summary from the meeting will be posted back to the RFC pull request.
The Fabric maintainers make the final decisions about RFCs after the benefits and drawbacks are well understood. These decisions can be made at any time, but the maintainers will regularly issue decisions. When a decision is made, the RFC pull request will either be merged or closed. In either case, if the reasoning is not clear from the discussion in thread, the maintainers will add a comment describing the rationale for the decision.
Implementing an RFC
Some accepted RFCs represent vital changes that need to be implemented right away. Other accepted RFCs can represent changes that can wait until a developer feels like doing the work. Every accepted RFC has an associated issue tracking its implementation in the Fabric issues.
The author of an RFC is not obligated to implement it. Of course, the RFC author, as any other developer, is welcome to post an implementation for review after the RFC has been accepted. Use GitHub issues for this.
License
This repository is licensed under Apache License, Version 2.0 (LICENSE).
Contributions
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.