RBudzynski commited on
Commit
53c87f1
·
verified ·
1 Parent(s): 59c9b47

Update dataset card for logs

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Logs-Ethereum-Cryptocurrency-Data
3
+ tags:
4
+ - ethereum
5
+ - blockchain
6
+ - parquet
7
+ - blockdb
8
+ ---
9
+
10
+ # Logs-Ethereum-Cryptocurrency-Data
11
+
12
+ Hive-partitioned Parquet export of BlockDB `logs` (Ethereum).
13
+
14
+ ## Load
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ ds = load_dataset("RBudzynski/Logs-Ethereum-Cryptocurrency-Data", split="train")
19
+ ```
20
+
21
+ Files live under `data/year=YYYY/month=MM/part-NNNN.parquet`.
22
+
23
+ Range: `2015-08` .. `2026-06` (UTC calendar months).
24
+
25
+ ## Schema
26
+
27
+ | column | type |
28
+ | --- | --- |
29
+ | `block_timestamp` | `timestamp` |
30
+ | `block_number` | `int64` |
31
+ | `tx_index` | `int32` |
32
+ | `log_index` | `int32` |
33
+ | `contract_address` | `string` |
34
+ | `topic_zero` | `string?` |
35
+ | `data_topics` | `string` |
36
+ | `data` | `string` |
37
+ | `_tracing_id` | `string` |
38
+ | `_created_at` | `timestamp` |
39
+ | `_updated_at` | `timestamp` |
40
+