#![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(31_942_000, 3593)
.saturating_add(T::DbWeight::get().reads(1))
.saturating_add(T::DbWeight::get().writes(1))
}
pub fn transfer_asset() -> Weight {
Weight::from_parts(43_901_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(120_287_000, 8799)
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(5))
}
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(87_257_000, 6196)
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4))
}
pub fn receive_teleported_asset() -> Weight {
Weight::from_parts(3_391_000, 0)
}
pub fn deposit_asset() -> Weight {
Weight::from_parts(25_400_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(71_778_000, 3600)
.saturating_add(T::DbWeight::get().reads(6))
.saturating_add(T::DbWeight::get().writes(3))
}
pub fn initiate_teleport() -> Weight {
Weight::from_parts(48_602_000, 3600)
.saturating_add(T::DbWeight::get().reads(5))
.saturating_add(T::DbWeight::get().writes(2))
}
pub fn initiate_transfer() -> Weight {
Weight::from_parts(99_446_000, 6196)
.saturating_add(T::DbWeight::get().reads(7))
.saturating_add(T::DbWeight::get().writes(4))
}
}