pub type Module<T> = Pallet<T>;
Pallet
insteadExpand description
Type alias to Pallet
, to be used by construct_runtime
.
Generated by pallet
attribute macro.
Aliased Type§
struct Module<T>(/* private fields */);
Implementations
Source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
Sourcepub fn hrmp_init_open_channel(
origin: OriginFor<T>,
recipient: ParaId,
proposed_max_capacity: u32,
proposed_max_message_size: u32,
) -> DispatchResult
pub fn hrmp_init_open_channel( origin: OriginFor<T>, recipient: ParaId, proposed_max_capacity: u32, proposed_max_message_size: u32, ) -> DispatchResult
Initiate opening a channel from a parachain to a given recipient with given channel parameters.
proposed_max_capacity
- specifies how many messages can be in the channel at once.proposed_max_message_size
- specifies the maximum size of the messages.
These numbers are a subject to the relay-chain configuration limits.
The channel can be opened only after the recipient confirms it and only on a session change.
Sourcepub fn hrmp_accept_open_channel(
origin: OriginFor<T>,
sender: ParaId,
) -> DispatchResult
pub fn hrmp_accept_open_channel( origin: OriginFor<T>, sender: ParaId, ) -> DispatchResult
Accept a pending open channel request from the given sender.
The channel will be opened only on the next session boundary.
Sourcepub fn hrmp_close_channel(
origin: OriginFor<T>,
channel_id: HrmpChannelId,
) -> DispatchResult
pub fn hrmp_close_channel( origin: OriginFor<T>, channel_id: HrmpChannelId, ) -> DispatchResult
Initiate unilateral closing of a channel. The origin must be either the sender or the recipient in the channel being closed.
The closure can only happen on a session change.
Sourcepub fn force_clean_hrmp(
origin: OriginFor<T>,
para: ParaId,
num_inbound: u32,
num_outbound: u32,
) -> DispatchResult
pub fn force_clean_hrmp( origin: OriginFor<T>, para: ParaId, num_inbound: u32, num_outbound: u32, ) -> DispatchResult
This extrinsic triggers the cleanup of all the HRMP storage items that a para may have. Normally this happens once per session, but this allows you to trigger the cleanup immediately for a specific parachain.
Number of inbound and outbound channels for para
must be provided as witness data.
Origin must be the ChannelManager
.
Sourcepub fn force_process_hrmp_open(
origin: OriginFor<T>,
channels: u32,
) -> DispatchResult
pub fn force_process_hrmp_open( origin: OriginFor<T>, channels: u32, ) -> DispatchResult
Force process HRMP open channel requests.
If there are pending HRMP open channel requests, you can use this function to process all of those requests immediately.
Total number of opening channels must be provided as witness data.
Origin must be the ChannelManager
.
Sourcepub fn force_process_hrmp_close(
origin: OriginFor<T>,
channels: u32,
) -> DispatchResult
pub fn force_process_hrmp_close( origin: OriginFor<T>, channels: u32, ) -> DispatchResult
Force process HRMP close channel requests.
If there are pending HRMP close channel requests, you can use this function to process all of those requests immediately.
Total number of closing channels must be provided as witness data.
Origin must be the ChannelManager
.
Sourcepub fn hrmp_cancel_open_request(
origin: OriginFor<T>,
channel_id: HrmpChannelId,
open_requests: u32,
) -> DispatchResult
pub fn hrmp_cancel_open_request( origin: OriginFor<T>, channel_id: HrmpChannelId, open_requests: u32, ) -> DispatchResult
This cancels a pending open channel request. It can be canceled by either of the sender or the recipient for that request. The origin must be either of those.
The cancellation happens immediately. It is not possible to cancel the request if it is already accepted.
Total number of open requests (i.e. HrmpOpenChannelRequestsList
) must be provided as
witness data.
Sourcepub fn force_open_hrmp_channel(
origin: OriginFor<T>,
sender: ParaId,
recipient: ParaId,
max_capacity: u32,
max_message_size: u32,
) -> DispatchResultWithPostInfo
pub fn force_open_hrmp_channel( origin: OriginFor<T>, sender: ParaId, recipient: ParaId, max_capacity: u32, max_message_size: u32, ) -> DispatchResultWithPostInfo
Open a channel from a sender
to a recipient
ParaId
. Although opened by governance,
the max_capacity
and max_message_size
are still subject to the Relay Chain’s
configured limits.
Expected use is when one (and only one) of the ParaId
s involved in the channel is
governed by the system, e.g. a system parachain.
Origin must be the ChannelManager
.
Sourcepub fn establish_system_channel(
origin: OriginFor<T>,
sender: ParaId,
recipient: ParaId,
) -> DispatchResultWithPostInfo
pub fn establish_system_channel( origin: OriginFor<T>, sender: ParaId, recipient: ParaId, ) -> DispatchResultWithPostInfo
Establish an HRMP channel between two system chains. If the channel does not already exist, the transaction fees will be refunded to the caller. The system does not take deposits for channels between system chains, and automatically sets the message number and size limits to the maximum allowed by the network’s configuration.
Arguments:
sender
: A system chain,ParaId
.recipient
: A system chain,ParaId
.
Any signed origin can call this function, but both inputs MUST be system chains. If the channel does not exist yet, there is no fee.
Sourcepub fn poke_channel_deposits(
origin: OriginFor<T>,
sender: ParaId,
recipient: ParaId,
) -> DispatchResult
pub fn poke_channel_deposits( origin: OriginFor<T>, sender: ParaId, recipient: ParaId, ) -> DispatchResult
Update the deposits held for an HRMP channel to the latest Configuration
. Channels
with system chains do not require a deposit.
Arguments:
sender
: A chain,ParaId
.recipient
: A chain,ParaId
.
Any signed origin can call this function.
Sourcepub fn establish_channel_with_system(
origin: OriginFor<T>,
target_system_chain: ParaId,
) -> DispatchResultWithPostInfo
pub fn establish_channel_with_system( origin: OriginFor<T>, target_system_chain: ParaId, ) -> DispatchResultWithPostInfo
Establish a bidirectional HRMP channel between a parachain and a system chain.
Arguments:
target_system_chain
: A system chain,ParaId
.
The origin needs to be the parachain origin.
Source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
Routines and getters related to HRMP.
Sourcepub fn init_open_channel(
origin: ParaId,
recipient: ParaId,
proposed_max_capacity: u32,
proposed_max_message_size: u32,
) -> DispatchResult
pub fn init_open_channel( origin: ParaId, recipient: ParaId, proposed_max_capacity: u32, proposed_max_message_size: u32, ) -> DispatchResult
Initiate opening a channel from a parachain to a given recipient with given channel
parameters. If neither chain is part of the system, then a deposit from the Configuration
will be required for origin
(the sender) upon opening the request and the recipient
upon
accepting it.
Basically the same as hrmp_init_open_channel
but
intended for calling directly from other pallets rather than dispatched.
Sourcepub fn accept_open_channel(origin: ParaId, sender: ParaId) -> DispatchResult
pub fn accept_open_channel(origin: ParaId, sender: ParaId) -> DispatchResult
Accept a pending open channel request from the given sender.
Basically the same as hrmp_accept_open_channel
but
intended for calling directly from other pallets rather than dispatched.
Trait Implementations
Source§impl<T: Config> BeforeAllRuntimeMigrations for Pallet<T>
impl<T: Config> BeforeAllRuntimeMigrations for Pallet<T>
Source§fn before_all_runtime_migrations() -> Weight
fn before_all_runtime_migrations() -> Weight
Source§impl<T> Benchmarking for Pallet<T>
impl<T> Benchmarking for Pallet<T>
Source§impl<T: Config> GetStorageVersion for Pallet<T>
impl<T: Config> GetStorageVersion for Pallet<T>
Source§type InCodeStorageVersion = NoStorageVersionSet
type InCodeStorageVersion = NoStorageVersionSet
Source§fn in_code_storage_version() -> Self::InCodeStorageVersion
fn in_code_storage_version() -> Self::InCodeStorageVersion
storage_version
attribute, or
[NoStorageVersionSet
] if the attribute is missing.Source§fn on_chain_storage_version() -> StorageVersion
fn on_chain_storage_version() -> StorageVersion
§fn current_storage_version() -> Self::InCodeStorageVersion
fn current_storage_version() -> Self::InCodeStorageVersion
in_code_storage_version
and will be removed after March 2024.Self::current_storage_version
] instead. Read moreSource§impl<T: Config> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
§fn on_initialize(_n: BlockNumber) -> Weight
fn on_initialize(_n: BlockNumber) -> Weight
§fn on_finalize(_n: BlockNumber)
fn on_finalize(_n: BlockNumber)
§fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
Hooks::on_finalize
]). Read more§fn on_poll(_n: BlockNumber, _weight: &mut WeightMeter)
fn on_poll(_n: BlockNumber, _weight: &mut WeightMeter)
§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
Executive
pallet. Read more§fn try_state(_n: BlockNumber) -> Result<(), DispatchError>
fn try_state(_n: BlockNumber) -> Result<(), DispatchError>
§fn pre_upgrade() -> Result<Vec<u8>, DispatchError>
fn pre_upgrade() -> Result<Vec<u8>, DispatchError>
§fn post_upgrade(_state: Vec<u8>) -> Result<(), DispatchError>
fn post_upgrade(_state: Vec<u8>) -> Result<(), DispatchError>
§fn offchain_worker(_n: BlockNumber)
fn offchain_worker(_n: BlockNumber)
§fn integrity_test()
fn integrity_test()
Source§impl<T: Config> IntegrityTest for Pallet<T>
impl<T: Config> IntegrityTest for Pallet<T>
Source§fn integrity_test()
fn integrity_test()
Hooks::integrity_test
].Source§impl<T: Config> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn offchain_worker(n: BlockNumberFor<T>)
fn offchain_worker(n: BlockNumberFor<T>)
Source§impl<T: Config> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_finalize(n: BlockNumberFor<T>)
fn on_finalize(n: BlockNumberFor<T>)
Hooks::on_finalize
].Source§impl<T: Config> OnGenesis for Pallet<T>
impl<T: Config> OnGenesis for Pallet<T>
Source§fn on_genesis()
fn on_genesis()
Source§impl<T: Config> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§impl<T: Config> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§fn on_initialize(n: BlockNumberFor<T>) -> Weight
fn on_initialize(n: BlockNumberFor<T>) -> Weight
Hooks::on_initialize
].Source§impl<T: Config> OnPoll<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> OnPoll<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§impl<T: Config> OnRuntimeUpgrade for Pallet<T>
impl<T: Config> OnRuntimeUpgrade for Pallet<T>
Source§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
Hooks::on_runtime_upgrade
].§fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
pre_upgrade
->
on_runtime_upgrade
-> post_upgrade
hooks for a migration. Read moreSource§impl<T: Config> PalletInfoAccess for Pallet<T>
impl<T: Config> PalletInfoAccess for Pallet<T>
Source§fn module_name() -> &'static str
fn module_name() -> &'static str
Source§fn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
Source§impl<T: Config> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
impl<T: Config> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T>
Source§impl<T: Config> WhitelistedStorageKeys for Pallet<T>
impl<T: Config> WhitelistedStorageKeys for Pallet<T>
Source§fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
Vec<TrackedStorageKey>
indicating the storage keys that
should be whitelisted during benchmarking. This means that those keys
will be excluded from the benchmarking performance calculation.