interface PublicKeyStatic {
    create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
    isPublicKey(value: unknown): boolean;
}

Methods