1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- \documentclass[11pt,a4paper]{article}
- \usepackage[hyperref]{acl2020}
- \usepackage{times}
- \usepackage{amsfonts}
- \usepackage{amsmath}
- \usepackage{latexsym}
- \usepackage{graphicx}
- \usepackage{subcaption}
- \usepackage{xcolor}
- \renewcommand{\UrlFont}{\ttfamily\small}
- \usepackage{microtype}
- \newcommand{\mike}[1]{\textcolor{red}{\bf [MW: #1]}}
- \newcommand{\istvan}[1]{\textcolor{blue}{\bf [IAS: #1]}}
- \newcommand{\manu}[1]{\textcolor{green}{\bf [Manu: #1]}}
- \aclfinalcopy
- \newcommand\BibTeX{B\textsc{ib}\TeX}
- \title{Tutela: An Anonymity Tool for Ethereum and Tornado Cash}
- \author{
- \small{Mike Wu, Will McTighe, Kaili Wang}\\
- \small{Stanford University} \\ \And
- \small{Nick Bax} \\
- \small{Convex Research} \\ \And
- \small{Istv\'{a}n A. Seres} \\
- \small{E\"{o}tv\"{o}s Lor\'{a}nd University} \\ \AND
- \small{Manuel Puebla, Mariano Mendez}\\
- \small{Universidad de Buenos Aires}\\
- \small{Facultad de Ingenieria}\\ \AND
- \small{Federico Carrone, Tomás De Mattey, Herman O. Demaestri, Mariano Nicolini, Pedro Fontana} \\
- \small{LambdaClass} \\}
- \date{}
- \begin{document}
- \maketitle
- \begin{abstract}
- 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.
- Mixers, such as Tornado Cash, were developed to preserve privacy through ``mixing'' transactions with those of others in an anonymity pool, such that it is much 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.
- We introduce Tutela, an application built on expert heuristics to report the true anonymity of an Ethereum address.
- In particular, Tutela has two 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, Tutela computes the true size of the anonymity pool of Tornado Cash mixing, taking into account compromised addresses that reveal identity information. A public implementation of Tutela can be found at \url{https://github.com/TutelaLabs/tutela-app}.
- \end{abstract}
- \input{1_introduction}
- \input{2_preliminaries}
- \input{3_overview}
- \input{4_data}
- \input{5_eth}
- \input{6_tcash}
- \input{7_analysis}
- \input{8_discussion}
- \section*{Acknowledgments}
- 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.
- \appendix
- \input{9_appendix}
- \bibliography{whitepaper}
- \bibliographystyle{acl_natbib}
- \end{document}
|