Validate a transaction ID (should be 32 bytes in hex format)
bool isValidTxId(String txId) { return txId.length == 64 && _isValidHex(txId); }