WCAHTWCAHT CHAIN
Public Testnet · Docs v0.1

Technical Documentation

How WCAHT Chain works end to end — the consensus and execution architecture, the core account/staking/fee model, pure EVM support, and the institutional enterprise suite.

Testnet notice. WCAHT is a public testnet. Parameters, economics, and some features (governance, slashing, cross-shard) are still hardening — each section flags what is live vs. in development. Testnet tokens have no monetary value.

Introduction

WCAHT is a high-throughput Layer 1 with stake-weighted BFT consensus and a parallel execution engine. It is not a fork of an existing chain — it is a purpose-built stack of named subsystems that each own one stage of the block lifecycle. The design goal is Solana-class throughput on commodity hardware, with an institutional compliance layer built into the node.

Transaction pipeline

A transaction flows through five subsystems from submission to finality:

01 · INGRESS

TxFabric

Validates, prioritizes and lanes incoming transactions in a sharded mempool.

02 · EXECUTE

Prism

Runs non-conflicting transactions in parallel (MVCC) and computes the state root.

03 · ORDER

Skyfall

The scheduled leader proposes a block; validators vote to finalize at ≥⅔ stake.

04 · PROPAGATE

Cascade

Erasure-codes the block into shreds and fans them out across the validator mesh.

05 · PERSIST

Hyperion

Commits to a fork-aware ledger and serves the canonical chain to explorers & RPC.

Network parameters

ParameterValueNotes
Slot duration400 msSLOT_DURATION_MS
Leader scheduleRound-robin, 12 slots/leaderWCAHT_RR_SLOTS_PER_LEADER
Finality threshold≥ ⌈2N/3⌉ stakeBFT supermajority
Min validator stake100,000,000,000 kak (100 WCAHT)consensus eligibility
Max txs / block50,000 (soft cap 2,000)drain-budget tunable
Native unit1 WCAHT = 10⁹ kakEVM layer uses 18 decimals
EVM chain ID7789 (0x1e6d)RPC at /eth

Skyfall — Consensus

Skyfall is the stake-weighted Byzantine-fault-tolerant consensus layer. Validators stake WCAHT and take turns producing blocks on a deterministic round-robin schedule (12 consecutive slots per leader), then vote on every block. A block is final once votes representing at least a two-thirds supermajority of active stake (⌈2N/3⌉) are collected. Because the schedule is deterministic, every node can independently verify who the leader for a slot should be.

In development: single-validator failover and BLS-aggregated finality are experimental. External validator onboarding (permissionless) opens in the incentivized-testnet phase.

Skyreach — Accounts & State

Skyreach owns the account model and state storage. Every account is keyed by its Base58 public key and stored in a dedicated RocksDB column family. Balances are denominated in kak (1 WCAHT = 10⁹ kak), and each account tracks a nonce for replay protection. Account writes are committed per slot with commit markers so state can be recovered deterministically after a restart. Reads are lazy (loaded from the store on demand), which keeps memory bounded regardless of chain size.

Prism — Parallel execution

Prism executes a block's transactions concurrently using multi-version concurrency control (MVCC). Non-conflicting transactions run on separate cores; conflicting ones are ordered deterministically so every validator computes an identical state root. Duplicate-transaction detection is ancestry-based — a pure function of the block and its parent chain — so consensus execution never consults node-local state and can never fork on multi-transaction blocks.

Live & validated: parallel execution scales with cores and is the source of the chain's throughput. Zero state-root mismatches across load tests.

TxFabric — Mempool

TxFabric is the ingress layer. Incoming transactions are validated (signature, nonce, fee, balance), assigned to priority lanes, and partitioned across shards so the block builder can drain them in parallel. This intra-node sharding is what feeds Prism enough independent work to saturate all cores.

Cascade — Block propagation

Cascade distributes finalized blocks across the validator mesh using erasure-coded shreds (Turbine-style fan-out) over QUIC. A receiver can reconstruct a block from a subset of shreds, so propagation is resilient to packet loss and does not depend on any single peer. Broadcast streams are explicitly finished so receivers never truncate a block mid-stream.

Hyperion — Ledger

Hyperion is the fork-aware ledger. It tracks competing chain tips, applies fork choice against the canonical leader schedule, and exposes the finalized chain to explorers, wallets, and the JSON-RPC / EVM endpoints.

Accounts & units

ConceptDetail
AddressBase58-encoded Ed25519 public key (native) / 20-byte hex (EVM)
Smallest unit1 kak; 1 WCAHT = 1,000,000,000 kak
Replay protectionPer-account nonce, enforced at ingress
Per-tx cap10¹⁵ kak

