|
|
--- |
|
|
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) |