RBudzynski commited on
Commit
3eada1b
·
verified ·
1 Parent(s): e0235fd

Update dataset card for liquidity_pools_swap_fees

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Liquidity-Pools-Swap-Fees-Ethereum-Cryptocurrency-Data
3
+ tags:
4
+ - ethereum
5
+ - blockchain
6
+ - parquet
7
+ - blockdb
8
+ ---
9
+
10
+ # Liquidity-Pools-Swap-Fees-Ethereum-Cryptocurrency-Data
11
+
12
+ Hive-partitioned Parquet export of BlockDB `liquidity_pools_swap_fees` (Ethereum).
13
+
14
+ ## Load
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+ ds = load_dataset("BlockDB/Liquidity-Pools-Swap-Fees-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
+ | `token_in` | `string` |
37
+ | `token_out` | `string` |
38
+ | `fee_token` | `string` |
39
+ | `amount_in_raw` | `string` |
40
+ | `amount_out_raw` | `string` |
41
+ | `fee_amount_total_raw` | `string` |
42
+ | `fee_amount_user_raw` | `string?` |
43
+ | `fee_amount_protocol_raw` | `string?` |
44
+ | `fee_amount_extra_raw` | `string?` |
45
+ | `_tracing_id` | `string` |
46
+ | `_parent_tracing_ids` | `string` |
47
+ | `_created_at` | `timestamp` |
48
+ | `_updated_at` | `timestamp` |
49
+