WCAHTWCAHT CHAIN
Developers · Public Testnet

Build on WCAHT

A pure-EVM Layer-1 with parallel execution. 100% Ethereum-compatible — connect MetaMask, ethers, viem, web3.js, Hardhat or Foundry with zero code changes.

These are public testnet parameters. Chain ID, RPC, and economics may change before mainnet (2027).

1. Connect your wallet in one click

Add the WCAHT testnet to MetaMask — it configures the network for you.

2. Network parameters

To add the network manually, use these values:

Network NameWCAHT Testnet
Chain ID7789 (0x1e6d)
RPC URLhttps://denvion.com/eth
CurrencyWCAHT (18 dec)
Explorerhttps://denvion.com
Block time400 ms

3. Query the chain (JSON-RPC)

This is a pure EVM chain — every standard eth_* method works:

# Get the chain ID
curl -X POST https://denvion.com/eth \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'
# → {"jsonrpc":"2.0","id":1,"result":"0x1e6d"}

# Get a balance
curl -X POST https://denvion.com/eth \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBalance","params":["0xYourAddress","latest"]}'

ethers.js

// Connect with ethers v6
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://denvion.com/eth");
const net = await provider.getNetwork();  // chainId 7789n

4. Get a wallet

  1. Install the WCAHT wallet extension (Chromium browsers), or use any EVM wallet with the network above.
  2. Open the wallet and create or import a testnet account.
  3. Request testnet WCAHT from the faucet (coming soon).
  4. Send your first transaction and watch it confirm on the explorer.

5. Tools

Explorer / Dashboard →

Search addresses, transactions, blocks, validators; live network status and TPS.

Web Wallet →

Browser-based testnet wallet: send, receive, and track WCAHT.

Run a Validator →

Requirements, ports, staking, and onboarding for producing blocks and voting.

Whitepaper →

Architecture, consensus, and the deterministic execution model.

6. JavaScript SDK

A lightweight, dependency-free EVM client — add to MetaMask, read balances, and send WCAHT in a few lines:

// npm install wcaht-sdk  (or drop src/index.js into a page)
import { WcahtClient, addWcahtToMetaMask } from "wcaht-sdk";

const wcaht = new WcahtClient();
await wcaht.getChainId();               // 7789
await wcaht.getBalance("0x…");       // "12.5" WCAHT
await addWcahtToMetaMask();             // one-click network add
await wcaht.sendWCAHT({ to: "0x…", amount: "1.5" });

SDK on GitHub →

Open-source EVM client + browser and Node examples. MIT licensed.

SDK Docs →

Full API reference, install, and quick-start in the README.

Prefer standard tooling? WCAHT is a pure EVM chain, so ethers, viem, web3.js, Hardhat, Foundry, and MetaMask all work against the RPC above with no changes.
WCAHT Chain · denvion.com · Developers · Public Testnet · July 2026