16 major breaking releases

19.0.0 Sep 26, 2024
18.0.0 Jul 18, 2024
17.0.0 Jul 12, 2024
16.0.0 Jun 24, 2024
0.0.0 Aug 31, 2023

#39 in #exit

Download history 8/week @ 2024-06-30 89/week @ 2024-07-07 128/week @ 2024-07-14 13/week @ 2024-07-21 10/week @ 2024-07-28 38/week @ 2024-08-04 62/week @ 2024-08-18 29/week @ 2024-08-25 38/week @ 2024-09-01 28/week @ 2024-09-08 102/week @ 2024-09-15 254/week @ 2024-09-22 143/week @ 2024-09-29 125/week @ 2024-10-06 126/week @ 2024-10-13

649 downloads per month
Used in polkadot-sdk

Apache-2.0

2.5MB
44K SLoC

Release

Polkadot SDK stable2409


lib.rs:

Safe Mode

Trigger for stopping all extrinsics outside of a specific whitelist.

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

Safe mode is entered via two paths (deposit or forced) until a set block number. The mode is exited when the block number is reached or a call to one of the exit extrinsics is made. A WhitelistedCalls configuration item contains all calls that can be executed while in safe mode.

Primary Features

  • Entering safe mode can be via privileged origin or anyone who places a deposit.
  • Origin configuration items are separated for privileged entering and exiting safe mode.
  • A configurable duration sets the number of blocks after which the system will exit safe mode.
  • Safe mode may be extended beyond the configured exit by additional calls.

Example

Configuration of call filters:

impl frame_system::Config for Runtime {
  // …
  type BaseCallFilter = InsideBoth<DefaultFilter, SafeMode>;
  // …
}

Entering safe mode with deposit:

Entering safe mode via privileged origin:

Exiting safe mode via privileged origin:

Low Level / Implementation Details

Use Cost

A storage value (EnteredUntil) is used to store the block safe mode will be exited on. Using the call filter will require a db read of that storage on the first extrinsic. The storage will be added to the overlay and incur low cost for all additional calls.

Dependencies

~17–32MB
~524K SLoC