Staking & validators

Validators register with a RegisterValidator transaction and delegate a self-stake of at least 100 WCAHT to become consensus-eligible. Stake, validators, and vote accounts are persisted to RocksDB and reloaded on startup, so the active set survives restarts. See the validator guide or start validator onboarding.

Choose a setup method · Guided terminal · QR wallet pairing · Security checklist

Observer promotion: staking does not change a running node's process role. Start the node with NODE_TYPE=validator, confirm it is synced and visible to peers, then submit RegisterValidator. Stake enters a one-epoch activation queue and becomes active automatically at the next epoch boundary. The current epoch is 172,800 slots (about 19.2 hours at 400 ms/slot).

Current public topology: N5, N6, and N7 are the voting set (equal stake, OVH-hosted). N1 follows the chain as a non-voting rpc_validator_observer — it forwards transactions and serves RPC but holds no consensus weight. Retired nodes are excluded from the registry.

In development: validator rewards, fee splits and slashing parameters are finalized during the incentivized-testnet phase. On the current testnet, tokens are for testing only.

Running a node · discovery, joining & becoming a validator

Every participant runs the same binary. Whether a node observes or votes is decided entirely by whether it holds activated consensus weight — never by a UI toggle. This section covers how nodes find each other, how a fresh node joins, and how one becomes a voting validator.

1 · Peer discovery & gossip

A node builds its peer set in layers: it first attempts local UDP discovery, then falls back to the configured seed / bootstrap nodes, and finally a DHT walk. Discovered peers are tracked by the PeerManager. Blocks, transactions and consensus votes travel over a binary QUIC transport (port 9001) plus a gossip layer; the JSON-RPC / REST control plane is a separate HTTP port (8901). A node behind NAT can still reach the mesh by dialling out to public seeds, but peers may not be able to dial back to it — which is why a home/NAT node is best run as an observer.

Discovery does not grant trust. Connected peers are never auto-registered into the validator set. Only the on-chain / genesis registry defines who can vote — a peer you gossip with has zero consensus weight until it is a registered, activated, staked validator.

2 · Joining as a new node (observer)

A fresh node points at one or more seed nodes, restores the latest snapshot (fast-sync), then replays blocks forward until it reaches the live tip. Until it is caught up and holds activated stake it runs as an rpc_validator_observer: it verifies and stores every block, serves RPC, and gossips — but it does not propose or vote. This is the normal, safe state for any new machine.

3 · Becoming a validator

Two things must both be true before a node votes:

Permissionless & consensus-safe. Admission is open — dynamic validators are enabled (allow_dynamic_validators) and stake activation is deterministic. The network runs atomic-delta staking (active from slot 0): a stake's activation and deactivation are applied in-block at the epoch boundary and bound into the state root, so every node agrees on exactly when a stake becomes active — no wall-clock race, no fork risk. In practice: provision a node, sync it as an observer, submit a RegisterValidator transaction with at least the minimum self-stake (query getMinimumValidatorStake), and it is automatically activated into the voting set at the next epoch boundary — no permissioned genesis inclusion required. N5, N6 and N7 are simply the current active set; anyone meeting the stake minimum can join it. The epoch is 172,800 slots (~19.2 h at 400 ms/slot).

4 · What happens with zero stake / zero voting power

The runtime asks one question — is my consensus weight > 0? If not, the node cannot attempt to vote and behaves as an observer no matter how it was launched. A zero-stake node:

So "running as a validator with no stake" is simply an observer. Voting power appears only once the node holds activated stake in the registry.

5 · Does the dashboard switch a node to validator?

No. The dashboard cannot grant voting power — that comes only from activated stake in the on-chain registry. What it provides is a safe identity pairing: a one-time signed challenge that links a node's public identity to your wallet without ever transferring the private key. It is for association and monitoring, not consensus promotion. Putting a machine into the voting set is always a node-side operation (validator mode + registered, activated stake).

6 · Onboarding commands

The full guided flow lives at validator onboarding. In short: provision an Ubuntu host (8+ cores, 16+ GiB RAM, SSD, public IPv4), obtain the approved signed build and canonical genesis bundle, generate the validator key on the server and back it up offline, start the node and let it sync as an observer, then pair its identity with your wallet:

# On the validator host, once it is running and synced as an observer:
curl -fSLO https://dashboard.denvion.com/static/downloads/wcaht-enroll.py
curl -fSLO https://dashboard.denvion.com/static/downloads/SHA256SUMS
sha256sum -c SHA256SUMS
python3 wcaht-enroll.py \
  --key ~/config/NODE-validator-keypair.bin \
  --endpoint PUBLIC_IP:8901:9001

