referrerpolicy=no-referrer-when-downgrade

snowbridge_runtime_common/
lib.rs

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