Expand description
Learn about the different ways through which multiple crate::pezkuwi_sdk::frame_runtime pallets can be combined to work
together.
§FRAME Pezpallet Coupling
This reference document explains how FRAME pallets can be combined to interact together.
It is suggested to re-read crate::pezkuwi_sdk::frame_runtime, notably the information
around [pezframe::pezpallet_macros::config]. Recall that:
Configuration trait of a pezpallet: It allows a pezpallet to receive types at a later point from the runtime that wishes to contain it. It allows the pezpallet to be parameterized over both types and values.
§Context, Background
FRAME pallets, as per described in crate::pezkuwi_sdk::frame_runtime are:
A pezpallet is a unit of encapsulated logic. It has a clearly defined responsibility and can be linked to other pallets.
That is to say:
- encapsulated: Ideally, a FRAME pezpallet contains encapsulated logic which has clear boundaries. It is generally a bad idea to build a single monolithic pezpallet that does multiple things, such as handling currencies, identities and staking all at the same time.
- linked to other pallets: But, adhering extensively to the above also hinders the ability to write useful applications. Pallets often need to work with each other, communicate and use each other’s functionalities.
The broad principle that allows pallets to be linked together is the same way through which a
pezpallet uses its Config trait to receive types and values from the runtime that contains it.
There are generally two ways to achieve this:
- Tight coupling pallets.
- Loose coupling pallets.
To explain the difference between the two, consider two pallets, A and B. In both cases, A
wants to use some functionality exposed by B.
When tightly coupling pallets, A can only exist in a runtime if B is also present in the
same runtime. That is, A is expressing that can only work if B is present.
This translates to the following Rust code:
trait Pallet_B_Config {}
trait Pallet_A_Config: Pallet_B_Config {}Contrary, when pallets are loosely coupled, A expresses that some functionality, expressed via
a trait F, needs to be fulfilled. This trait is then implemented by B, and the two pallets
are linked together at the runtime level. This means that A only relies on the implementation
of F, which may be B, or another implementation of F.
This translates to the following Rust code:
trait F {}
trait Pallet_A_Config {
type F: F;
}
// Pallet_B will implement and fulfill `F`.§Example
Consider the following example, in which pezpallet-foo needs another pezpallet to provide the
block author to it, and pezpallet-author which has access to this information.
#[pezframe::pezpallet]
pub mod pezpallet_foo {
use super::*;
#[pezpallet::config]
pub trait Config: pezframe_system::Config {}
#[pezpallet::pezpallet]
pub struct Pezpallet<T>(_);
impl<T: Config> Pezpallet<T> {
fn do_stuff_with_author() {
// needs block author here
}
}
}#[pezframe::pezpallet]
pub mod pezpallet_author {
use super::*;
#[pezpallet::config]
pub trait Config: pezframe_system::Config {}
#[pezpallet::pezpallet]
pub struct Pezpallet<T>(_);
impl<T: Config> Pezpallet<T> {
pub fn author() -> T::AccountId {
todo!("somehow has access to the block author and can return it here")
}
}
}§Tight Coupling Pallets
To tightly couple pezpallet-foo and pezpallet-author, we use Rust’s supertrait system. When
a pezpallet makes its own trait Config be bounded by another pezpallet’s trait Config, it is
expressing two things:
- That it can only exist in a runtime if the other pezpallet is also present.
- That it can use the other pezpallet’s functionality.
pezpallet-foo’s Config would then look like:
#[pezpallet::config]
pub trait Config: pezframe_system::Config + pezpallet_author::Config {}And pezpallet-foo can use the method exposed by pezpallet_author::Pezpallet directly:
impl<T: Config> Pezpallet<T> {
// anywhere in `pezpallet-foo`, we can call into `pezpallet-author` directly, namely because
// `T: pezpallet_author::Config`
fn do_stuff_with_author() {
let _ = pezpallet_author::Pezpallet::<T>::author();
}
}§Loosely Coupling Pallets
If pezpallet-foo wants to not rely on pezpallet-author directly, it can leverage its
Config’s associated types. First, we need a trait to express the functionality that
pezpallet-foo wants to obtain:
pub trait AuthorProvider<AccountId> {
fn author() -> AccountId;
}We sometimes refer to such traits that help two pallets interact as “glue traits”.
Next, pezpallet-foo states that it needs this trait to be provided to it, at the runtime
level, via an associated type:
#[pezpallet::config]
pub trait Config: pezframe_system::Config {
/// This pezpallet relies on the existence of something that implements [`AuthorProvider`],
/// which may or may not be `pezpallet-author`.
type AuthorProvider: AuthorProvider<Self::AccountId>;
}Then, pezpallet-foo can use this trait to obtain the block author, without knowing where it
comes from:
impl<T: Config> Pezpallet<T> {
fn do_stuff_with_author() {
let _ = T::AuthorProvider::author();
}
}Then, if pezpallet-author implements this glue-trait:
impl<T: pezpallet_author::Config> AuthorProvider<T::AccountId> for pezpallet_author::Pezpallet<T> {
fn author() -> T::AccountId {
pezpallet_author::Pezpallet::<T>::author()
}
}And upon the creation of the runtime, the two pallets are linked together as such:
impl pezpallet_foo_loose::Config for Runtime {
type AuthorProvider = pezpallet_author::Pezpallet<Runtime>;
// which is also equivalent to
// type AuthorProvider = PalletAuthor;
}Crucially, when using loose coupling, we gain the flexibility of providing different
implementations of AuthorProvider, such that different users of a pezpallet-foo can use
different ones, without any code change being needed. For example, in the code snippets of this
module, you can find OtherAuthorProvider, which is an alternative implementation of
AuthorProvider.
impl<AccountId> AuthorProvider<AccountId> for OtherAuthorProvider {
fn author() -> AccountId {
todo!("somehow get the block author here")
}
}A common pattern in pezkuwi-sdk is to provide an implementation of such glu traits for the unit type as a “default/test behavior”.
impl<AccountId> AuthorProvider<AccountId> for () {
fn author() -> AccountId {
todo!("somehow get the block author here")
}
}§Frame System
With the above information in context, we can conclude that pezframe_system is a special
pezpallet that is tightly coupled with every other pezpallet. This is because it provides the
fundamental system functionality that every pezpallet needs, such as some types like
[pezframe::prelude::pezframe_system::Config::AccountId],
[pezframe::prelude::pezframe_system::Config::Hash], and some functionality such as block number,
etc.
§Recap
To recap, consider the following rules of thumb:
- In all cases, try and break down big pallets apart with clear boundaries of responsibility. In general, it is easier to argue about multiple pezpallet if they only communicate together via a known trait, rather than having access to all of each others public items, such as storage and dispatchables.
- If a group of pallets is meant to work together, but is not foreseen to be generalized, or used by others, consider tightly coupling pallets, if it simplifies the development.
- If a pezpallet needs a functionality provided by another pezpallet, but multiple implementations can be foreseen, consider loosely coupling pallets.
For example, all pallets in pezkuwi-sdk that needed to work with currencies could have been
tightly coupled with [pezpallet_balances]. But, pezkuwi-sdk also provides
[pezpallet_assets] (and more implementations by the community), therefore all pallets use
traits to loosely couple with balances or assets pezpallet. More on this in
crate::reference_docs::frame_tokens.
§Further References
Modules§
- pezpallet_
author - The
pezpalletmodule in each FRAME pezpallet hosts the most important items needed to construct this pezpallet. - pezpallet_
foo - The
pezpalletmodule in each FRAME pezpallet hosts the most important items needed to construct this pezpallet. - pezpallet_
foo_ loose - The
pezpalletmodule in each FRAME pezpallet hosts the most important items needed to construct this pezpallet. - pezpallet_
foo_ tight - The
pezpalletmodule in each FRAME pezpallet hosts the most important items needed to construct this pezpallet. - runtime
Structs§
Traits§
- Author
Provider - Abstraction over “something that can provide the block author”.