mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 07:31:02 +00:00
2ab3f03f0b
Removes the `bridges/snowbridge/parachain` directory and moves everything up to under `snowbridge` directly. We are cleaning up our local dev env after merging our crates into the polkadot-sdk. --------- Co-authored-by: claravanstaden <Cats 4 life!>
17 lines
445 B
Rust
17 lines
445 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
|
|
//! Helpers for implementing runtime api
|
|
|
|
use snowbridge_core::AgentId;
|
|
use xcm::{prelude::*, VersionedLocation};
|
|
|
|
use crate::{agent_id_of, Config};
|
|
|
|
pub fn agent_id<Runtime>(location: VersionedLocation) -> Option<AgentId>
|
|
where
|
|
Runtime: Config,
|
|
{
|
|
let location: Location = location.try_into().ok()?;
|
|
agent_id_of::<Runtime>(&location).ok()
|
|
}
|