All About BTC

← Back to Historical Forks

WATTxchain (WTX)

Hybrid PoW/PoS · seven-algorithm merged mining · EVM smart contracts · Taproot from genesis

What is WATTx?

WATTx (ticker WTX) is a Bitcoin-lineage blockchain that keeps Bitcoin's UTXO model and 21 million coin cap while adding three things Bitcoin deliberately left out: an Ethereum Virtual Machine for smart contracts, a Proof-of-Stake layer that runs alongside Proof-of-Work, and a mining engine that accepts work from seven different hashing algorithms at once.

The chain is the settlement layer for WATTxchange, a multi-chain DeFi hub, and it is the reason WTX shows up on a Bitcoin forks list at all: the code descends from Bitcoin Core by way of Qtum, so the transaction format, script engine, address encoding and RPC surface will look immediately familiar to anyone who has run bitcoind.

Not a 2017-style chain split. WATTx did not snapshot the Bitcoin UTXO set and it did not airdrop coins to BTC holders. It is a codebase fork with its own genesis block and its own emission schedule — closer in spirit to Litecoin or Qtum than to Bitcoin Cash or Bitcoin Gold. Every WTX in existence was mined or staked on WATTx's own chain.

Fast Facts

TickerWTX
CodebaseBitcoin Core → Qtum → WATTx Core
ConsensusHybrid — X25X multi-algorithm Proof-of-Work + Proof-of-Stake
Block time2 minutes
Block reward5 WTX (50 WTX per 10 minutes — Bitcoin's original issuance rate)
HalvingEvery 210,000 blocks
Max supply~21,000,000 WTX
P2P port1337 (mainnet) / 11337 (testnet)
Network magicW A T X (0x57 0x41 0x54 0x58)
AddressesBase58 starts with W · Bech32 HRP wx · post-quantum Dilithium addresses start with Q
TaprootActive from genesis (block 0)
EVM chain ID22356
Latest releaseWATTx Core v0.1.7.7

X25X — Seven Algorithms, One Chain

Most chains pick one hash function and live with the consequences: SHA-256 concentrates hashrate in ASIC farms, RandomX concentrates it in CPUs, Ethash in GPUs. WATTx's X25X engine accepts blocks from any of its supported algorithms and gives each one its own independent difficulty retarget, so a lull in GPU hashrate does not stall the chain and an ASIC farm cannot crowd out CPU miners.

AlgorithmHardwareMerge-mines with
SHA-256dASICBitcoin
ScryptASICLitecoin, Dogecoin
EthashGPUEthereum Classic / ETHW
RandomXCPUMonero
EquihashGPUZcash-family chains (BitcoinZ)
X11ASICDash
kHeavyHashGPUKaspa
GhostRiderCPUReserved (Raptoreum) — not currently mineable

Merged Mining: Get Paid Twice for One Hash

WATTx implements AuxPoW (auxiliary proof-of-work) — the same mechanism Namecoin pioneered against Bitcoin in 2011, generalised to seven parent chains instead of one. A miner points their hardware at a parent chain as usual; the pool embeds a commitment to a WATTx block inside the parent chain's coinbase transaction. When a share lands, it can satisfy the parent chain's target, WATTx's target, or both.

The practical result: the same hash earns BTC and WTX, or XMR and WTX, or KAS and WTX. There is no extra power draw and no separate rig — WATTx rides along on work you were already doing.

Consensus verifies the parent chain's proof-of-work canonically for every supported algorithm and binds it to the merge-mining commitment, so a WATTx block cannot be claimed with work that does not actually contain it.

The reference pool runs one stratum port per algorithm, numbered in algorithm order:

3333RandomX
3334SHA-256d
3335Scrypt
3336Ethash
3337Equihash
3338X11
3339kHeavyHash

The public endpoint is pools.wattxchange.app, which is also the default the desktop wallet's Pool mining mode dials. XMRig speaks to the RandomX port directly; the SHA-256d, Scrypt and X11 ports speak standard Bitcoin stratum (mining.subscribe / mining.submit).

# CPU mining with XMRig, paid to your own WTX address
xmrig -o pools.wattxchange.app:3333 \
      -u WYourWattxAddressHere \
      -a rx/0 --keepalive

Your payout address must be present in the stratum login — either as the username, or appended as +WTX_ADDRESS. Logins with no usable address are refused rather than silently credited elsewhere.

Staking and Trust Tiers

Alongside mining, WATTx runs a Proof-of-Stake layer with registered validators and delegation. What makes it unusual is that staking rewards are weighted by measured uptime rather than stake size alone — validators accumulate a trust tier, and a higher tier earns a bonus on top of the base block reward:

TierReward bonus
Bronzebase reward
Silver+5%
Gold+10%
Platinum+15%

Holders who do not want to run a node can delegate stake to a validator and receive a proportional share of that validator's rewards, minus the validator's configurable pool fee.

wattx-cli listvalidators
wattx-cli delegatestake "<validatorId>" 10000
wattx-cli claimrewards

Smart Contracts, Taproot and Ordinals

Running a Node

# Linux x86-64
tar xzf wattx-0.1.7.7-linux64.tar.gz
cd wattx-0.1.7.7/bin

./wattxd -daemon
./wattx-cli createwallet "mywallet"
./wattx-cli getnewaddress
./wattx-cli getblockchaininfo

The node bootstraps from the seed1seed3.wattxchange.app DNS seeds on port 1337. Desktop builds (Linux and Windows) ship a Qt wallet with solo and pool mining tabs built in; an Android wallet is published alongside each release.

Links

Informational only — nothing on this page is financial advice, an endorsement, or a solicitation. Network parameters are taken from the WATTx Core source and release notes and can change with a consensus upgrade; always verify against the client you actually run. Found something out of date? Open a PR.