System Module

The System module provides low-level access to core types and cross-cutting utilities. It acts as the base layer for other pallets to interact with the Substrate framework components.

Overview

The System module defines the core data types used in a Substrate runtime. It also provides several utility functions (see Module) for other FRAME pallets.

In addition, it manages the storage items for extrinsics data, indexes, event records, and digest items, among other things that support the execution of the current block.

It also handles low-level tasks like depositing logs, basic set up and take down of temporary storage entries, and access to previous block hashes.

Interface

Dispatchable Functions

The System module does not implement any dispatchable functions.

Public Functions

See the Module struct for details of publicly available functions.

Signed Extensions

The System module defines the following extensions:

Lookup the runtime aggregator file (e.g. node/runtime) to see the full list of signed extensions included in a chain.

Usage

Prerequisites

Import the System module and derive your module's configuration trait from the system trait.

Example - Get extrinsic count and parent hash for the current block

```rust use framesupport::{declmodule, dispatch}; use framesystem::{self as system, ensuresigned};

pub trait Config: system::Config {}

declmodule! { pub struct Module for enum Call where origin: T::Origin { #[weight = 0] pub fn systemmoduleexample(origin) -> dispatch::DispatchResult { let _sender = ensuresigned(origin)?; let extrinsiccount = >::extrinsiccount(); let _parenthash = >::parent_hash(); Ok(()) } } } ```

License: Apache-2.0