Privacy analyzer is a python package that allows users to check their transactions and give traceability reports. The privacy analyzer checks transactions based on certain heuristics, which include:
- Address reuse
- Largest amount output
- Script type
- Round number payment
- Inputs from same transaction
- Exact amount payment
- Equal amount (coinjoin)
pip install privacy-analyzerThe following packages would be installed with the package
- Create a directory
mkdir working-directory - Enter into the directory
cd working-directory - Clone the repository
git clone https://github.com/toshmanuel/privacy-analyzer - Enter into the cloned directory
cd privacy-analyzer - Create a virtual environment with the virtualenv
virtualenv -p python3 venv/privacy-analyzer - Install dependencies
pip install requirements.txt