pub type Call = Call;

Aliased Type§

enum Call {
    create_identity {
        owner_key: AccountId32,
    },
    confirm_identity {
        idty_name: IdtyName,
    },
    change_owner_key {
        new_key: AccountId32,
        new_key_sig: MultiSignature,
    },
    revoke_identity {
        idty_index: u32,
        revocation_key: AccountId32,
        revocation_sig: MultiSignature,
    },
    prune_item_identities_names {
        names: Vec<IdtyName>,
    },
    fix_sufficients {
        owner_key: AccountId32,
        inc: bool,
    },
    link_account {
        account_id: AccountId32,
        payload_sig: MultiSignature,
    },
}

Variants§

§

create_identity

Fields

§owner_key: AccountId32
§

confirm_identity

Fields

§idty_name: IdtyName
§

change_owner_key

Fields

§new_key: AccountId32
§new_key_sig: MultiSignature
§

revoke_identity

Fields

§idty_index: u32
§revocation_key: AccountId32
§revocation_sig: MultiSignature
§

prune_item_identities_names

Fields

§names: Vec<IdtyName>
§

fix_sufficients

Fields

§owner_key: AccountId32
§inc: bool