check if private key is valid
static bool isPrivateKeyValid(String privateKey) { try { lyraDec(privateKey); return true; } catch (e) { print(e); return false; } }