Skip to content
Snippets Groups Projects
Commit a25b871a authored by eskimor's avatar eskimor Committed by GitHub
Browse files

Clarification on the use of vstaging (#7359)


* Clarifications on vstaging.

* Typos.

---------

Co-authored-by: default avatareskimor <eskimor@no-such-url.com>
parent 5ac7b32c
No related merge requests found
......@@ -92,8 +92,12 @@
//! Let's introduce two types of `ParachainHost` API implementation:
//! * stable - used on stable production networks like Polkadot and Kusama. There is only one
//! stable API at a single point in time.
//! * staging - used on test networks like Westend or Rococo. Depending on the development needs
//! there can be zero, one or multiple staging APIs.
//! * staging - methods that are ready for production, but will be released on Rococo first. We can
//! batch together multiple changes and then release all of them to production, by making staging
//! production (bump base version). We can not change or remove any method in staging after a
//! release, as this would break Rococo. It should be ok to keep adding methods to staging
//! across several releases. For experimental methods, you have to keep them on a separate branch
//! until ready.
//!
//! The stable version of `ParachainHost` is indicated by the base version of the API. Any staging
//! method must use `api_version` attribute so that it is assigned to a specific version of a
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment