mirror of
https://github.com/tendermint/tendermint.git
synced 2026-08-31 13:16:59 +00:00
merge rfc documents together
This commit is contained in:
@@ -48,5 +48,11 @@ sections.
|
||||
- [RFC-008: Don't Panic](./rfc-008-don't-panic.md)
|
||||
- [RFC-009: Consensus Parameter Upgrades](./rfc-009-consensus-parameter-upgrades.md)
|
||||
- [RFC-010: P2P Light Client](./rfc-010-p2p-light-client.rst)
|
||||
- [RFC-011: Block Retention](./rfc-011-block-retention.md)
|
||||
- [RFC-012: Non-Zero Genesis](./rfc-012-nonzero-genesis.md)
|
||||
- [RFC-013: ED25519 Verification](./rfc-013-ed25519-verification.md)
|
||||
- [RFC-014: ABCI++](./rfc-014-abci++.md)
|
||||
- [RFC-015: Reverse Sync](./rfc-015-reverse-sync.md)
|
||||
- [RFC-016: Semantic Versioning](./rfc-016-semantic-versioning.md)
|
||||
|
||||
<!-- - [RFC-NNN: Title](./rfc-NNN-title.md) -->
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
|
Before Width: | Height: | Size: 2.5 MiB After Width: | Height: | Size: 2.5 MiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
@@ -1,4 +1,4 @@
|
||||
# RFC 001: Configurable Block Retention
|
||||
# RFC 011: Configurable Block Retention
|
||||
|
||||
## Changelog
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
- 2020-03-25: Use local config for snapshot interval (@erikgrinaker)
|
||||
- 2020-03-31: Use ABCI commit response for block retention hint
|
||||
- 2020-04-02: Resolved open questions
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 001](https://github.com/tendermint/spec/pull/84))
|
||||
|
||||
## Author(s)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# RFC 002: Non-Zero Genesis
|
||||
# RFC 012: Non-Zero Genesis
|
||||
|
||||
## Changelog
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
- 2020-07-28: Use weak chain linking, i.e. `predecessor` field (@erikgrinaker)
|
||||
- 2020-07-31: Drop chain linking (@erikgrinaker)
|
||||
- 2020-08-03: Add `State.InitialHeight` (@erikgrinaker)
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 002](https://github.com/tendermint/spec/pull/119))
|
||||
|
||||
## Author(s)
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# RFC 003: Ed25519 Verification
|
||||
# RFC 013: Ed25519 Verification
|
||||
|
||||
## Changelog
|
||||
|
||||
- August 21, 2020: initialized
|
||||
- 2020-08-21: Initial RFC
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 003](https://github.com/tendermint/spec/pull/144))
|
||||
|
||||
## Author(s)
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# RFC 004: ABCI++
|
||||
# RFC 014: ABCI++
|
||||
|
||||
## Changelog
|
||||
|
||||
- January 11, 2020: initialized
|
||||
- 2020-01-11: initialized
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 004](https://github.com/tendermint/spec/pull/254))
|
||||
|
||||
## Author(s)
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
# RFC 005: ReverseSync - fetching historical data
|
||||
# RFC 015: ReverseSync - fetching historical data
|
||||
|
||||
## Changelog
|
||||
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 005](https://github.com/tendermint/spec/pull/224))
|
||||
- 2021-04-19: Use P2P to gossip necessary data for reverse sync.
|
||||
- 2021-03-03: Simplify proposal to the state sync case.
|
||||
- 2021-02-17: Add notes on asynchronicity of processes.
|
||||
@@ -3,6 +3,7 @@
|
||||
## Changelog
|
||||
|
||||
- 2021-11-19: Initial Draft
|
||||
- 2021-02-11: Migrate RFC to tendermint repo (Originally [RFC 006](https://github.com/tendermint/spec/pull/365))
|
||||
|
||||
## Author(s)
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
# Request for Comments (RFC)
|
||||
|
||||
RFC stands for `Request for Comments`. It is a social device use to float and polish an idea prior to the inclusion into an existing or new spec/paper/research topic.
|
||||
|
||||
An RFC should not be used for bug reports or trivial discussions - the overhead of compiling an RFC does not justify it.
|
||||
|
||||
An RFC should not consist only of a problem statement (use a standard issue for that).
|
||||
|
||||
A RFC should consist of:
|
||||
|
||||
- Changelog
|
||||
- Context on the relevant goals and the current state
|
||||
- Proposed Solution
|
||||
- Summary of pros and cons
|
||||
- References
|
||||
|
||||
If recorded decisions turned out to be lacking, convene a discussion, record the new decisions here, and then modify the code to match.
|
||||
|
||||
**Note the context/background should be written in the present tense.**
|
||||
|
||||
Some RFC's will be presented at a Tendermint Dev Session. If you are an outside contributor and have submitted a RFC, you may be invited to present your RFC at one of these calls.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [001-block-retention](./001-block-retention.md)
|
||||
- [002-nonzero-genesis](./002-nonzero-genesis.md)
|
||||
- [003-ed25519-verification](./003-ed25519-verification.md)
|
||||
- [004-abci++](./004-abci++.md)
|
||||
- [005-reverse-sync](./005-reverse-sync.md)
|
||||
- [006-semantic-versioning](./006-semantic-versioning.md)
|
||||
@@ -1,39 +0,0 @@
|
||||
# RFC {RFC-NUMBER}: {TITLE}
|
||||
|
||||
## Changelog
|
||||
|
||||
- {date}: {changelog}
|
||||
|
||||
## Author(s)
|
||||
|
||||
- {First Name} {github handle}
|
||||
|
||||
## Context
|
||||
|
||||
> This section contains all the context one needs to understand the current state, and why there is a problem. It should be as succinct as possible and introduce the high level idea behind the solution.
|
||||
|
||||
## Proposal
|
||||
|
||||
> It should contain a detailed breakdown of how the problem should be resolved including diagrams and other supporting materials needed to present the case and implementation roadmap for the proposed changes. The reader should be able to fully understand the proposal. This section should be broken up using ## subsections as needed.
|
||||
|
||||
## Status
|
||||
|
||||
> A decision may be "proposed" if it hasn't been agreed upon yet, or "accepted" once it is agreed upon. If a later RFC changes or reverses a decision, it may be marked as "deprecated" or "superseded" with a reference to its replacement.
|
||||
|
||||
{Deprecated|Proposed|Accepted}
|
||||
|
||||
## Consequences
|
||||
|
||||
> This section describes the consequences, after applying the decision. All consequences should be summarized here, not just the "positive" ones.
|
||||
|
||||
### Positive
|
||||
|
||||
### Negative
|
||||
|
||||
### Neutral
|
||||
|
||||
## References
|
||||
|
||||
> Are there any relevant PR comments, issues that led up to this, or articles referenced for why we made the given design choice? If so link them here!
|
||||
|
||||
- {reference link}
|
||||
Reference in New Issue
Block a user