Get raw transaction bytes
Future<List<int>> rawTx(String txid) async { if (!isValidTxId(txid)) { throw ValidationException('Invalid TXID: $txid'); } return await _proxy.get('/raw-tx/$txid'); }