KGKasGraphGitHub

demo

Demo preview for indexed Kaspa state.

KasGraph does not advertise a public hosted endpoint yet. This page shows the expected local-first query and output shape without claiming production readiness.

demo preview

PreviewLocal-first

See KasGraph query indexed Kaspa state.

No public hosted endpoint is advertised yet. This is a static preview of the intended GraphQL shape until the hosted node, playground, and testnet soak are validated.

endpoint statePreview

Network

preview

Indexed DAA

unavailable

POI

unavailable

GraphQL

not configured

graphql preview
query CovenantLineage($covenantId: String!) {
  covenant(id: $covenantId) {
    id
    createdAtDaaScore
    transactions {
      hash
      daaScore
      acceptedAt
      spendPath
    }
    currentUtxos {
      txid
      index
      amount
      address
    }
  }
}
json preview output
{
  "data": {
    "covenant": {
      "id": "cov_8fa4b21...",
      "createdAtDaaScore": 467579632,
      "transactions": [
        {
          "hash": "3b2f9c...",
          "daaScore": 467579812,
          "acceptedAt": "2026-05-18T16:04:22Z",
          "spendPath": "verifier_release"
        }
      ],
      "currentUtxos": [
        {
          "txid": "9ac41e...",
          "index": 0,
          "amount": "1250000000",
          "address": "kaspatest:q..."
        }
      ]
    }
  }
}

proof of life

Proof of life.

The latest checked-in testnet soak artifact is published with public-safe health, POI, logs, and restart-note references.

Soak artifact - published
{
  "status": "completed",
  "runDate": "2026-06-01",
  "duration": "24.0 hours",
  "network": "kaspa-testnet-10",
  "verdict": "Success: 24-hour testnet soak target reached."
}
Public log artifact - published
{
  "artifact": "/docs/artifacts/testnet-soak/2026-06-01/public-log-tail.jsonl",
  "indexedDaa": "479501516",
  "blocksIndexed": "236759",
  "note": "Sanitized public log tail is checked in with the soak artifact."
}
POI checkpoint artifact - published
{
  "artifact": "/docs/artifacts/testnet-soak/2026-06-01/public-poi-checkpoints.jsonl",
  "poiCheckpoints": "236759",
  "latestPoiCheckpoint": "0x527695bea514e26112a755f48c18a4dbb581d25302a45cefab66a605e9506c93"
}
Metrics and restart artifacts
DB stats: /docs/artifacts/testnet-soak/2026-06-01/public-db-stats.jsonl
Resource metrics: /docs/artifacts/testnet-soak/2026-06-01/public-resource-metrics.jsonl
Restart notes: /docs/artifacts/testnet-soak/2026-06-01/restart-recovery-notes.md
Restart recovery: Not measured
Known issues: KasGraph soak API ran on 127.0.0.1:4002 because 127.0.0.1:4000 was occupied by LiteLLM.; Root cause fixed before completion: local TN10 was stale kaspad v1.1.0 and root disk was too full for the Toccata pruning-point UTXO import; the completed run used kaspad v1.2.1-toc.3 with sufficient disk.; At the 24-hour completion point, kaspad still reported phase syncing live DAG and kaspadSynced false; KasGraph indexing, RPC audit, Postgres, GraphQL health, and POI checkpoints remained active through the completion target.