#![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_134_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn transfer_asset() -> Weight {
Weight::from_parts(45_177_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(66_919_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_702_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_600_000, 0)
}
pub fn deposit_asset() -> Weight {
Weight::from_parts(24_425_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(55_138_000, 3593)
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
pub fn initiate_teleport() -> Weight {
Weight::from_parts(33_996_000, 3539)
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn initiate_transfer() -> Weight {
Weight::from_parts(65_507_000, 3593)
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
}