static bool isValidPrivateKey(String privateKey) { try { NostrKeyPairs(private: privateKey); return true; } catch (e) { return false; } }