RBudzynski commited on
Commit
33256d4
·
verified ·
1 Parent(s): 7d454eb

Update dataset card for internal_transactions

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