Returns true if a bech32 hrp uses valid characters.
bool hrpValid(String hrp) => hrp.codeUnits.every((c) => c > 32 && c < 127);