mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-26 15:51:08 +00:00
a310df263d
This PR is a continuation of https://github.com/paritytech/polkadot-sdk/pull/2102 and part of an initiative started here https://hackmd.io/@romanp/rJ318ZCEp What has been done: - The content under `docs/*` (with the exception of `docs/mermaid`) has been moved to `docs/contributor/` - Developer Hub has been renamed to Polkadot SDK Docs, and the crate has been renamed from `developer-hub` to `polkadot-sdk-docs` - The content under `developer-hub/*` has been moved to `docs/sdk` --- Original PR https://github.com/paritytech/polkadot-sdk/pull/2565, it has been close due to too many rebase conflicts --------- Co-authored-by: Serban Iorga <serban@parity.io> Co-authored-by: Chevdor <chevdor@users.noreply.github.com> Co-authored-by: Egor_P <egor@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
15 lines
589 B
Rust
15 lines
589 B
Rust
//! # FRAME Origin
|
|
//!
|
|
//! Notes:
|
|
//!
|
|
//! - Def talk about account abstraction and how it is a solved issue in frame. See Gav's talk in
|
|
//! Protocol Berg 2023
|
|
//! - system's raw origin, how it is amalgamated with other origins into one type
|
|
//! [`frame_composite_enums`]
|
|
//! - signed origin
|
|
//! - unsigned origin, link to [`fee_less_runtime`]
|
|
//! - Root origin, how no one can obtain it.
|
|
//! - Abstract origin: how FRAME allows you to express "origin is 2/3 of the this body or 1/2 of
|
|
//! that body or half of the token holders".
|
|
//! - `type CustomOrigin: EnsureOrigin<_>` in pallets.
|