broadcastTx method
Broadcast a single transaction
Implementation
Future<BroadcastResponse> broadcastTx(List<int> txBytes) async {
if (txBytes.isEmpty) {
throw ValidationException('Transaction bytes cannot be empty');
}
return _broadcastTxInternal(txBytes);
}