Check the mining pool contract ➔

Building a Global Decentralized Computing Power Network

cXToken is a new mining token with computing power contribution as its core value source. 200M total supply permanently locked in a single mining pool with all permissions renounced. Every unit of computing power is verifiably recorded on-chain — no pre-mining, no private sale, no team allocation.

Start Mining
npm install ethers@6

Core Features

Dual-engine verifiable computing (Compute-PoC + Model-PoT) building a decentralized AI training ecosystem

Single Mining Pool

Single Mining Pool

200,000,000 cXToken pre-minted and permanently locked in the sole mining pool. All permissions renounced — no minting, no modification, no recall.

Verifiable Computing

Verifiable Computing

All computation results verified on-chain via task sharding and cross-validation. No centralized trust required.

Dual-Engine Verification

Dual-Engine Verification

Compute-PoC verifies base compute work; Model-PoT verifies AI training — gradient computation, model fragments, inference. Mining becomes real AI productivity.

Computing Power Incentive

Computing Power Incentive

Multi-factor weighted rewards based on contribution, stability, reputation, and participation — not just hardware size.

Three Node Types

Three Node Types

Computing nodes execute tasks, verification nodes audit results, storage nodes ensure data availability — a complete decentralized ecosystem.

Deflation Model

Deflation Model

Triple deflation: output shrinks as network grows, staking locks supply, and task execution consumes tokens.

Token Economics

cXToken features a fixed total supply with zero additional issuance. All tokens are permanently locked in the single mining pool, released only through verifiable computing contributions.

2M
Total Supply

Fixed total, zero additional issuance, all pre-minted at genesis

1
Single Mining Pool

All permissions permanently renounced — no minting, no modification, no recall

3x
Triple Deflation

Output deflation + staking lockup + task consumption

4
Application Scenarios

Task settlement, node staking, verification credential, computing market

Developer First

Dual-Engine Compute-PoC + Model-PoT Verifiable Computing Power Network

cXToken integrates dual-engine verification — Compute-PoC for base compute work and Model-PoT for AI training (gradient computation, model fragments, inference). Heterogeneous nodes (GPU / CPU / FPGA / edge) collaborate via task slicing and intelligent scheduling, with privacy-preserving MPC and federated learning. All rewards are automatically released by the sole mining pool with no centralized control.

mining.js
// cXToken Hybrid PoW/AI Mining - Double Keccak256 Hash
const { ethers, keccak256, solidityPacked } = require("ethers");

// Get current mining challenge from sole mining pool
const challengeNumber = await contract.getChallengeNumber();
const miningTarget = await contract.getMiningTarget();

// Calculate hash: keccak256(keccak256(challenge + miner + nonce))
function calculateHash(nonce) {
  const innerHash = keccak256(solidityPacked(
    ["bytes32", "address", "uint256"],
    [challengeNumber, minerAddress, nonce]
  ));
  return BigInt(keccak256(solidityPacked(["bytes32"], [innerHash])));
}

// Mining loop - find valid nonce
while (true) {
  const digest = calculateHash(nonce);
  if (digest <= miningTarget) {
    // Submit verified work to sole mining pool
    const tx = await contract.mint(nonce);
    console.log("Mining success! Reward: 80 cXToken");
    break;
  }
  nonce++;
}

Decentralized Computing Network Architecture

Built on EVM-compatible infrastructure with a three-node architecture (scheduling, verification, computing), cXToken supports GPU/CPU mining, AI framework integration, and cross-region task dispatch. Developers and miners can seamlessly access the network using familiar tools and languages.

Ethereum
Solidity
ethers.js
Node.js
Python
CUDA
TensorFlow
PyTorch
Docker
Linux
GPU Mining
CPU Mining

Global Decentralized Computing Network

cXToken is built by a global community of distributed computing engineers, AI researchers, Web3 developers, and hardware providers. Anyone can join the network permissionlessly — contribute computing power, earn cXToken rewards from the sole mining pool, and help build a truly decentralized AI infrastructure.

Contributor 1
Contributor 2
Contributor 3
Contributor 4
Contributor 5
Contributor 6
Contributor 7
Contributor 8
Contributor 9
Contributor 10
Contributor 11
Contributor 12
Contributor 13
Contributor 14
Contributor 15
Contributor 16
Contributor 17
Contributor 18
Contributor 19
Contributor 20
Community Trusted

Trusted by Miners Worldwide

"cXToken's single mining pool design and zero permission mechanism give me complete confidence. All rewards come from verified on-chain contributions with fully transparent distribution."

David

David

GPU Miner Independent Node

"The Compute-PoC + Model-PoT mechanism is truly innovative. Our AI computing tasks are verified and incentivized on-chain, transforming mining into productive computing that creates real value."

Michael

Michael

AI Researcher AI Training Lab

"The Flex Mining mechanism allows my validation work to be fairly rewarded. The EIP-712 signature verification ensures security with a great user experience."

James

James

Flex Miner Validation Node

"cXToken's EVM-compatible architecture and clear smart contract design made my integration work very smooth. The documentation is detailed and the community is very active."

Robert

Robert

Developer Web3 Studio

"Even with regular PC hardware I can participate in mining. The zero-barrier access tools and lightweight node images make contributing computing power very simple."

William

William

Edge Node Home Mining

"The Stake-Boost mechanism allows my long-term staking to receive more task opportunities and verification rewards. The Bitcoin-like halving design makes me confident in the long-term value."

Thomas

Thomas

Staker Long-term Holder

Start Mining cXToken

Join the global decentralized computing network. Contribute computing power, earn cXToken from the sole mining pool.

npm install ethers@6
Mining Guide