The script prints a one-time pairing URL / QR you open in the wallet to finish association. It signs a public challenge with the node key locally — the private key never leaves the host. After pairing, finish sync; once the node is admitted to the voting set it begins proposing and voting on its leader slots.

Key safety. The validator identity key stays on the validator host. QR pairing and URLs carry only public identity + challenge data. Never paste a validator key into any website, screenshot, log, or chat.

Fees

Transactions pay a fee in kak that is deducted atomically with the transfer. Fee parameters are logged at node startup and are governable in the target design. All balance arithmetic on the canonical execution path is saturating and guarded, so a transaction can never underflow an account.

EVM and MetaMask compatibility

WCAHT exposes an Ethereum JSON-RPC endpoint for signed legacy, EIP-2930, and EIP-1559 transactions, balances, receipts, contract execution, logs, and common wallet tooling. This public testnet is still closing less-common execution-client edge cases; applications should test the exact RPC methods they depend on before production use.

# Add the network to MetaMask
Network name:  WCAHT Testnet
RPC URL:       https://denvion.com/eth
Chain ID:      7789   (0x1e6d)
Currency:      WCAHT   (18 decimals on the EVM layer)
Signed fee and receipt rules. The validator recovers the sender from the raw transaction and binds chain ID, nonce, recipient, value, gas limit, gas-price cap, fee, and canonical Ethereum transaction hash at consensus verification. Transfers currently require at least 21,000 gas and 1 gwei; the receipt reports the signed gas-price cap. Values must be exactly representable in the native 9-decimal kak unit.
Wallet-key safety. The web wallet stores public wallet metadata only. Imported secret keys remain in current-session memory and are requested again after refresh; never paste a validator identity key into a website. Validator identity keys stay on the validator host and QR pairing contains public identity/challenge data only.

See the Developer Hub for one-click network add and code examples.

Faucet & airdrop

On testnet, anyone can claim free WCAHT from the faucet (the "airdrop") so they can deploy contracts, run validators, and test transfers without buying anything.

Where do the free coins come from?

They are not newly minted. The faucet transfers WCAHT out of the genesis treasury account — a pool that was allocated once when the chain started. Each claim is an ordinary signed transfer from the treasury to your address that goes through consensus like any other transaction. Total supply never increases; coins simply move from the treasury pool to testers. (In the code: "Faucet draws from genesis treasury — no new tokens created.")

Limits

RuleValue
Amount per claim100 WCAHT
Cooldown between claims (per address)60 seconds
Max claims per address per day10
Lifetime faucet budget100,000 WCAHT total
AvailabilityTestnet / devnet only — disabled on mainnet

When does it end?

The faucet stops dispensing in any of these cases:

Testnet tokens have no monetary value. The faucet exists purely so developers can test. Do not treat faucet WCAHT as an investment.
POST/faucet/request
Body { "address": "<your_address>" } → 100 WCAHT. Also available as the "Request test tokens" button in the web wallet.

Developer API reference

Every node exposes a public HTTP API (default port 8901). Reads are open; transaction submission requires an x-api-key. There is also an Ethereum JSON-RPC endpoint at /eth.

Chain & blocks

GET/api/chain_info
Chain id, height, finalized slot, validator count.
GET/recent_blockhash
Replay-protection token required when building a transaction.
GET/recent_blocks   GET/api/blocks_by_height?start&end
Recent blocks / a height range.
GET/total_supply
Total & circulating supply in kak.

Accounts & balances

GET/balance/{address}   GET/api/account/{address}
Balance (kak) / full account record.
GET/transaction/history/{address}
Transaction history for an address.

Transactions

POST/transactions/submit
Submit a signed transaction. Requires header x-api-key. Transfers ≥ 1000 WCAHT require Travel Rule data.
POST/rpc
JSON-RPC: sendTransaction, getBalance, and more.
GET/transactions?hash={tx_hash}
Look up a transaction / confirmation status.

Staking & validators

GET/api/stake/info   GET/api/stake/validators   GET/api/stake/epoch
Stake summary, validator set, epoch info.
POST/api/validator/register
Register a validator (signed CreateValidatorRequest). See the validator guide.
POST/api/stake/delegate   POST/api/stake/deactivate   POST/api/stake/withdraw
Signed delegation lifecycle.

Contracts & DeFi

