This dataset contains institutional-grade metrics from the COINjecture Network B blockchain, which implements a novel Proof-of-Useful-Work (PoUW) consensus mechanism. Unlike traditional Proof-of-Work systems that compute arbitrary hashes, COINjecture miners solve genuine NP-complete computational problems, producing verifiable solutions with real-world applicability.
Key Characteristics
Property
Value
Network
COINjecture Network B v3
Genesis Date
December 1, 2025
Genesis Hash
4a80254b4a48e867
Chain ID
coinject-network-b-v2
Data Version
v3.1 (Institutional Grade)
Problem Types
SAT, SubsetSum, TSP
Update Frequency
Every ~10 seconds
Metrics Per Record
54+ fields
Format
JSON Lines (.jsonl)
Consensus
Multi-peer (51% threshold)
What's New in v3
Feature
Description
π± Fresh Genesis
Clean chain start - December 1, 2025
π€ Multi-Peer Consensus
51% agreement threshold for mining
π Connection Stability
TCP keepalive, yamux optimization
π Better Sync
Nodes sync regardless of height differences
π‘ P2P Improvements
Stable gossipsub mesh with peer tracking
Research Applications
Computational Complexity: Empirical NP-complete problem analysis
Algorithm Performance: Solve/verify time distributions
Distributed Systems: Consensus and propagation metrics
Energy Research: Computational efficiency studies
Cryptographic Analysis: Hash function and difficulty research
π Data Schema
Each record represents a mined block containing a solved NP-complete problem.
from datasets import load_dataset
dataset = load_dataset("COINjecture/NP_Solutions_v3")
for record in dataset["train"]:
print(f"Block {record['block_height']}: {record['problem_type']}")
Load Raw JSONL
import json
from pathlib import Path
records = []
for f in Path("data").glob("*.jsonl"):
records.extend(json.loads(line) for line inopen(f))