Trait pallet_schemas::pallet::Config
source · pub trait Config: Config {
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
type WeightInfo: WeightInfo;
type MinSchemaModelSizeBytes: Get<u32>;
type SchemaModelMaxBytesBoundedVecLimit: Get<u32> + MaxEncodedLen;
type MaxSchemaRegistrations: Get<SchemaId>;
type CreateSchemaViaGovernanceOrigin: EnsureOrigin<Self::RuntimeOrigin>;
type Proposal: Parameter + Dispatchable<RuntimeOrigin = Self::RuntimeOrigin, PostInfo = PostDispatchInfo> + From<Call<Self>>;
type ProposalProvider: ProposalProvider<Self::AccountId, Self::Proposal>;
type MaxSchemaSettingsPerSchema: Get<u32>;
}
Expand description
Configuration trait of this pallet.
The main purpose of this trait is to act as an interface between this pallet and the runtime in which it is embedded in. A type, function, or constant in this trait is essentially left to be configured by the runtime that includes this pallet.
Consequently, a runtime that wants to include this pallet must implement this trait.
Required Associated Types§
sourcetype RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
The overarching event type.
sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Weight information for extrinsics in this pallet.
sourcetype MinSchemaModelSizeBytes: Get<u32>
type MinSchemaModelSizeBytes: Get<u32>
Minimum length of Schema model size in bytes
sourcetype SchemaModelMaxBytesBoundedVecLimit: Get<u32> + MaxEncodedLen
type SchemaModelMaxBytesBoundedVecLimit: Get<u32> + MaxEncodedLen
Maximum length of a Schema model Bounded Vec
sourcetype MaxSchemaRegistrations: Get<SchemaId>
type MaxSchemaRegistrations: Get<SchemaId>
Maximum number of schemas that can be registered
sourcetype CreateSchemaViaGovernanceOrigin: EnsureOrigin<Self::RuntimeOrigin>
type CreateSchemaViaGovernanceOrigin: EnsureOrigin<Self::RuntimeOrigin>
The origin that is allowed to create providers via governance
sourcetype Proposal: Parameter + Dispatchable<RuntimeOrigin = Self::RuntimeOrigin, PostInfo = PostDispatchInfo> + From<Call<Self>>
type Proposal: Parameter + Dispatchable<RuntimeOrigin = Self::RuntimeOrigin, PostInfo = PostDispatchInfo> + From<Call<Self>>
The runtime call dispatch type.
sourcetype ProposalProvider: ProposalProvider<Self::AccountId, Self::Proposal>
type ProposalProvider: ProposalProvider<Self::AccountId, Self::Proposal>
The Council proposal provider interface
sourcetype MaxSchemaSettingsPerSchema: Get<u32>
type MaxSchemaSettingsPerSchema: Get<u32>
Maximum number of schema settings that can be registered per schema (if any)