mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 16:17:23 +00:00
43415ef58c
### Original PR https://github.com/paritytech/substrate/pull/14137 This PR brings in the first version of the "_`frame` umbrella crate_". This crate is intended to serve two purposes: 1. documentation 2. easier development with frame. Ideally, we want most users to be able to build a frame-based pallet and runtime using just `frame` (plus `scale-codec` and `scale-info`). The crate is not finalized and is not yet intended for external use. Therefore, the version is set to `0.0.1-dev`, this PR is `silent`, and the entire crate is hidden behind the `experimental` flag. The main intention in merging it early on is to be able to iterate on it in the rest of [`developer-hub`](https://github.com/paritytech/polkadot-sdk-docs/) efforts. The public API of the `frame` crate is at the moment as follows: ``` pub mod frame pub use frame::log pub use frame::pallet pub mod frame::arithmetic pub use frame::arithmetic::<<sp_arithmetic::*>> pub use frame::arithmetic::<<sp_arithmetic::traits::*>> pub mod frame::deps pub use frame::deps::codec pub use frame::deps::frame_executive pub use frame::deps::frame_support pub use frame::deps::frame_system pub use frame::deps::scale_info pub use frame::deps::sp_api pub use frame::deps::sp_arithmetic pub use frame::deps::sp_block_builder pub use frame::deps::sp_consensus_aura pub use frame::deps::sp_consensus_grandpa pub use frame::deps::sp_core pub use frame::deps::sp_inherents pub use frame::deps::sp_io pub use frame::deps::sp_offchain pub use frame::deps::sp_runtime pub use frame::deps::sp_std pub use frame::deps::sp_version pub mod frame::derive pub use frame::derive::CloneNoBound pub use frame::derive::Debug pub use frame::derive::Debug pub use frame::derive::DebugNoBound pub use frame::derive::Decode pub use frame::derive::Decode pub use frame::derive::DefaultNoBound pub use frame::derive::Encode pub use frame::derive::Encode pub use frame::derive::EqNoBound pub use frame::derive::PartialEqNoBound pub use frame::derive::RuntimeDebug pub use frame::derive::RuntimeDebugNoBound pub use frame::derive::TypeInfo pub use frame::derive::TypeInfo pub mod frame::prelude pub use frame::prelude::<<frame_support::pallet_prelude::*>> pub use frame::prelude::<<frame_system::pallet_prelude::*>> pub use frame::prelude::<<sp_std::prelude::*>> pub use frame::prelude::CloneNoBound pub use frame::prelude::Debug pub use frame::prelude::Debug pub use frame::prelude::DebugNoBound pub use frame::prelude::Decode pub use frame::prelude::Decode pub use frame::prelude::DefaultNoBound pub use frame::prelude::Encode pub use frame::prelude::Encode pub use frame::prelude::EqNoBound pub use frame::prelude::PartialEqNoBound pub use frame::prelude::RuntimeDebug pub use frame::prelude::RuntimeDebugNoBound pub use frame::prelude::TypeInfo pub use frame::prelude::TypeInfo pub use frame::prelude::frame_system pub mod frame::primitives pub use frame::primitives::BlakeTwo256 pub use frame::primitives::H160 pub use frame::primitives::H256 pub use frame::primitives::H512 pub use frame::primitives::Hash pub use frame::primitives::Keccak256 pub use frame::primitives::U256 pub use frame::primitives::U512 pub mod frame::runtime pub mod frame::runtime::apis pub use frame::runtime::apis::<<frame_system_rpc_runtime_api::*>> pub use frame::runtime::apis::<<sp_api::*>> pub use frame::runtime::apis::<<sp_block_builder::*>> pub use frame::runtime::apis::<<sp_consensus_aura::*>> pub use frame::runtime::apis::<<sp_consensus_grandpa::*>> pub use frame::runtime::apis::<<sp_offchain::*>> pub use frame::runtime::apis::<<sp_session::runtime_api::*>> pub use frame::runtime::apis::<<sp_transaction_pool::runtime_api::*>> pub use frame::runtime::apis::ApplyExtrinsicResult pub use frame::runtime::apis::CheckInherentsResult pub use frame::runtime::apis::InherentData pub use frame::runtime::apis::OpaqueMetadata pub use frame::runtime::apis::impl_runtime_apis pub use frame::runtime::apis::sp_api pub mod frame::runtime::prelude pub use frame::runtime::prelude::<<frame_executive::*>> pub use frame::runtime::prelude::ConstBool pub use frame::runtime::prelude::ConstI128 pub use frame::runtime::prelude::ConstI16 pub use frame::runtime::prelude::ConstI32 pub use frame::runtime::prelude::ConstI64 pub use frame::runtime::prelude::ConstI8 pub use frame::runtime::prelude::ConstU128 pub use frame::runtime::prelude::ConstU16 pub use frame::runtime::prelude::ConstU32 pub use frame::runtime::prelude::ConstU64 pub use frame::runtime::prelude::ConstU8 pub use frame::runtime::prelude::NativeVersion pub use frame::runtime::prelude::RuntimeVersion pub use frame::runtime::prelude::construct_runtime pub use frame::runtime::prelude::create_runtime_str pub use frame::runtime::prelude::derive_impl pub use frame::runtime::prelude::frame_support pub use frame::runtime::prelude::ord_parameter_types pub use frame::runtime::prelude::parameter_types pub use frame::runtime::prelude::runtime_version pub mod frame::runtime::testing_prelude pub use frame::runtime::testing_prelude::BuildStorage pub use frame::runtime::testing_prelude::Storage pub mod frame::runtime::types_common pub type frame::runtime::types_common::AccountId = <<frame::runtime::types_common::Signature as sp_runtime::traits::Verify>::Signer as sp_runtime::traits::IdentifyAccount>::AccountId pub type frame::runtime::types_common::BlockNumber = u32 pub type frame::runtime::types_common::BlockOf<T, Extra> = sp_runtime::generic::block::Block<sp_runtime::generic::header::Header<frame::runtime::types_common::BlockNumber, sp_runtime::traits::BlakeTwo256>, sp_runtime::generic::unchecked_extrinsic::UncheckedExtrinsic<sp_runtime::multiaddress::MultiAddress<frame::runtime::types_common::AccountId, ()>, <T as frame_system::pallet::Config>::RuntimeCall, frame::runtime::types_common::Signature, Extra>> pub type frame::runtime::types_common::OpaqueBlock = sp_runtime::generic::block::Block<sp_runtime::generic::header::Header<frame::runtime::types_common::BlockNumber, sp_runtime::traits::BlakeTwo256>, sp_runtime::OpaqueExtrinsic> pub type frame::runtime::types_common::Signature = sp_runtime::MultiSignature pub type frame::runtime::types_common::SystemSignedExtensionsOf<T> = (frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>, frame_system::extensions::check_spec_version::CheckSpecVersion<T>, frame_system::extensions::check_tx_version::CheckTxVersion<T>, frame_system::extensions::check_genesis::CheckGenesis<T>, frame_system::extensions::check_mortality::CheckMortality<T>, frame_system::extensions::check_nonce::CheckNonce<T>, frame_system::extensions::check_weight::CheckWeight<T>) pub mod frame::testing_prelude pub use frame::testing_prelude::<<frame_executive::*>> pub use frame::testing_prelude::<<frame_system::mocking::*>> pub use frame::testing_prelude::BuildStorage pub use frame::testing_prelude::ConstBool pub use frame::testing_prelude::ConstI128 pub use frame::testing_prelude::ConstI16 pub use frame::testing_prelude::ConstI32 pub use frame::testing_prelude::ConstI64 pub use frame::testing_prelude::ConstI8 pub use frame::testing_prelude::ConstU128 pub use frame::testing_prelude::ConstU16 pub use frame::testing_prelude::ConstU32 pub use frame::testing_prelude::ConstU64 pub use frame::testing_prelude::ConstU8 pub use frame::testing_prelude::NativeVersion pub use frame::testing_prelude::RuntimeVersion pub use frame::testing_prelude::Storage pub use frame::testing_prelude::TestState pub use frame::testing_prelude::assert_err pub use frame::testing_prelude::assert_err_ignore_postinfo pub use frame::testing_prelude::assert_error_encoded_size pub use frame::testing_prelude::assert_noop pub use frame::testing_prelude::assert_ok pub use frame::testing_prelude::assert_storage_noop pub use frame::testing_prelude::construct_runtime pub use frame::testing_prelude::create_runtime_str pub use frame::testing_prelude::derive_impl pub use frame::testing_prelude::frame_support pub use frame::testing_prelude::frame_system pub use frame::testing_prelude::if_std pub use frame::testing_prelude::ord_parameter_types pub use frame::testing_prelude::parameter_types pub use frame::testing_prelude::runtime_version pub use frame::testing_prelude::storage_alias pub mod frame::traits pub use frame::traits::<<frame_support::traits::*>> pub use frame::traits::<<sp_runtime::traits::*>> ``` --- The road to full stabilization is - [ ] https://github.com/paritytech/polkadot-sdk/issues/127 - [ ] have a more intentional version bump, as opposed to the current bi weekly force-major-bump - [ ] revise the internal API of `frame`, especially what goes into the `prelude`s. - [ ] migrate all internal pallets and runtime to use `frame` --------- Co-authored-by: kianenigma <kian@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Francisco Aguirre <franciscoaguirreperez@gmail.com>
354 lines
12 KiB
Rust
354 lines
12 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! > Made with *Substrate*, for *Polkadot*.
|
|
//!
|
|
//! [![github]](https://github.com/paritytech/polkadot-sdk/tree/master/substrate/frame/sudo)
|
|
//! [![polkadot]](https://polkadot.network)
|
|
//!
|
|
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
|
|
//! [polkadot]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white
|
|
//!
|
|
//! # Sudo Pallet
|
|
//!
|
|
//! A pallet to provide a way to execute privileged runtime calls using a specified sudo ("superuser
|
|
//! do") account.
|
|
//!
|
|
//! ## Pallet API
|
|
//!
|
|
//! See the [`pallet`] module for more information about the interfaces this pallet exposes,
|
|
//! including its configuration trait, dispatchables, storage items, events and errors.
|
|
//!
|
|
//! ## Overview
|
|
//!
|
|
//! In Substrate blockchains, pallets may contain dispatchable calls that can only be called at
|
|
//! the system level of the chain (i.e. dispatchables that require a `Root` origin).
|
|
//! Setting a privileged account, called the _sudo key_, allows you to make such calls as an
|
|
//! extrinisic.
|
|
//!
|
|
//! Here's an example of a privileged function in another pallet:
|
|
//!
|
|
//! ```
|
|
//! #[frame_support::pallet]
|
|
//! pub mod pallet {
|
|
//! use super::*;
|
|
//! use frame_support::pallet_prelude::*;
|
|
//! use frame_system::pallet_prelude::*;
|
|
//!
|
|
//! #[pallet::pallet]
|
|
//! pub struct Pallet<T>(_);
|
|
//!
|
|
//! #[pallet::config]
|
|
//! pub trait Config: frame_system::Config {}
|
|
//!
|
|
//! #[pallet::call]
|
|
//! impl<T: Config> Pallet<T> {
|
|
//! #[pallet::weight(0)]
|
|
//! pub fn privileged_function(origin: OriginFor<T>) -> DispatchResult {
|
|
//! ensure_root(origin)?;
|
|
//!
|
|
//! // do something...
|
|
//!
|
|
//! Ok(())
|
|
//! }
|
|
//! }
|
|
//! }
|
|
//! ```
|
|
//!
|
|
//! With the Sudo pallet configured in your chain's runtime you can execute this privileged
|
|
//! function by constructing a call using the [`sudo`](Pallet::sudo) dispatchable.
|
|
//!
|
|
//! To use this pallet in your runtime, a sudo key must be specified in the [`GenesisConfig`] of
|
|
//! the pallet. You can change this key at anytime once your chain is live using the
|
|
//! [`set_key`](Pallet::set_key) dispatchable, however <strong>only one sudo key can be set at a
|
|
//! time</strong>. The pallet also allows you to make a call using
|
|
//! [`sudo_unchecked_weight`](Pallet::sudo_unchecked_weight), which allows the sudo account to
|
|
//! execute a call with a custom weight.
|
|
//!
|
|
//! <div class="example-wrap" style="display:inline-block"><pre class="compile_fail"
|
|
//! style="white-space:normal;font:inherit;">
|
|
//! <strong>Note:</strong> this pallet is not meant to be used inside other pallets. It is only
|
|
//! meant to be used by constructing runtime calls from outside the runtime.
|
|
//! </pre></div>
|
|
//!
|
|
//! This pallet also defines a [`SignedExtension`](sp_runtime::traits::SignedExtension) called
|
|
//! [`CheckOnlySudoAccount`] to ensure that only signed transactions by the sudo account are
|
|
//! accepted by the transaction pool. The intended use of this signed extension is to prevent other
|
|
//! accounts from spamming the transaction pool for the initial phase of a chain, during which
|
|
//! developers may only want a sudo account to be able to make transactions.
|
|
//!
|
|
//! Learn more about the `Root` origin in the [`RawOrigin`](frame_system::RawOrigin) type
|
|
//! documentation.
|
|
//!
|
|
//! ### Examples
|
|
//!
|
|
//! 1. You can make a privileged runtime call using `sudo` with an account that matches the sudo
|
|
//! key.
|
|
#![doc = docify::embed!("src/tests.rs", sudo_basics)]
|
|
//!
|
|
//! 2. Only an existing sudo key can set a new one.
|
|
#![doc = docify::embed!("src/tests.rs", set_key_basics)]
|
|
//!
|
|
//! 3. You can also make non-privileged calls using `sudo_as`.
|
|
#![doc = docify::embed!("src/tests.rs", sudo_as_emits_events_correctly)]
|
|
//!
|
|
//! ## Low Level / Implementation Details
|
|
//!
|
|
//! This pallet checks that the caller of its dispatchables is a signed account and ensures that the
|
|
//! caller matches the sudo key in storage.
|
|
//! A caller of this pallet's dispatchables does not pay any fees to dispatch a call. If the account
|
|
//! making one of these calls is not the sudo key, the pallet returns a [`Error::RequireSudo`]
|
|
//! error.
|
|
//!
|
|
//! Once an origin is verified, sudo calls use `dispatch_bypass_filter` from the
|
|
//! [`UnfilteredDispatchable`](frame_support::traits::UnfilteredDispatchable) trait to allow call
|
|
//! execution without enforcing any further origin checks.
|
|
|
|
#![deny(missing_docs)]
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
use sp_runtime::{traits::StaticLookup, DispatchResult};
|
|
use sp_std::prelude::*;
|
|
|
|
use frame_support::{dispatch::GetDispatchInfo, traits::UnfilteredDispatchable};
|
|
|
|
mod extension;
|
|
#[cfg(test)]
|
|
mod mock;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
mod benchmarking;
|
|
pub mod weights;
|
|
pub use weights::WeightInfo;
|
|
|
|
pub use extension::CheckOnlySudoAccount;
|
|
pub use pallet::*;
|
|
|
|
type AccountIdLookupOf<T> = <<T as frame_system::Config>::Lookup as StaticLookup>::Source;
|
|
|
|
#[frame_support::pallet]
|
|
pub mod pallet {
|
|
use super::{DispatchResult, *};
|
|
use frame_support::pallet_prelude::*;
|
|
use frame_system::pallet_prelude::*;
|
|
|
|
/// Default preludes for [`Config`].
|
|
pub mod config_preludes {
|
|
use super::*;
|
|
use frame_support::derive_impl;
|
|
|
|
/// Default prelude sensible to be used in a testing environment.
|
|
pub struct TestDefaultConfig;
|
|
|
|
#[derive_impl(frame_system::config_preludes::TestDefaultConfig as frame_system::DefaultConfig, no_aggregated_types)]
|
|
impl frame_system::DefaultConfig for TestDefaultConfig {}
|
|
|
|
#[frame_support::register_default_impl(TestDefaultConfig)]
|
|
impl DefaultConfig for TestDefaultConfig {
|
|
type WeightInfo = ();
|
|
#[inject_runtime_type]
|
|
type RuntimeEvent = ();
|
|
#[inject_runtime_type]
|
|
type RuntimeCall = ();
|
|
}
|
|
}
|
|
#[pallet::config(with_default)]
|
|
pub trait Config: frame_system::Config {
|
|
/// The overarching event type.
|
|
#[pallet::no_default_bounds]
|
|
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
|
|
|
|
/// A sudo-able call.
|
|
#[pallet::no_default_bounds]
|
|
type RuntimeCall: Parameter
|
|
+ UnfilteredDispatchable<RuntimeOrigin = Self::RuntimeOrigin>
|
|
+ GetDispatchInfo;
|
|
|
|
/// Type representing the weight of this pallet
|
|
type WeightInfo: WeightInfo;
|
|
}
|
|
|
|
#[pallet::pallet]
|
|
pub struct Pallet<T>(_);
|
|
|
|
#[pallet::call]
|
|
impl<T: Config> Pallet<T> {
|
|
/// Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1).
|
|
#[pallet::call_index(0)]
|
|
#[pallet::weight({
|
|
let dispatch_info = call.get_dispatch_info();
|
|
(
|
|
T::WeightInfo::sudo().saturating_add(dispatch_info.weight),
|
|
dispatch_info.class
|
|
)
|
|
})]
|
|
pub fn sudo(
|
|
origin: OriginFor<T>,
|
|
call: Box<<T as Config>::RuntimeCall>,
|
|
) -> DispatchResultWithPostInfo {
|
|
// This is a public call, so we ensure that the origin is some signed account.
|
|
let sender = ensure_signed(origin)?;
|
|
ensure!(Self::key().map_or(false, |k| sender == k), Error::<T>::RequireSudo);
|
|
|
|
let res = call.dispatch_bypass_filter(frame_system::RawOrigin::Root.into());
|
|
Self::deposit_event(Event::Sudid { sudo_result: res.map(|_| ()).map_err(|e| e.error) });
|
|
// Sudo user does not pay a fee.
|
|
Ok(Pays::No.into())
|
|
}
|
|
|
|
/// Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
/// This function does not check the weight of the call, and instead allows the
|
|
/// Sudo user to specify the weight of the call.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1).
|
|
#[pallet::call_index(1)]
|
|
#[pallet::weight((*weight, call.get_dispatch_info().class))]
|
|
pub fn sudo_unchecked_weight(
|
|
origin: OriginFor<T>,
|
|
call: Box<<T as Config>::RuntimeCall>,
|
|
weight: Weight,
|
|
) -> DispatchResultWithPostInfo {
|
|
// This is a public call, so we ensure that the origin is some signed account.
|
|
let sender = ensure_signed(origin)?;
|
|
let _ = weight; // We don't check the weight witness since it is a root call.
|
|
ensure!(Self::key().map_or(false, |k| sender == k), Error::<T>::RequireSudo);
|
|
|
|
let res = call.dispatch_bypass_filter(frame_system::RawOrigin::Root.into());
|
|
Self::deposit_event(Event::Sudid { sudo_result: res.map(|_| ()).map_err(|e| e.error) });
|
|
// Sudo user does not pay a fee.
|
|
Ok(Pays::No.into())
|
|
}
|
|
|
|
/// Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo
|
|
/// key.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1).
|
|
#[pallet::call_index(2)]
|
|
#[pallet::weight(T::WeightInfo::set_key())]
|
|
pub fn set_key(
|
|
origin: OriginFor<T>,
|
|
new: AccountIdLookupOf<T>,
|
|
) -> DispatchResultWithPostInfo {
|
|
// This is a public call, so we ensure that the origin is some signed account.
|
|
let sender = ensure_signed(origin)?;
|
|
ensure!(Self::key().map_or(false, |k| sender == k), Error::<T>::RequireSudo);
|
|
let new = T::Lookup::lookup(new)?;
|
|
|
|
Self::deposit_event(Event::KeyChanged { old_sudoer: Key::<T>::get() });
|
|
Key::<T>::put(&new);
|
|
// Sudo user does not pay a fee.
|
|
Ok(Pays::No.into())
|
|
}
|
|
|
|
/// Authenticates the sudo key and dispatches a function call with `Signed` origin from
|
|
/// a given account.
|
|
///
|
|
/// The dispatch origin for this call must be _Signed_.
|
|
///
|
|
/// ## Complexity
|
|
/// - O(1).
|
|
#[pallet::call_index(3)]
|
|
#[pallet::weight({
|
|
let dispatch_info = call.get_dispatch_info();
|
|
(
|
|
T::WeightInfo::sudo_as().saturating_add(dispatch_info.weight),
|
|
dispatch_info.class,
|
|
)
|
|
})]
|
|
pub fn sudo_as(
|
|
origin: OriginFor<T>,
|
|
who: AccountIdLookupOf<T>,
|
|
call: Box<<T as Config>::RuntimeCall>,
|
|
) -> DispatchResultWithPostInfo {
|
|
// This is a public call, so we ensure that the origin is some signed account.
|
|
let sender = ensure_signed(origin)?;
|
|
ensure!(Self::key().map_or(false, |k| sender == k), Error::<T>::RequireSudo);
|
|
|
|
let who = T::Lookup::lookup(who)?;
|
|
|
|
let res = call.dispatch_bypass_filter(frame_system::RawOrigin::Signed(who).into());
|
|
|
|
Self::deposit_event(Event::SudoAsDone {
|
|
sudo_result: res.map(|_| ()).map_err(|e| e.error),
|
|
});
|
|
// Sudo user does not pay a fee.
|
|
Ok(Pays::No.into())
|
|
}
|
|
}
|
|
|
|
#[pallet::event]
|
|
#[pallet::generate_deposit(pub(super) fn deposit_event)]
|
|
pub enum Event<T: Config> {
|
|
/// A sudo call just took place.
|
|
Sudid {
|
|
/// The result of the call made by the sudo user.
|
|
sudo_result: DispatchResult,
|
|
},
|
|
/// The sudo key has been updated.
|
|
KeyChanged {
|
|
/// The old sudo key if one was previously set.
|
|
old_sudoer: Option<T::AccountId>,
|
|
},
|
|
/// A [sudo_as](Pallet::sudo_as) call just took place.
|
|
SudoAsDone {
|
|
/// The result of the call made by the sudo user.
|
|
sudo_result: DispatchResult,
|
|
},
|
|
}
|
|
|
|
#[pallet::error]
|
|
/// Error for the Sudo pallet
|
|
pub enum Error<T> {
|
|
/// Sender must be the Sudo account
|
|
RequireSudo,
|
|
}
|
|
|
|
/// The `AccountId` of the sudo key.
|
|
#[pallet::storage]
|
|
#[pallet::getter(fn key)]
|
|
pub(super) type Key<T: Config> = StorageValue<_, T::AccountId, OptionQuery>;
|
|
|
|
#[pallet::genesis_config]
|
|
#[derive(frame_support::DefaultNoBound)]
|
|
pub struct GenesisConfig<T: Config> {
|
|
/// The `AccountId` of the sudo key.
|
|
pub key: Option<T::AccountId>,
|
|
}
|
|
|
|
#[pallet::genesis_build]
|
|
impl<T: Config> BuildGenesisConfig for GenesisConfig<T> {
|
|
fn build(&self) {
|
|
if let Some(ref key) = self.key {
|
|
Key::<T>::put(key);
|
|
}
|
|
}
|
|
}
|
|
}
|