Add link to paper and GitHub repository
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
| 3 |
task_categories:
|
| 4 |
- time-series-forecasting
|
| 5 |
- tabular-classification
|
|
|
|
| 6 |
tags:
|
| 7 |
- finance
|
| 8 |
- defi
|
|
@@ -11,9 +14,6 @@ tags:
|
|
| 11 |
- cryptocurrency
|
| 12 |
- transaction
|
| 13 |
- microstructure
|
| 14 |
-
pretty_name: AMM-Events (Event-Aware DeFi Dataset)
|
| 15 |
-
size_categories:
|
| 16 |
-
- 100M<n<1B
|
| 17 |
---
|
| 18 |
|
| 19 |
# AMM-Events: A Multi-Protocol DeFi Event Dataset
|
|
@@ -24,7 +24,8 @@ size_categories:
|
|
| 24 |
|
| 25 |
Unlike traditional financial datasets based on Limit Order Books (LOB), this dataset focuses on **Automated Market Makers (AMMs)**, where price dynamics are triggered exclusively by discrete on-chain events (e.g., swaps, mints, burns) rather than continuous off-chain information.
|
| 26 |
|
| 27 |
-
- **Paper
|
|
|
|
| 28 |
- **Total Events:** 8,917,353
|
| 29 |
- **Time Span:** Jan 1, 2024 – Sep 16, 2025
|
| 30 |
- **Block Range:** 18,908,896 – 23,374,292
|
|
@@ -72,4 +73,5 @@ from datasets import load_dataset
|
|
| 72 |
dataset = load_dataset("Jackson668/AMM-Events")
|
| 73 |
|
| 74 |
# Example: Accessing the first train example
|
| 75 |
-
print(dataset['train'])
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
size_categories:
|
| 4 |
+
- 100M<n<1B
|
| 5 |
task_categories:
|
| 6 |
- time-series-forecasting
|
| 7 |
- tabular-classification
|
| 8 |
+
pretty_name: AMM-Events (Event-Aware DeFi Dataset)
|
| 9 |
tags:
|
| 10 |
- finance
|
| 11 |
- defi
|
|
|
|
| 14 |
- cryptocurrency
|
| 15 |
- transaction
|
| 16 |
- microstructure
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# AMM-Events: A Multi-Protocol DeFi Event Dataset
|
|
|
|
| 24 |
|
| 25 |
Unlike traditional financial datasets based on Limit Order Books (LOB), this dataset focuses on **Automated Market Makers (AMMs)**, where price dynamics are triggered exclusively by discrete on-chain events (e.g., swaps, mints, burns) rather than continuous off-chain information.
|
| 26 |
|
| 27 |
+
- **Paper:** [Towards Event-Aware Forecasting in DeFi: Insights from On-chain Automated Market Maker Protocols](https://huggingface.co/papers/2604.20374)
|
| 28 |
+
- **Code:** [https://github.com/yosen-king/Deep-AMM-Events](https://github.com/yosen-king/Deep-AMM-Events)
|
| 29 |
- **Total Events:** 8,917,353
|
| 30 |
- **Time Span:** Jan 1, 2024 – Sep 16, 2025
|
| 31 |
- **Block Range:** 18,908,896 – 23,374,292
|
|
|
|
| 73 |
dataset = load_dataset("Jackson668/AMM-Events")
|
| 74 |
|
| 75 |
# Example: Accessing the first train example
|
| 76 |
+
print(dataset['train'][0])
|
| 77 |
+
```
|