pub trait KeypairUtil {
    fn new() -> Self;
    fn pubkey(&self) -> Pubkey;
}

Required Methods

Implementations on Foreign Types

Return a new ED25519 keypair

Return the public key for the given keypair

Implementors