CPU Miners
Low mint barrier for the grassroots layer. Employs a Swarm Mechanic: mathematical attack power scales exponentially when multiple CPU cards are pooled together by the community.
A GameFi and treasury-governance framework that binds card mechanics to live network health — global hashrate, independent node count, RPC stability — and hardcodes 95% of all revenue back into miners, infrastructure, the DAO and the burn address.
Executive summary
To break the centralized marketing narrative, the infinite presale loop and the synthetic data-injection layer served by the legacy entity's centralized database dashboard, the decentralized network needs high-utility on-chain applications in the hands of miners immediately.
The Teeth of GK is a GameFi and decentralized governance framework designed as an economic flywheel for the open-source fork. It links real-time network health metrics — global hashrate, independent node count and RPC server stability — directly to a dynamic NFT ecosystem, and gamifies the revolution.
It also introduces a smart-contract revenue splitter that deprecates centralized control of the treasury: 95% of all dApp revenue routes straight into network infrastructure, validator rewards, deflationary burning and community-approved marketing, with a minor 5% split to the development and hosting founders.
Section 01 · Generation 1
Community-backed cards are strictly capped at 10,000 unique assets. Distribution is weighted to reflect the actual physical contribution each member makes to the security of the ledger — the rig you run is the card you hold.
Low mint barrier for the grassroots layer. Employs a Swarm Mechanic: mathematical attack power scales exponentially when multiple CPU cards are pooled together by the community.
Reflecting the multi-algo nature of GPUs, these carry an active State-Toggle Mechanic — switch card attributes instantly between pure offense and network infrastructure defense.
High-tier investor and dedicated-miner class. Programmed with a Volatility Trigger: critical strike probability and yield weight double instantly during explosive network difficulty jumps.
For members who run no hardware but provide vital social capital. Acts as a Multiplier Boost, shielding and buffing active Miner cards. Holders receive baseline voting rights in the Treasury DAO.
The ultimate whale tier. Carries the highest structural base attack stats — the stats required to strip the antagonist's network defenses outright.
Section 1B · Antagonist asset class
The GK card is a hostile asset class. It sits outside the 10,000-card community supply and follows an inverted economic model: it can only be minted by users who attempt to hedge against the community, or through specific automated game events. In play it generates synthetic defensive shields derived from legacy database parameters, and it is the ultimate target for every community miner.
The fractional collapse. The total count of active GK cards is mathematically tied to the antagonist's White Teeth Armor. When the global community hashrate crushes that defense to 0%, the contract executes a forced deflation event: every outstanding GK card is frozen and fractionalized into 10,000 commemorative Defeated Trophies (Museum rarity), permanently ending its operational utility and converting it into a purely historical, tradable meme asset.
Section 02 · Primary acquisition
Assets cannot be purchased directly by tier. Acquisition runs through a randomized gamified protocol across two pack tiers, priced in native coin equivalent — driving transaction volume and keeping tier distribution honest.
Maximum accessibility, so every ledger supporter can participate. Guaranteed minimum 1 Common card.
Premium tier for active miners and serious ecosystem investors targeting high-yield infrastructure assets. Enhanced baseline weights for infrastructure classes.
Pack B carries better-than-1-in-10 odds on the ‘Remz Class’ and a 300% multiplier on Legendary yield versus the Community Pack.
Section 03 · Generation 2+
The underlying architecture uses a modular proxy framework, so core developers and miners can vote on and deploy expansion packs without inflating or diluting the value of Gen-1 assets.
Section 04 · Dynamic metadata
Unlike static legacy NFTs, every asset uses dynamic tokenURI metadata fields updated automatically by a custom secure oracle network wired directly into our decentralized RPC layers.
The antagonist card starts at maximum White Teeth Armor, and while that armor holds, legacy dashboard metrics claim dominance. The contract continuously polls global difficulty; as decentralized hashrate and autonomous node count expand, the card's defensive capability and market stats degrade automatically. Visually, the pristine unnaturally bright smile discolors, cracks, decays and finally falls out entirely as armor reaches zero.
A raw, low-power schematic of a mining rig or community symbol in a dark server room.
On hitting defined global hashrate and validator milestones, the contract executes a global metadata sweep: assets become high-fidelity, blue-energy-infused animated rigs surrounded by active data flows.
When the antagonist's armor hits zero, Gen-1 cards reach their final Evolved state — gold holographic layout, complex particle animation and the community dragon crest stamped into the interface.
Section 05 · Trustless economics
To permanently eliminate the threat of centralized treasury exploitation, 100% of primary minting fees and secondary marketplace royalties are hardcoded into an immutable Solidity payment splitter. Funds route atomically at the exact millisecond of the transaction:
Play-to-Earn and Hold-to-Earn yield, distributed programmatically to holders of active hardware NFT cards. Epic (X30) and Legendary (X100) tiers command the largest share of protocol yield.
Dedicated exclusively to infrastructure sustainability. Independent node hosts, core developers maintaining the code, and RPC operators running the endpoints that keep wallets synchronized can pull-claim native coins against bare-metal server and electricity costs.
Locked behind a multi-sig voting portal. The marketing branch and community developers cannot access this capital unilaterally — releasing funds requires a formal on-chain proposal, with miners, node operators and holders voting their NFT assets to approve or deny the budget.
Sent directly to the immutable dead address 0x000…dEaD. A structural deflationary mechanism that shrinks circulating supply on every single in-game transaction.
Rewards the original concept, systemic design management and ongoing dApp logic updates.
Funds continuous front-end hosting, dedicated node indexing and UI integration on the WelshDAG main interface.
Section 06 · Sell-out scenario
On a rapid primary sell-out of the 10,000 Gen-1 packs, the economic model transitions from a primary mint into a pure secondary market velocity engine.
Section 07 · Technical core
The payment processing engine, designed to run trustlessly on our EVM-compatible layer.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @title TeethOfGK_EcosystemSplitter
* @dev Enforces automated, decentralized distribution of dApp
* revenue to protect the community.
*/
contract TeethOfGK_EcosystemSplitter {
// Immutable cryptographic addresses for secure routing
address payable public immutable remzWallet; // 2.5% Developer / Founder
address payable public immutable lukeWallet; // 2.5% Host / Platform Partner
address payable public immutable minerRewardPool; // 35.0% Protocol Yield Pool
address payable public immutable infraAndDevPool; // 30.0% Node, RPC and Core Dev Ledger
address payable public immutable governanceDAO; // 20.0% Governance Treasury Vault
address public constant BURN_ADDRESS =
0x000000000000000000000000000000000000dEaD; // 10.0% Deflation Burn
// Cryptographic audit logs
event FundsDistributed(uint256 totalAmount, uint256 timestamp);
constructor(
address payable _remz,
address payable _luke,
address payable _minerPool,
address payable _infraDevPool,
address payable _dao
) {
require(_remz != address(0) && _luke != address(0), "Invalid founder targets");
require(
_minerPool != address(0) && _infraDevPool != address(0) && _dao != address(0),
"Invalid pool targets"
);
remzWallet = _remz;
lukeWallet = _luke;
minerRewardPool = _minerPool;
infraAndDevPool = _infraDevPool;
governanceDAO = _dao;
}
/**
* @dev Fallback execution thread. Splits native chain coins
* instantly on receipt.
*/
receive() external payable {
uint256 amount = msg.value;
require(amount >= 1000, "Transaction amount too low for precise cryptographic splitting");
// Mathematical share computation based on strict protocol weights
uint256 remzShare = (amount * 25) / 1000; // Exact 2.5%
uint256 lukeShare = (amount * 25) / 1000; // Exact 2.5%
uint256 minerPoolShare = (amount * 350) / 1000; // Exact 35.0%
uint256 infraDevShare = (amount * 300) / 1000; // Exact 30.0%
uint256 daoShare = (amount * 200) / 1000; // Exact 20.0%
// Remainder (approx. 10%) commits to the Burn Address
uint256 burnShare = amount
- (remzShare + lukeShare + minerPoolShare + infraDevShare + daoShare);
// Atomic multi-directional network transfers
remzWallet.transfer(remzShare);
lukeWallet.transfer(lukeShare);
minerRewardPool.transfer(minerPoolShare);
infraAndDevPool.transfer(infraDevShare);
governanceDAO.transfer(daoShare);
payable(BURN_ADDRESS).transfer(burnShare);
emit FundsDistributed(amount, block.timestamp);
}
}
.transfer() forwards only 2300 gas. The DAO vault is specified as a multi-sig and the reward pools are contracts — all three will revert on receipt, which reverts the entire payment. Use call{value: x}("") with a checked return, or a pull-payment release() pattern.require(amount >= 1000) rejects sub-1000-wei transfers rather than routing them; confirm this is intended rather than simply rounding dust into the burn share.nonReentrant, and confirm the Section 03 modular proxy framework is compatible with immutable storage in this contract.Section 08 · Concluding framework
This proposal aligns every segment of the ecosystem: core developers get immediate proof of utility to show centralized exchanges; node and RPC operators get guaranteed funding to offset operational expense; miners get an aggressive hold incentive; and the wider community gets absolute control over the project's future marketing path.
Core developers to review EVM compatibility and the internal compilation parameters of the splitter contract, including the flags raised in Section 07.
Node and RPC operators to confirm capability to run the decentralized oracle endpoints required for the tokenURI visual transitions.
Commence the formal on-chain and chat voting protocol to approve deployment of The Teeth of GK onto the official network hosting roadmap.