Introduce plurality XCM locations (#2846)

* Introduce plurality XCM locations

* Add RelayedFrom
This commit is contained in:
Gavin Wood
2021-04-08 20:58:06 +02:00
committed by GitHub
parent 57038b2e46
commit 9b4844e853
4 changed files with 101 additions and 10 deletions
+53 -9
View File
@@ -32,6 +32,41 @@ pub enum NetworkId {
Kusama,
}
/// An identifier of a pluralistic body.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)]
pub enum BodyId {
/// The only body in its context.
Unit,
/// A named body.
Named(Vec<u8>),
/// An indexed body.
// TODO: parity-scale-codec#262: Change to be a tuple.
Index { #[codec(compact)] id: u32 },
/// The unambiguous executive body (for Polkadot, this would be the Polkadot council).
Executive,
/// The unambiguous technical body (for Polkadot, this would be the Technical Committee).
Technical,
/// The unambiguous legislative body (for Polkadot, this could be considered the opinion of a majority of
/// lock-voters).
Legislative,
/// The unambiguous judicial body (this doesn't exist on Polkadot, but if it were to get a "grand oracle", it
/// may be considered as that).
Judicial,
}
/// A part of a pluralistic body.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, Debug)]
pub enum BodyPart {
/// The body's declaration, under whatever means it decides.
Voice,
/// A given number of members of the body.
Members { #[codec(compact)] count: u32 },
/// No less than the given proportion of members of the body.
AtLeastProportion { #[codec(compact)] nom: u32, #[codec(compact)] denom: u32 },
/// More than than the given proportion of members of the body.
MoreThanProportion { #[codec(compact)] nom: u32, #[codec(compact)] denom: u32 },
}
/// A single item in a path to describe the relative location of a consensus system.
///
/// Each item assumes a pre-existing location as its context and is defined in terms of it.
@@ -85,21 +120,30 @@ pub enum Junction {
///
/// Not currently used except as a fallback when deriving ancestry.
OnlyChild,
/// A pluralistic body existing within consensus.
///
/// Typical to be used to represent a governance origin of a chain, but could in principle be used to represent
/// things such as multisigs also.
Plurality { id: BodyId, part: BodyPart },
}
impl Junction {
pub fn is_sub_consensus(&self) -> bool {
/// Returns true if this junction can be considered an interior part of its context. This is generally `true`,
/// except for the `Parent` item.
pub fn is_interior(&self) -> bool {
match self {
Junction::Parent => false,
Junction::Parachain { .. } |
Junction::AccountId32 { .. } |
Junction::AccountIndex64 { .. } |
Junction::AccountKey20 { .. } |
Junction::PalletInstance { .. } |
Junction::GeneralIndex { .. } |
Junction::GeneralKey(..) |
Junction::OnlyChild => true,
Junction::Parachain { .. }
| Junction::AccountId32 { .. }
| Junction::AccountIndex64 { .. }
| Junction::AccountKey20 { .. }
| Junction::PalletInstance { .. }
| Junction::GeneralIndex { .. }
| Junction::GeneralKey(..)
| Junction::OnlyChild
| Junction::Plurality { .. }
=> true,
}
}
}