pub trait WeightInfo {
Show 13 methods
// Required methods
fn create_sponsored_account_with_delegation(s: u32) -> Weight;
fn add_public_key_to_msa() -> Weight;
fn grant_delegation(s: u32) -> Weight;
fn add_onchain_message(n: u32) -> Weight;
fn add_ipfs_message() -> Weight;
fn apply_item_actions(n: u32) -> Weight;
fn upsert_page(s: u32) -> Weight;
fn delete_page() -> Weight;
fn apply_item_actions_with_signature(s: u32) -> Weight;
fn upsert_page_with_signature(s: u32) -> Weight;
fn delete_page_with_signature() -> Weight;
fn claim_handle(b: u32) -> Weight;
fn change_handle(b: u32) -> Weight;
}
Expand description
Weight functions needed for pallet_msa.
Required Methods§
fn create_sponsored_account_with_delegation(s: u32) -> Weight
fn add_public_key_to_msa() -> Weight
fn grant_delegation(s: u32) -> Weight
fn add_onchain_message(n: u32) -> Weight
fn add_ipfs_message() -> Weight
fn apply_item_actions(n: u32) -> Weight
fn upsert_page(s: u32) -> Weight
fn delete_page() -> Weight
fn apply_item_actions_with_signature(s: u32) -> Weight
fn upsert_page_with_signature(s: u32) -> Weight
fn delete_page_with_signature() -> Weight
fn claim_handle(b: u32) -> Weight
fn change_handle(b: u32) -> Weight
Object Safety§
This trait is not object safe.