order |
---|
1 |
Last Updated: Friday 8 October 2021
This document endeavours to inform the wider Tendermint community about development plans and priorities for Tendermint Core, and when we expect features to be delivered. It is intended to broadly inform all users of Tendermint, including application developers, node operators, integrators, and the engineering and research teams.
Anyone wishing to propose work to be a part of this roadmap should do so by opening an issue in the spec. Bug reports and other implementation concerns should be brought up in the core repository.
This roadmap should be read as a high-level guide to plans and priorities, rather than a commitment to schedules and deliverables. Features earlier on the roadmap will generally be more specific and detailed than those later on. We will update this document periodically to reflect the current status.
The upgrades are split into two components: Epics, the features that define a release and to a large part dictate the timing of releases; and minors, features of smaller scale and lower priority, that could land in neighboring releases.
Transactions were previously added to blocks in the order with which they arrived to the mempool. Adding a priority field via CheckTx
gives applications more control over which transactions make it into a block. This is important in the presence of transaction fees. More
The Tendermint P2P system is undergoing a large redesign to improve its performance and reliability. The first phase of this redesign is included in 0.35. This phase cleans and decouples abstractions, improves peer lifecycle management, peer address handling and enables pluggable transports. It is implemented to be protocol-compatible with the previous implementation. More
Following the initial version of state sync, several improvements have been made. These include the addition of Reverse Sync needed for evidence handling, the introduction of a P2P State Provider as an alternative to RPC endpoints, new configuration parameters to adjust throughput, and several bug fixes.
Added a new EventSink
interface to allow alternatives to Tendermint's proprietary transaction indexer. We also added a PostgreSQL Indexer implementation, allowing rich SQL-based index queries. More
An overhaul of the existing interface between the application and consensus, to give the application more control over block construction. ABCI++ adds new hooks allowing modification of transactions before they get into a block, verification of a block before voting, injection of signed information into votes, and more compact delivery of blocks after agreement (to allow for concurrent execution). More
Proposer-based timestamps are a replacement of BFT time, whereby the proposer chooses a timestamp and validators vote on the block only if the timestamp is considered timely. This increases reliance on an accurate local clock, but in exchange makes block time more reliable and resistant to faults. This has important use cases in light clients, IBC relayers, CosmosHub inflation and enabling signature aggregation. More
We are working on a suite of tools and patterns to make it easier for both node operators and application developers to quickly and safely upgrade to newer versions of Tendermint. More
Finish the final phase of the P2P system. Ongoing research and planning is taking place to decide whether to adopt libp2p, alternative transports to MConn
such as QUIC and handshake/authentication protocols such as Noise. Research into more advanced gossiping techniques.
Tendermint currently has an abstraction to allow support for multiple database backends. This generality incurs maintenance overhead and interferes with application-specific optimizations that Tendermint could use (ACID guarantees, etc.). We plan to converge on a single database and streamline the Tendermint storage engine. More
Tendermint nodes currently have multiple areas of communication with other processes (ABCI, remote-signer, P2P, JSONRPC, websockets, events as examples). Many of these have multiple implementations in which a single suffices. Consolidate and clean up IPC. More
Has the same feature set as V0.37 but with a focus towards testing, protocol correctness and minor tweaks to ensure a stable product. Such work might include extending the consensus testing framework, the use of canary/long-lived testnets and greater integration tests.