pub type PublicKey = MultiSigner;
Expand description
General Public Key used across the protocol
Aliased Type§
enum PublicKey {
Ed25519(CryptoBytes<32, (PublicTag, Ed25519Tag)>),
Sr25519(CryptoBytes<32, Sr25519PublicTag>),
Ecdsa(CryptoBytes<33, (PublicTag, EcdsaTag)>),
}