Skip to content
Snippets Groups Projects
Commit 8042b1cb authored by joe petrowski's avatar joe petrowski Committed by GitHub
Browse files

Add Collectives as Trusted Teleporter (#6326)

* add collectives as trusted teleporter

* fix statemint-specific doc
parent b5d5a7ee
Branches
No related merge requests found
......@@ -107,10 +107,12 @@ pub type XcmRouter = (
parameter_types! {
pub const Polkadot: MultiAssetFilter = Wild(AllOf { fun: WildFungible, id: Concrete(DotLocation::get()) });
pub const PolkadotForStatemint: (MultiAssetFilter, MultiLocation) = (Polkadot::get(), Parachain(1000).into());
pub const PolkadotForCollectives: (MultiAssetFilter, MultiLocation) = (Polkadot::get(), Parachain(1001).into());
}
/// Polkadot Relay recognizes/respects the Statemint chain as a teleporter.
pub type TrustedTeleporters = (xcm_builder::Case<PolkadotForStatemint>,);
/// Polkadot Relay recognizes/respects System parachains as teleporters.
pub type TrustedTeleporters =
(xcm_builder::Case<PolkadotForStatemint>, xcm_builder::Case<PolkadotForCollectives>);
match_types! {
pub type OnlyParachains: impl Contains<MultiLocation> = {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment