Downloads · 30 days
0
jomarie04/Blockchain_Data_Model
Blockchain_Data_Model is a machine learning model from jomarie04. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
This dataset contains information about various blockchain projects including DeFi, GameFi, NFT, and other types.
Downloads · 30 days
0
Access
Public
Updated Feb 4, 2026
Repo size
—
Likes
0
Public
Click a slice to open those files.
Other1.5 KB · 51%
From the Hugging Face model README
This dataset contains information about various blockchain projects including DeFi, GameFi, NFT, and other types.
blockchain_projects.jsonlid – unique identifier for each projectname – name of the blockchain projectnetwork – blockchain network (e.g., Ethereum, Solana)type – project type (DeFi, NFT, GameFi, etc.)launch_year – year the project launchedmarket_cap_million_usd – approximate market capitalization in million USDLoad the dataset in 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)