Game Keys.
Now Liquid.
Now Unkidnappable.
The first game-key marketplace where every key is shattered into moving fragments, scattered across 23+ countries, and reassembled only inside a Trusted Execution Environment.
Kinetic Security
Keys That Never Stop Moving
Six layers of kinetic defense make keymove the most secure game-key marketplace ever conceived.
Motion Engine
Real gamer play drives 1,000+ fragment relocations per second. Your keys are never still.
Geographic Scatter
Instant continent jumps on threat detection. Fragments scatter across 23+ countries in milliseconds.
Quantum Signatures
NIST PQC + QRNG verification. Every fragment carries a CRYSTALS-Dilithium-5 quantum signature.
Synthetic Decoys
10M+ synthetic decoy fragments make it impossible to distinguish real from fake.
TEE Reconstruction
Fragments reassemble in under 400ms inside AWS Nitro Enclaves. Zero exposure.
Entropy Fusion
70% quantum randomness + 30% gamer behavioral entropy. Unpredictable by design.
Live Deals
Real-Time Transactions
Watch actual purchases happen in real-time. Every deal is protected by Kinetic Security.
Live Deal Feed
Kinetic Security active on all transactions
$388
Total Volume
10
Deals
| Status | Buyer | Product | Amount | Time |
|---|---|---|---|---|
| Settled | qt_9eea72 | Pro Subscription | $14.99 | 47s ago |
| Settled | zk_66ff25 | 10 Key Bundle | $4.99 | 2m ago |
| Settled | qt_eff707 | 100 Key Bundle | $34.99 | 5m ago |
| Settled | zk_e20759 | Pro Subscription | $143.90 | 10m ago |
| Settled | zk_54374c | 50 Key Bundle | $19.99 | 15m ago |
| Settled | zk_c163c7 | Enterprise Plan | $99.00 | 30m ago |
| Settled | qt_2a4dd1 | Pro Subscription | $14.99 | 1h ago |
| Settled | zk_14d8d5 | 10 Key Bundle | $4.99 | 1h ago |
| Settled | zk_cedeea | 100 Key Bundle | $34.99 | 2h ago |
| Settled | fx_055294 | Pro Subscription | $14.99 | 3h ago |
Dashboard Preview
Kinetic Shield Panel
Monitor your key security in real-time. Velocity, dispersion, and threat status at a glance.
keymove Kinetic™
Security Score: 67/100
864
moves/sec
23
Countries
10M+
Active Decoys
Deep Dive
Quantum Security Layer
Post-quantum cryptography meets real-time gamer entropy. Every fragment is signed, encrypted, and verified inside a Trusted Execution Environment.
Five-Layer Architecture
- 01
Gamer UI Layer
Real play = motion
- 02
Motion Engine
100-1,000+ moves/sec
- 03
Synthetic Decoy Layer
10M+ decoys
- 04
Quantum Security Layer
CRYSTALS-Kyber + Dilithium
- 05
Marketplace Layer
Reconstruction <400 ms
const embedQuantumSignature = async (
fragment: Buffer,
qrngSeed: Buffer
) => {
const hash = await sha3_512(
Buffer.concat([qrngSeed, fragment])
);
const signature = await dilithium.sign(
hash, privateKey
);
return Buffer.concat([fragment, signature]);
};Randomness
QRNG via API3 / ID Quantique (200ms refresh)
Verification
TEE (AWS Nitro / Google Confidential Space)
Entropy
70% QRNG + 30% gamer behavioral
Threat Detection
Hybrid VQE + LSTM quantum ML
Smart Contracts
ReconstructionCoordinator
The single on-chain entry point for the full reconstruction flow. Enforces threat checks, cooldowns, TEE attestation, and post-reconstruction velocity boosts — all auditable on-chain.
Reconstruction Flow
OAuth + MFA
Backend verifies identity
Gather 60+ fragments
Motion Engine collects from decoy network
TEE decrypt & verify
AWS Nitro / GCP Confidential Space
Execute on-chain
ReconstructionCoordinator.reconstruct()
Re-fragment + boost
2x velocity for 60 seconds
400ms exposure window refers to TEE processing time (steps 3-4). On-chain settlement adds block latency: ~250ms on Arbitrum, ~2s on Optimism, ~12s on L1.
contract ReconstructionCoordinator is AccessControl, ReentrancyGuard {
uint256 public constant POST_RECON_VELOCITY_MULTIPLIER = 2;
uint256 public constant POST_RECON_BOOST_DURATION = 60 seconds;
uint256 public constant MIN_RECONSTRUCTION_INTERVAL = 5 minutes;
function reconstruct(uint256 tokenId)
external
onlyRole(OPERATOR_ROLE)
whenNotPaused
nonReentrant
{
if (threatOracle.isThreatActive(tokenId))
revert ThreatActiveCannotReconstruct(tokenId);
uint256 lastRecon = lastReconstructionTime[tokenId];
if (lastRecon > 0) {
uint256 availableAt = lastRecon + MIN_RECONSTRUCTION_INTERVAL;
if (block.timestamp < availableAt)
revert ReconstructionCooldownActive(tokenId, availableAt);
}
if (!kineticGameKey.isReconstructionAuthorized(tokenId))
revert ReconstructionNotAuthorized(tokenId);
try kineticGameKey.startReconstruction(tokenId) {
_applyPostReconBoost(tokenId);
emit ReconstructionCompleted(tokenId, msg.sender);
} catch Error(string memory reason) {
_recordFailure(tokenId, reason);
}
}
}Transparent
Fees & Economics
Simple, transparent pricing. No hidden fees. Staking is always free.
| Action | Fee | Notes |
|---|---|---|
| Tokenize | First 10 free | Then 0.5% (capped $15) |
| Sell | 0.75% seller only | Tier discounts to 0% |
| Stake / Unstake | FREE | Free forever |
| Kinetic Shield Insurance | 0.3-1.4% annualized | Paid in KEY tokens |
All fees are subject to governance votes by KEY token holders.
Tech Stack
Production-grade infrastructure from smart contracts to quantum security.
Frontend
- Next.js 15
- Tailwind CSS
- shadcn/ui
- Framer Motion
- lightweight-charts
Wallet
- Reown AppKit
- Privy
- ERC-4337 Gasless
Contracts
- Solidity 0.8.28
- KineticGameKey
- SyntheticDecoy
- MotionOracle
Backend
- Supabase
- The Graph
- TradingView Webhooks
Security
- CRYSTALS-Kyber
- Dilithium-5
- QRNG Oracles
- TEE Reconstruction
Weeks 1-3
Core + Wallet + Onboarding
In Progress
Weeks 4-6
Marketplace + Staking
Upcoming
Weeks 7-9
Full KSP + TradingView Bots
Planned