Expand description
Runtime API implementations for Parachains.
These are exposed as different modules using different sets of primitives.
At the moment there is a v2
module for the current stable API and
vstaging
module for all staging methods.
When new version of the stable API is released it will be based on v2
and
will contain methods from vstaging
.
The promotion consists of the following steps:
- Bump the version of the stable module (e.g.
v2
becomesv3
) - Move methods from
vstaging
tov3
. The new stable version should include all methods fromvstaging
tagged with the new version number (e.g. allv3
methods).
Modules§
- A module exporting runtime API implementation functions for all runtime APIs using
v5
primitives. - Put implementations of functions from staging APIs here.