whitepaper.tex 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. \documentclass[11pt,a4paper]{article}
  2. \usepackage[hyperref]{acl2020}
  3. \usepackage{times}
  4. \usepackage{amsfonts}
  5. \usepackage{amsmath}
  6. \usepackage{latexsym}
  7. \usepackage{graphicx}
  8. \usepackage{subcaption}
  9. \usepackage{xcolor}
  10. \renewcommand{\UrlFont}{\ttfamily\small}
  11. \usepackage{microtype}
  12. \newcommand{\mike}[1]{\textcolor{red}{\bf [MW: #1]}}
  13. \newcommand{\istvan}[1]{\textcolor{blue}{\bf [IAS: #1]}}
  14. \newcommand{\manu}[1]{\textcolor{green}{\bf [Manu: #1]}}
  15. \aclfinalcopy
  16. \newcommand\BibTeX{B\textsc{ib}\TeX}
  17. \title{Tutela: An Open-Source Tool for Assessing User-Privacy \\ on Ethereum and Tornado Cash}
  18. \author{
  19. \small{Mike Wu, Will McTighe, Kaili Wang}\\
  20. \small{Stanford University} \\ \And
  21. \small{Istv\'{a}n A. Seres} \\
  22. \small{E\"{o}tv\"{o}s Lor\'{a}nd University} \\ \AND
  23. \small{Nick Bax} \\
  24. \small{Convex Research} \\ \And
  25. \small{Manuel Puebla, Mariano Mendez}\\
  26. \small{Universidad de Buenos Aires}\\
  27. \small{Facultad de Ingenieria}\\ \AND
  28. \small{Federico Carrone, Tomás De Mattey, Herman O. Demaestri, Mariano Nicolini, Pedro Fontana} \\
  29. \small{LambdaClass} \\}
  30. \date{}
  31. \begin{document}
  32. \maketitle
  33. \begin{abstract}
  34. A common misconception among blockchain users is that pseudonymity guarantees privacy. The reality is almost the opposite. Every transaction one makes is recorded on a public ledger and reveals information about one's identity.
  35. Mixers, such as Tornado Cash, were developed to preserve privacy through ``mixing'' transactions with those of others in an anonymity pool, making it harder to link deposits and withdrawals from the pool. Unfortunately, it is still possible to reveal information about those in the anonymity pool if users are not careful.
  36. We introduce Tutela, an application built on expert heuristics to report the true anonymity of an Ethereum address.
  37. In particular, Tutela has three functionalities: first, it clusters together Ethereum addresses based on interaction history such that for an Ethereum address, we can identify other addresses likely owned by the same entity; second, it shows Ethereum users their potentially compromised transactions; third, Tutela computes the true size of the anonymity pool of each Tornado Cash mixer by excluding potentially compromised transactions. A public implementation of Tutela can be found at \url{https://github.com/TutelaLabs/tutela-app}. To use Tutela, visit \url{https://www.tutela.xyz}\footnote{For related questions and inquiries, please contact the corresponding author at \texttt{wmctighe@stanford.edu}.}.
  38. \end{abstract}
  39. \input{1_introduction}
  40. \input{2_preliminaries}
  41. \input{3_overview}
  42. \input{4_data}
  43. \input{5_eth}
  44. \input{6_tcash}
  45. \input{7_analysis}
  46. \input{8_discussion}
  47. \section*{Acknowledgments}
  48. We would like to acknowledge both the Tornado Cash team and the Convex Research team for their support. This work was funded by the Tornado Cash community bounty to develop anonymity tools to protect user privacy. We also thank the Tornado Cash community at large for their consistent feedback and patience through our application's development. Finally, we thank the Stanford Venture Studio for their support with compute credits.
  49. \appendix
  50. \input{9_appendix}
  51. \bibliography{whitepaper}
  52. \bibliographystyle{acl_natbib}
  53. \end{document}