Private L1 · QBFT PoA · 0.4s Finality

Knights
Armature

A private, permissioned Layer-1 built for institutional settlement. QBFT consensus, post-quantum signatures, and EVM compatibility — without the mempool.

Block #—  ·  Chain ID 1111
Specifications

Chain parameters.

Every parameter is fixed for institutional certainty. No forks without coordination. No public mempool exposure.


Consensus
QBFT PoA
Quorum Byzantine Fault Tolerant
Finality
0.4 seconds
Deterministic, not probabilistic
Chain ID
1111
EVM-compatible integer
Native Token
KXCO
Settlement and gas unit
PQ Algorithm
ML-DSA-65
NIST FIPS 204 — lattice signatures
RPC Endpoint
chain.kxco.ai/rpc
JSON-RPC 2.0 compatible
Explorer
chain.kxco.ai/explorer
Blockscout-based block explorer
Client
Besu
Hyperledger Besu EVM client
Cryptography

Post-quantum by design.

KXCO Chain implements all three NIST-standardised post-quantum primitives. Every signature, every key exchange, every hash — quantum-resistant from day one.


FIPS 204 · Lattice Signatures
ML-DSA-65

Module-Lattice Digital Signature Algorithm. Used for transaction signing, validator attestation, and KXCO Verified seals. Security level 3 — equivalent to AES-192.

FIPS 203 · Key Encapsulation
ML-KEM-768

Module-Lattice Key Encapsulation Mechanism. Secures key exchange between parties without exposing secret material to a quantum adversary harvesting traffic today.

FIPS 205 · Hash-Based Signatures
SLH-DSA

Stateless Hash-Based Digital Signature Algorithm. Conservative, hash-only security assumptions — the fallback layer if lattice assumptions are ever challenged.

Live PQ Public Key · ML-DSA-65
Endpoint
chain.kxco.ai/wallet/api/.well-known/kxco-pq-pubkey
Status
Press Fetch to load live key data
Developer

Start building today.

Everything you need is live and accessible. Standard JSON-RPC, open-source npm packages, and a public GitHub.


Smart Contract

KXCOVerifiedRegistry

The on-chain registry for post-quantum domain and document seals. Every KXCO Verified credential is anchored here — permanently, publicly, independently verifiable.


Contract Address · KXCO Chain (ID 1111)
0x17E0DE1f1DdE7BFC149f979f554865ABf11b57b2
ABI Surface — Key Methods Solidity
// Register a verified seal
function register(
  string  calldata domain,      // e.g. "kxco.ai"
  string  calldata docHash,     // SHA3-256 of document
  bytes   calldata pqSignature, // ML-DSA-65 signature
  bytes   calldata publicKey    // ML-DSA-65 public key
) external returns (uint256 sealId);

// Verify a seal on-chain
function verify(
  uint256 sealId,
  string  calldata domain,
  string  calldata docHash
) external view returns (bool valid, uint256 timestamp);

// Get seal metadata
function getSeal(uint256 sealId)
  external view returns (
    address registrant,
    string  memory domain,
    string  memory docHash,
    uint256 timestamp,
    bool    active
  );

// Events
event SealRegistered(uint256 indexed sealId, string domain, uint256 timestamp);
event SealRevoked(uint256 indexed sealId, address registrant);