POST/contract   GET/contracts
Deploy / call / query a contract; list deployed contracts.
GET/defi/*
AMM pools, lending, yield (experimental).

Network & performance

GET/network/stats   GET/peers   GET/performance/stats   GET/prism/stats   GET/fabric/metrics
Live mesh, throughput, parallel-execution and mempool metrics.

EVM (Ethereum JSON-RPC)

POST/eth
Standard eth_* methods (eth_chainId, eth_getBalance, eth_sendRawTransaction, …). Chain ID 7789. Works with MetaMask / ethers.js / web3.js.

Example — read a balance

# Native REST
curl https://denvion.com/balance/<address>

# EVM JSON-RPC
curl -X POST https://denvion.com/eth \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'

Enterprise suite — overview & auth

WCAHT ships an institutional compliance and integration layer inside the node, exposed as a REST API under /enterprise/*. It covers KYC/KYB, sanctions screening, the FATF Travel Rule, custody signing policies, an OAuth-style API gateway, ISO 20022 payment metadata, reconciliation/audit, idempotency, and per-partner rate limiting. Every module is covered by an automated verification suite.

Authentication

All /enterprise/* routes require an admin bearer token. Write routes additionally pass through per-partner rate limiting.

GET /enterprise/sandbox/info
Authorization: Bearer $ENTERPRISE_ADMIN_TOKEN
Verified as designed. Compliance gating, JWT issue/validate/revoke, standard HMAC-SHA256 request signing, sandbox dry-run, idempotency replay, and sliding-window rate limiting all pass an in-repo regression suite.

Compliance — KYC, sanctions, Travel Rule

The combined gate POST /enterprise/compliance/check runs all three and returns a structured result (passed, sanctions_clear, kyc_sufficient, travel_rule_satisfied, errors[]).

API gateway — tokens & request signing

An OAuth 2.0 client_credentials–style gateway for machine-to-machine access:

Custody — signing policies & sessions

An HSM-abstraction layer with configurable signing policies (allowed hours, approval quorum, provider) and multi-step signing sessions that require explicit approval before a high-value operation proceeds. Policies and sessions are queryable and approvable over REST.

ISO 20022 payments

Structured payment metadata following the ISO 20022 model — credit-transfer transactions, remittance information, regulatory reporting, postal addresses, and end-to-end ID lookup — can be attached to and retrieved for on-chain transactions, so bank-grade payment context travels with the transfer.

Sandbox

An isolated testing environment: a sandbox-mode flag, a rate-limited test faucet (only active in sandbox mode), and a dry-run that predicts the exact balance changes and fee of a transfer without touching state.

Reconciliation, idempotency & rate limits

Enterprise REST API reference

Read endpoints (admin bearer token)

GET/enterprise/kyc/{address}
KYC record for an address (404 if none).
GET/enterprise/sanctions
Full sanctions watchlist.
GET/enterprise/travel-rule/{tx_hash}
Travel Rule data attached to a transaction.
GET/enterprise/iso20022/payment/{id}
ISO 20022 payment metadata.
GET/enterprise/audit-log?offset&limit
Paginated audit trail ({total, entries[]}).
GET/enterprise/custody/policy/{id}
A signing policy.
GET/enterprise/custody/session/{id}
A signing session's status.
GET/enterprise/sandbox/info
Environment tag + faucet availability.
GET/enterprise/gateway/clients
Registered API clients (secrets redacted).

Write endpoints (admin bearer + rate limit)

POST/enterprise/compliance/check
Run the full compliance gate for a proposed transfer.
POST/enterprise/kyc
Set/update a KYC record.
POST/enterprise/sanctions   DELETE/enterprise/sanctions/{address}
Add / remove a sanctions entry.
POST/enterprise/iso20022/payment
Attach ISO 20022 payment metadata.
POST/enterprise/custody/policy
Create/update a signing policy.
POST/enterprise/custody/session   POST/enterprise/custody/session/{id}/approve
Open a signing session and approve it.
POST/enterprise/sandbox/faucet   POST/enterprise/sandbox/dry-run
Request test tokens / simulate a transfer.
POST/enterprise/gateway/client
Register a new API client.

Example — run a compliance check

POST /enterprise/compliance/check
Authorization: Bearer $ENTERPRISE_ADMIN_TOKEN
Content-Type: application/json

{
  "from": "<sender_address>",
  "to": "<recipient_address>",
  "amount_kak": 2000000000000,
  "required_kyc": "Basic"
}

// → { "passed": false, "travel_rule_satisfied": false,
//     "errors": ["Travel Rule: data required for transfers above threshold"] }
WCAHT Chain · denvion.com · Technical Documentation · Public Testnet · 2026
Looking to integrate? Reach us on Telegram or Discord.