Get transaction details by TXID
Future<Tx> tx(String txid) async { final data = await _proxyInterface.get('/tx/$txid'); final tx = pb.Tx.fromBuffer(data); return Tx.fromProto(tx); }