#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
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 fn withdraw_asset() -> Weight {
Weight::from_parts(33_078_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn transfer_asset() -> Weight {
Weight::from_parts(44_732_000, 6196)
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(2))
}
pub fn transfer_reserve_asset() -> Weight {
Weight::from_parts(68_129_000, 6196)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
pub fn reserve_asset_deposited() -> Weight {
Weight::from_parts(18_446_744_073_709_551_000, 0)
}
pub fn initiate_reserve_withdraw() -> Weight {
Weight::from_parts(26_944_000, 3539)
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn receive_teleported_asset() -> Weight {
Weight::from_parts(2_557_000, 0)
}
pub fn deposit_asset() -> Weight {
Weight::from_parts(27_072_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn deposit_reserve_asset() -> Weight {
Weight::from_parts(54_769_000, 3593)
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
pub fn initiate_teleport() -> Weight {
Weight::from_parts(35_435_000, 3539)
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn initiate_transfer() -> Weight {
Weight::from_parts(68_363_000, 3593)
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
}