jomarie04's picture
Update README.md
1e230dc verified
---
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)