RBudzynski commited on
Commit
dc8f166
·
verified ·
1 Parent(s): 9c86fce

Update dataset card for liquidity_pools

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Liquidity-Pools-Ethereum-Cryptocurrency-Data
3
+ tags:
4
+ - ethereum
5
+ - blockchain
6
+ - parquet
7
+ - blockdb
8
+ ---
9
+
10
+ # Liquidity-Pools-Ethereum-Cryptocurrency-Data
11
+
12
+ Hive-partitioned Parquet export of BlockDB `liquidity_pools` (Ethereum).
13
+
14
+ ## Load
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ ds = load_dataset("BlockDB/Liquidity-Pools-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
+ | `pool_uid` | `string` |
34
+ | `exchange_id` | `int32` |
35
+ | `type_id` | `int32` |
36
+ | `factory` | `string` |
37
+ | `tokens` | `string` |
38
+ | `contract_id` | `string?` |
39
+ | `contract_address` | `string?` |
40
+ | `pool_id` | `string?` |
41
+ | `pairnum` | `string?` |
42
+ | `asset_managers` | `string?` |
43
+ | `amp` | `string?` |
44
+ | `weights` | `string?` |
45
+ | `tick_spacing` | `int16?` |
46
+ | `_tracing_id` | `string` |
47
+ | `_parent_tracing_ids` | `string` |
48
+ | `_created_at` | `timestamp` |
49
+ | `_updated_at` | `timestamp` |
50
+