snowbridge_runtime_common/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
3//! # Runtime Common
4//!
5//! Common traits and types shared by runtimes.
6#![cfg_attr(not(feature = "std"), no_std)]
7#[cfg(test)]
8mod tests;
9pub mod v1;
10pub mod v2;
11pub use v1::fee_handler::XcmExportFeeToSibling;
12pub use v2::register_token::{ForeignAssetOwner, LocalAssetOwner};