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.
npm install ethers@6Core Features
Dual-engine verifiable computing (Compute-PoC + Model-PoT) building a decentralized AI training ecosystem
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
All computation results verified on-chain via task sharding and cross-validation. No centralized trust required.
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
Multi-factor weighted rewards based on contribution, stability, reputation, and participation — not just hardware size.
Three Node Types
Computing nodes execute tasks, verification nodes audit results, storage nodes ensure data availability — a complete decentralized ecosystem.
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.
Fixed total, zero additional issuance, all pre-minted at genesis
All permissions permanently renounced — no minting, no modification, no recall
Output deflation + staking lockup + task consumption
Task settlement, node staking, verification credential, computing market
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.
// 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.
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.
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
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
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
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
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
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
Staker • Long-term HolderStart Mining cXToken
Join the global decentralized computing network. Contribute computing power, earn cXToken from the sole mining pool.
npm install ethers@6