RBudzynski commited on
Commit
586312e
·
verified ·
1 Parent(s): 39064f2

Update dataset card for token_to_token_cross_pool_vwap

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Token-To-Token-Cross-Pool-VWAP-Ethereum-Cryptocurrency-Data
3
+ tags:
4
+ - ethereum
5
+ - blockchain
6
+ - parquet
7
+ - blockdb
8
+ ---
9
+
10
+ # Token-To-Token-Cross-Pool-VWAP-Ethereum-Cryptocurrency-Data
11
+
12
+ Hive-partitioned Parquet export of BlockDB `token_to_token_cross_pool_vwap` (Ethereum).
13
+
14
+ ## Load
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ ds = load_dataset("BlockDB/Token-To-Token-Cross-Pool-VWAP-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
+ | `bucket_start` | `timestamp` |
31
+ | `bucket_end` | `timestamp` |
32
+ | `bucket_seconds` | `int32` |
33
+ | `token_in` | `string` |
34
+ | `token_out` | `string` |
35
+ | `price_vwap` | `string` |
36
+ | `total_volume_in_raw` | `string` |
37
+ | `total_volume_in` | `string?` |
38
+ | `total_volume_out_raw` | `string` |
39
+ | `total_volume_out` | `string?` |
40
+ | `trade_count` | `int64` |
41
+ | `pool_count` | `int32` |
42
+ | `_tracing_id` | `string` |
43
+ | `_parent_tracing_ids` | `string` |
44
+ | `_created_at` | `timestamp` |
45
+ | `_updated_at` | `timestamp` |
46
+