⛏️ KawPow Blockchain Validator

Ravencoin-Style Proof-of-Work Validation

✅ Worker Online - Ready to Validate Blocks

📡 API Endpoints

GET /words
Get the word list for mining (871 words)
POST /validate-block
Validate a KawPow block's proof-of-work

⚙️ KawPow Configuration

Epoch Length
7500
Word List Size
871
Algorithm
KawPow

🔐 Security Features

📊 Usage Example

// Get words for mining
fetch('https://kawpow-validator.pages.dev/words')
  .then(r => r.json())
  .then(data => console.log(data.words));

// Validate a mined block
fetch('https://kawpow-validator.pages.dev/validate-block', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ 
    index: 1,
    timestamp: Date.now(),
    words: ['hello', 'world'],
    kawpow: { blockHeight: 1, nonce: 12345, ... }
  })
});