#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(missing_docs)]
use frame_support::{traits::Get, weights::Weight};
use core::marker::PhantomData;
pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo<T> {
pub(crate) fn withdraw_asset() -> Weight {
Weight::from_parts(33_669_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub(crate) fn transfer_asset() -> Weight {
Weight::from_parts(45_859_000, 6196)
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
pub(crate) fn transfer_reserve_asset() -> Weight {
Weight::from_parts(119_106_000, 6196)
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4))
}
pub(crate) fn reserve_asset_deposited() -> Weight {
Weight::from_parts(18_446_744_073_709_551_000, 0)
}
pub(crate) fn initiate_reserve_withdraw() -> Weight {
Weight::from_parts(82_067_000, 3811)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
pub(crate) fn receive_teleported_asset() -> Weight {
Weight::from_parts(34_037_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub(crate) fn deposit_asset() -> Weight {
Weight::from_parts(25_192_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub(crate) fn deposit_reserve_asset() -> Weight {
Weight::from_parts(76_317_000, 3710)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
pub(crate) fn initiate_teleport() -> Weight {
Weight::from_parts(77_773_000, 3710)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
pub(crate) fn initiate_transfer() -> Weight {
Weight::from_parts(94_230_000, 3710)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
}