jomarie04 commited on
Commit
1e230dc
·
verified ·
1 Parent(s): 6ed5f9d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -3
README.md CHANGED
@@ -1,3 +1,33 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # Blockchain Projects Dataset
5
+
6
+ This dataset contains information about various blockchain projects including DeFi, GameFi, NFT, and other types.
7
+
8
+ ## File
9
+ - `blockchain_projects.jsonl`
10
+
11
+ ## Columns / Fields
12
+ - `id` – unique identifier for each project
13
+ - `name` – name of the blockchain project
14
+ - `network` – blockchain network (e.g., Ethereum, Solana)
15
+ - `type` – project type (DeFi, NFT, GameFi, etc.)
16
+ - `launch_year` – year the project launched
17
+ - `market_cap_million_usd` – approximate market capitalization in million USD
18
+
19
+ ## Sample Usage
20
+
21
+ Load the dataset in Python:
22
+
23
+ ```python
24
+ import json
25
+
26
+ projects = []
27
+ with open("blockchain_projects.jsonl", "r") as f:
28
+ for line in f:
29
+ projects.append(json.loads(line))
30
+
31
+ # Print first 5 projects
32
+ for project in projects[:5]:
33
+ print(project)