paritytech / extended-parachain-template

Node template to build parachains with all the required pallets. Slightly opinionated based on what majority of parachain teams are using.
The Unlicense
27 stars 21 forks source link

Add Scheduler pallet #59

Closed stiiifff closed 1 year ago

stiiifff commented 1 year ago

Support for scheduled chain operations is a basic capability that all parachains should offer out-of-the-box. The pallet should be configured with a ScheduleOrigin of EnsureRoot. This provides the capability to perform scheduled Runtime upgrades from either a typical Multisig Sudo account, or a Governance origin.

Depends on #58