Struct pallet_node_authorization::pallet::Pallet [−][src]
pub struct Pallet<T>(_);
Expand description
The pallet implementing the on-chain logic.
Implementations
pub fn add_well_known_node(
origin: OriginFor<T>,
node: PeerId,
owner: T::AccountId
) -> DispatchResult
pub fn add_well_known_node(
origin: OriginFor<T>,
node: PeerId,
owner: T::AccountId
) -> DispatchResult
Add a node to the set of well known nodes. If the node is already claimed, the owner will be updated and keep the existing additional connection unchanged.
May only be called from T::AddOrigin
.
node
: identifier of the node.
Remove a node from the set of well known nodes. The ownership and additional connections of the node will also be removed.
May only be called from T::RemoveOrigin
.
node
: identifier of the node.
pub fn swap_well_known_node(
origin: OriginFor<T>,
remove: PeerId,
add: PeerId
) -> DispatchResult
pub fn swap_well_known_node(
origin: OriginFor<T>,
remove: PeerId,
add: PeerId
) -> DispatchResult
Swap a well known node to another. Both the ownership and additional connections stay untouched.
May only be called from T::SwapOrigin
.
remove
: the node which will be moved out from the list.add
: the node which will be put in the list.
pub fn reset_well_known_nodes(
origin: OriginFor<T>,
nodes: Vec<(PeerId, T::AccountId)>
) -> DispatchResult
pub fn reset_well_known_nodes(
origin: OriginFor<T>,
nodes: Vec<(PeerId, T::AccountId)>
) -> DispatchResult
Reset all the well known nodes. This will not remove the ownership and additional connections for the removed nodes. The node owner can perform further cleaning if they decide to leave the network.
May only be called from T::ResetOrigin
.
nodes
: the new nodes for the allow list.
A given node can be claimed by anyone. The owner should be the first to know its PeerId, so claim it right away!
node
: identifier of the node.
A claim can be removed by its owner and get back the reservation. The additional connections are also removed. You can’t remove a claim on well known nodes, as it needs to reach consensus among the network participants.
node
: identifier of the node.
pub fn transfer_node(
origin: OriginFor<T>,
node: PeerId,
owner: T::AccountId
) -> DispatchResult
pub fn transfer_node(
origin: OriginFor<T>,
node: PeerId,
owner: T::AccountId
) -> DispatchResult
A node can be transferred to a new owner.
node
: identifier of the node.owner
: new owner of the node.
pub fn add_connections(
origin: OriginFor<T>,
node: PeerId,
connections: Vec<PeerId>
) -> DispatchResult
pub fn add_connections(
origin: OriginFor<T>,
node: PeerId,
connections: Vec<PeerId>
) -> DispatchResult
Add additional connections to a given node.
node
: identifier of the node.connections
: additonal nodes from which the connections are allowed.
pub fn remove_connections(
origin: OriginFor<T>,
node: PeerId,
connections: Vec<PeerId>
) -> DispatchResult
pub fn remove_connections(
origin: OriginFor<T>,
node: PeerId,
connections: Vec<PeerId>
) -> DispatchResult
Remove additional connections of a given node.
node
: identifier of the node.connections
: additonal nodes from which the connections are not allowed anymore.
The set of well known nodes. This is stored sorted (just by value).
pub fn additional_connection<KArg>(k: KArg) -> BTreeSet<PeerId> where
KArg: EncodeLike<PeerId>,
pub fn additional_connection<KArg>(k: KArg) -> BTreeSet<PeerId> where
KArg: EncodeLike<PeerId>,
The additional adapative connections of each node.
Trait Implementations
Returns the current storage version as supported by the pallet.
Returns the on-chain storage version of the pallet as stored in the storage.
Set reserved node every block. It may not be enabled depends on the offchain worker settings when starting the node.
The block is being finalized. Implement to have something happen.
This will be run when the block is being finalized (before on_finalize
).
Implement to have something happen using the remaining weight.
Will not fire if the remaining weight is 0.
Return the weight used, the hook will subtract it from current weight used
and pass the result to the next on_idle
hook if it exists. Read more
The block is being initialized. Implement to have something happen. Read more
Perform a module upgrade. Read more
Execute some pre-checks prior to a runtime upgrade. Read more
Execute some post-checks after a runtime upgrade. Read more
Run integrity test. Read more
Run integrity test. Read more
This function is being called after every block import (when fully synced). Read more
The block is being finalized. Implement to have something happen. Read more
Something that should happen at genesis.
The block is being finalized.
Implement to have something happen in case there is leftover weight.
Check the passed remaining_weight
to make sure it is high enough to allow for
your pallet’s extra computation. Read more
The block is being initialized. Implement to have something happen. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for Pallet<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Pallet<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Generate a storage key unique to this runtime upgrade. Read more
Get temporary storage data written by Self::set_temp_storage
. Read more
Write some temporary data to a specific storage that can be read (potentially in
post-upgrade hook) via Self::get_temp_storage
. Read more
impl<T> PalletVersionToStorageVersionHelper for T where
T: GetStorageVersion + PalletInfoAccess,
impl<T> PalletVersionToStorageVersionHelper for T where
T: GetStorageVersion + PalletInfoAccess,
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
Consume self to return an equivalent value of T
.
pub fn vzip(self) -> V
impl<T> MaybeDebug for T where
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,