โ›๏ธ Kaspa Blockchain Dashboard

Connecting...

Auto-refresh disabled to prevent connection issues. Click to update manually.

Network
-
Block Count
-
DAA Score
-
Difficulty
-
Connected Peers
-
Mempool Entries
-

๐Ÿš€ API Endpoints - Quick Test

What it does: Tests if API endpoints are working and responding quickly (under 10 seconds).
How to use: Just click any "Test Now" button - no input needed!

Block DAG Info
Gets complete blockchain state
Block Count
Current block height number
Blue Score
DAA score for difficulty
Health Check
Node connection status

โœ… Transaction Verification

What it does: Checks if a transaction is verified on the blockchain.
Where to get TX ID: From a wallet transaction history or block explorer.
How to use: Paste the transaction ID and click "Verify Transaction".

๐Ÿ” Block Explorer

What it does: Looks up detailed information about a specific block.
Where to get block hash: From the blockchain explorer or a transaction.
How to use: Paste the block hash and click "Get Block".

๐Ÿ’ฐ Address Lookup

What it does: Shows the balance and UTXOs for a Kaspa address.
Where to get address: From your wallet or someone you want to check.
How to use: Paste a Kaspa address (starts with "kaspa:") and click "Get Balance".

๐Ÿ”— Transaction Lookup

What it does: Fetches complete transaction details (inputs, outputs, amounts).
Where to get TX ID: From your wallet or a block explorer.
How to use: Paste the transaction ID and click "Get Transaction".

๐Ÿฅ Node Accessibility Test

What it does: Tests multiple RPC methods to verify the node is working properly.
What it checks: Block DAG, Block Count, Network Info, and Blue Score.
How to use: Click "Run Comprehensive Node Test" - takes up to 40 seconds.

โœ“ All tests respond within 10 seconds | Shows pass/fail for each method

๐Ÿ“ค Submit Transaction

What it does: Broadcasts a signed transaction to the Kaspa network.
Where to get transaction data: From your wallet software (must be properly signed).
What you need: Complete transaction JSON with inputs, outputs, and signatures.
How to use: Paste JSON data, optionally check "Allow Orphan", then submit.

โš ๏ธ Warning: This submits real transactions to the Kaspa mainnet. Make sure data is correct!

๐Ÿงช Custom RPC Call

What it does: Execute any Kaspa RPC method directly for advanced users.
What you need: The RPC method name and parameters (see Kaspa RPC docs).
How to use: Enter method name, parameters as JSON array, then click "Execute RPC".
Examples: getBlockDagInfo, getInfo, getBlockCount (no parameters needed for these)

Powered by Kaspa Node Proxy API | WebSocket Connected

API Base URL: -

Kaspa POS Wallet

Professional Point-of-Sale System for Business Owners

๐Ÿ’Ž Live Wallet Info

Check the balance of any Kaspa address with live blockchain data and USD conversion

Paste any Kaspa address to view its current balance and value

๐Ÿ” Create or Import Wallet

๐Ÿ†• Create New Wallet

Generate a new 24-word seed phrase and Kaspa address

๐Ÿ“ฅ Import Wallet

Restore your wallet using your seed phrase

๐Ÿ“ฅ TTT IMPORT

Restore your Kaspa wallet using your seed phrase

โ„น๏ธ About Import
This tool derives your original Account 0 address from your seed phrase. Enter the same 12 or 24 words you received when you first created your wallet.

๐Ÿ“Š UTXO Transaction History

๐Ÿ”— Base44 Integration Ready!

This endpoint provides full UTXO history for any Kaspa address.

Base44 can access this through iframe messaging (no API key needed)

POST /api/utxo-history
Body: { "address": "kaspa:..." }

Check Any Address History

๐Ÿงช Test Base44 Iframe Communication

Send a test message to verify iframe integration

โš”๏ธ DAGKnight Wallet

๐Ÿ” TTT Wallet Verification

โœ… Verification Amount: 0.2 KAS

Kastle minimum transaction amount

๐Ÿ“‹ How TTT Verification Works

  1. Load your TTT wallet address
  2. Click "Verify with Kastle" to open QR modal
  3. Scan QR code with Kastle mobile app
  4. Send 0.2 KAS to yourself (self-transaction)
  5. System detects transaction & verifies wallet
  6. Transaction history updates automatically

๐ŸŒ DAG Network Visualization

Cross-verified wallets form a trust network

[DAG visualization will be displayed here]

๐Ÿ” ZK Wallet System

Isolated Zero-Knowledge Wallet for Base44 Integration

๐Ÿ“Œ About ZK Wallet

The ZK Wallet is a completely isolated wallet system designed specifically for Base44 integration. It operates independently from the main wallet system with its own dedicated API endpoints.

โœ… Features:
  • Create new wallets
  • Import existing wallets
  • Check balances
  • View UTXO history
๐Ÿ”Œ API Endpoints:
  • /zk/wallet/create
  • /zk/wallet/import
  • /zk/wallet/balance
  • /zk/wallet/utxo-history

ZK Wallet Interface

๐Ÿ“š Base44 Integration Guide

Base URL:

Example: Create Wallet

fetch('/zk/wallet/create', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ wordCount: 24 })
})

Example: Check Balance

fetch('/zk/wallet/balance', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ 
    address: 'kaspa:...' 
  })
})