File size: 822 Bytes
1e230dc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
license: mit
---
# Blockchain Projects Dataset

This dataset contains information about various blockchain projects including DeFi, GameFi, NFT, and other types.

## File
- `blockchain_projects.jsonl`

## Columns / Fields
- `id` – unique identifier for each project
- `name` – name of the blockchain project
- `network` – blockchain network (e.g., Ethereum, Solana)
- `type` – project type (DeFi, NFT, GameFi, etc.)
- `launch_year` – year the project launched
- `market_cap_million_usd` – approximate market capitalization in million USD

## Sample Usage

Load the dataset in Python:

```python
import json

projects = []
with open("blockchain_projects.jsonl", "r") as f:
    for line in f:
        projects.append(json.loads(line))

# Print first 5 projects
for project in projects[:5]:
    print(project)