System
Overview
System module provides low-level types, storage, and functions for your blockchain. All other pallets depend on the System
library as the basis of your Subsembly
runtime.
System module defines critical storage items for your blockchain. Some of them are:
Account
- stores account balance and nonceExtrinsicCount
- total extrinsics count for current blockParentHash
- hash of the previous blockEvents
- vector of events during block execution
And finally, it contains some important functions that access the storage, compute the extrinsics root, verify the origin of extrinsic, etc.
Last updated