RBudzynski commited on
Commit
d9d26d9
·
verified ·
1 Parent(s): 8b3f37c

Update dataset card for transactions

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Transactions-Ethereum-Cryptocurrency-Data
3
+ tags:
4
+ - ethereum
5
+ - blockchain
6
+ - parquet
7
+ - blockdb
8
+ ---
9
+
10
+ # Transactions-Ethereum-Cryptocurrency-Data
11
+
12
+ Hive-partitioned Parquet export of BlockDB `transactions` (Ethereum).
13
+
14
+ ## Load
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ ds = load_dataset("RBudzynski/Transactions-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
+ | `tx_hash` | `string` |
33
+ | `from_address` | `string` |
34
+ | `to_address` | `string?` |
35
+ | `created_contract_address` | `string?` |
36
+ | `gas_used` | `string` |
37
+ | `effective_gas_price_wei` | `string?` |
38
+ | `status_success` | `bool?` |
39
+ | `root` | `string?` |
40
+ | `tx_type` | `int16?` |
41
+ | `trace_failed` | `bool?` |
42
+ | `value_wei` | `string?` |
43
+ | `input` | `string?` |
44
+ | `nonce` | `int64?` |
45
+ | `gas_limit` | `string?` |
46
+ | `gas_price_wei` | `string?` |
47
+ | `max_fee_per_gas_wei` | `string?` |
48
+ | `max_priority_fee_per_gas_wei` | `string?` |
49
+ | `_tracing_id` | `string` |
50
+ | `_created_at` | `timestamp` |
51
+ | `_updated_at` | `timestamp` |
52
+