This repository contains a set of software tools for analyzing ERC-20 token transfer networks.
- C/C++
- Java
- Bash
- Python
- ...
The currently supported graph models are:
-
Multigraph: a weighted directed multigraph where:
- each node represents an Ethereum address;
- each edge (u, v) represents a token transfer from address u to v;
- each edge is labelled with the amount of tokens transferred.
-
Collapsed graph: a weighted directed graph where:
- each node represents an Ethereum address;
- each edge (u, v) summarizes all transfers from address u to v.
- each edge is labelled with the total number of transfers and the total amount of tokens exchanged.