This project investigates whether large "whale" transactions on the Arbitrum blockchain have a measurable impact on the ARB token price.
Over a 30-day period, we analyzed $1+ billion worth of ARB transactions, combining on-chain activity data with market price data.
- Dune API β For fetching whale transaction data from the Arbitrum blockchain.
- CoinGecko API β For historical ARB token price data.
- Language: Python 3.x
- Libraries Used:
requestsβ API data fetchingpandasβ Data wrangling & cleaningnumpyβ Numerical computationsscipyβ Statistical analysis (Pearson correlation)matplotlib&seabornβ Data visualization
-
Data Collection
- Queried Dune API for whale transaction data.
- Queried CoinGecko API for historical ARB price data.
-
Data Processing
- Merged datasets by timestamp.
- Normalized values for comparison.
-
Statistical Analysis
- Calculated Pearsonβs correlation coefficient and p-value.
- Created scatter plots and lineβbar visualizations.
-
Visualization
- Scatter plot for whale transactions vs. price impact.
- Lineβbar plot comparing whale transaction volume with price change.
| Metric | Value | Interpretation |
|---|---|---|
| Correlation coefficient | -0.0246 | Very weak negative relationship |
| P-value | 0.8973 | Not statistically significant |
- Conclusion: Whale transactions showed no meaningful short-term effect on ARB price movement during the 30-day period analyzed.
- Clone the repository .