Click to Enter
Multi-algorithm mining, smart contracts, and privacy — all in one chain.
Everything you need in a modern blockchain, unified in a single network.
7 algorithms — SHA256d, Scrypt, Ethash, RandomX, Equihash, X11, kHeavyHash. Mine with ASICs, GPUs, or CPUs.
Cross-chain privacy pools, stealth addresses, shielded commitments, and encrypted messaging for true financial privacy.
Full EVM/Solidity compatibility with a built-in compiler. Deploy, verify, and interact with contracts on-chain.
PoW mining + PoS staking + AuxPoW merged mining with Monero, Bitcoin, Litecoin, and Kaspa for maximum security.
X25X multi-algorithm framework — choose the hardware you already have.
| Algorithm | Origin | Target Hardware | Type |
|---|---|---|---|
| SHA256d | Bitcoin | ASIC | Hash |
| Scrypt | Litecoin | ASIC / GPU | Memory-hard |
| Ethash | Ethereum Classic | GPU | Memory-hard |
| RandomX | Monero | CPU | CPU-optimized |
| Equihash | Zcash | GPU / ASIC | Memory-hard |
| X11 | Dash | ASIC / GPU | Chained hash |
| kHeavyHash | Kaspa | GPU / ASIC | Matrix-heavy |
Core parameters of the WATTx blockchain.
Validator rewards scale with uptime consistency.
| Tier | Uptime Requirement | Reward Multiplier |
|---|---|---|
| Bronze | 95% | 1.0x |
| Silver | 97% | 1.25x |
| Gold | 99% | 1.5x |
| Platinum | 99.9% | 2.0x |
Tools and dApps built around the WATTx network.
Browse blocks, transactions, addresses, and smart contracts on the WATTx blockchain in real time.
Encrypted self-destructing messages. AES-256-GCM client-side encryption — no server, no tracking.
LayerZero-powered bridge between WATTx, Ethereum, BSC, and Polygon for seamless asset transfers.
Coming SoonNFT Mining Rig Builder dApp — collect component NFTs, build rigs, and earn WATT rewards on Polygon.
Coming SoonQuick start guides to get you up and running.
# Start WATTx daemon
./wattxd -daemon
# Check sync status
./wattx-cli getblockchaininfo
# Check connections
./wattx-cli getconnectioncount
# Generate a mining address
./wattx-cli getnewaddress "mining"
# Start solo mining (CPU)
./wattx-cli generatetoaddress 1 "YOUR_ADDRESS"
# Check hashrate
./wattx-cli getmininginfo
For pool mining, point your miner at a WATTx-compatible stratum pool using the algorithm of your choice.
# Unlock wallet for staking only
./wattx-cli walletpassphrase "YOUR_PASSPHRASE" 99999999 true
# Check staking status
./wattx-cli getstakinginfo
# For super staking (requires 20,000+ WTX):
./wattx-cli setsuperstaker "YOUR_ADDRESS" true
# Deploy a contract (from compiled bytecode)
./wattx-cli createcontract "BYTECODE"
# Call a contract method
./wattx-cli callcontract "CONTRACT_ADDR" "DATA"
# Send to a contract
./wattx-cli sendtocontract "CONTRACT_ADDR" "DATA" 0
WATTx supports Solidity up to version 0.8.x. Use the built-in compiler in wattx-qt or compile with solc and deploy via CLI.