pub trait AppPair: AppKey + Pair<Public = <Self as AppKey>::Public> {
    type Generic: IsWrappedBy<Self> + Pair<Public = <<Self as AppKey>::Public as AppPublic>::Generic>;
}
Expand description

A application’s key pair.

Required Associated Types§

source

type Generic: IsWrappedBy<Self> + Pair<Public = <<Self as AppKey>::Public as AppPublic>::Generic>

The wrapped type which is just a plain instance of Pair.

Implementors§

source§

impl AppPair for sp_application_crypto::ecdsa::AppPair

source§

impl AppPair for sp_application_crypto::ed25519::AppPair

source§

impl AppPair for sp_application_crypto::sr25519::AppPair