RBudzynski commited on
Commit
026915b
·
verified ·
1 Parent(s): 0146669

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - blockchain
7
+ - ethereum
8
+ - evm
9
+ - stablecoin
10
+ - erc20
11
+ - usdc
12
+ - usdt
13
+ - dai
14
+ - blockdb
15
+ - parquet
16
+ ---
17
+
18
+ # Stablecoin Transfers — Ethereum Cryptocurrency Data
19
+
20
+ ERC-20 transfer events for USDC, USDT, and DAI on Ethereum mainnet.
21
+
22
+ | | |
23
+ |---|---|
24
+ | **Chain** | Ethereum mainnet (`chain_id` 1) |
25
+ | **Coverage** | `2017-11` → `2024-12` (UTC, by `block_timestamp`) |
26
+ | **Tokens** | USDC, USDT, DAI |
27
+ | **Format** | Parquet, Hive partitions `data/year=YYYY/month=MM/` |
28
+ | **Source** | [BlockDB](https://www.blockdb.io) `blockdb0304_token_transfers_v1` |
29
+ | **Schema** | [Token Transfers — data catalog](https://docs.blockdb.io/data-catalog/evm/transfers/token-transfers) |
30
+
31
+ ## Files
32
+
33
+ ```
34
+ data/
35
+ year=YYYY/month=MM/part-NNNN.parquet
36
+ ```
37
+
38
+ ## Load
39
+
40
+ ```python
41
+ import duckdb
42
+
43
+ duckdb.sql("""
44
+ SELECT block_timestamp, from_address, to_address, token_address, amount_adj
45
+ FROM read_parquet('hf://datasets/BlockDB/Stablecoin-Transfers-Ethereum-Cryptocurrency-Data/data/year=2024/month=01/*.parquet')
46
+ LIMIT 10
47
+ """)
48
+ ```
49
+
50
+ ## Need more than this snapshot?
51
+
52
+ - **Filters, other tokens, or recent history** — [BlockDB Historic REST API](https://docs.blockdb.io/api-reference/overview/home).
53
+ - **Real-time streams** — [BlockDB WebSocket feed](https://docs.blockdb.io/wss-reference/overview/introduction).
54
+ - **Custom extracts** (anything we can derive from on-chain data) — [support@blockdb.io](mailto:support@blockdb.io).