THE INFINITE VAULT
Every private key exists. Most are empty.
Some aren't.
Find them →
"If you could check 1 trillion keys per second,
it would take 3.7 × 1057 years to check them all.
The universe is only 13.8 × 109 years old."
Explore Tools
Fun Facts
🍀 Today's Lucky Key
A random key generated just for today. Check back tomorrow for a new one!
(Spoiler: It's also empty)
Loading...
-
-
💬 Famous Last Words
"I'll just use 'password123' as my brain wallet. Nobody will guess that."
- Lost 2.5 BTC"Random.org is probably secure enough for generating my private key."
- Wallet drained in 3 hours"I don't need a hardware wallet, I trust this vanity address generator."
- Profanity bug victim, $3M gone"Let me save my seed phrase in my email draft, it's convenient."
- Account hacked, funds swept"My cat walking on keyboard is random enough for entropy."
- Meow meow, money gone🏆 Hall of Shame Top Brain Wallet Passwords That Got Cracked
All these wallets were drained within seconds of receiving funds.
Bots monitor the blockchain 24/7 waiting for brain wallet deposits.
📊 Let's Visualize The Odds
The bar is so small it's invisible.
That's the point.
⚠️ Educational purposes only.
This site demonstrates the mathematical impossibility of brute-forcing private keys.
All key generation happens client-side. We don't store or transmit any keys.
If you actually find a wallet with funds... well, you won't. But that's the point.
privatekeys.lol — A Visual Guide to the Cryptocurrency Keyspace
Cryptocurrency security depends on one number: 2^256, the size of the Bitcoin and Ethereum private key space. That number — roughly 1.16 × 10^77 — is so large that no human intuition can grasp it directly. privatekeys.lol exists to bridge that gap. It collects nine interactive tools that each illustrate a different aspect of the keyspace, ranging from random key generation (Spin the Wheel, Live Hunt, Entropy) to deterministic enumeration (Keyspace), historical study (Timeline, Graveyard), probability analysis (Calculator, Collision), and offensive technique (Dictionary). Together they form a living, browsable curriculum on how cryptocurrency keys actually work.
Every key shown anywhere on this site is a real, mathematically valid Bitcoin and Ethereum private key. Every address derives correctly via standard secp256k1 multiplication and the appropriate hash function (Keccak-256 for Ethereum, RIPEMD160(SHA256()) for Bitcoin). Balance lookups go to live RPC endpoints. Nothing is mocked. Nothing is sent to a server we control. The point of showing real keys is to drive home the same lesson at every level: in a 2^256 search space, real-world cryptography is safe not because anyone is hiding information, but because the math itself is impossibly large.
Why Brute-Forcing Bitcoin Private Keys Is Impossible
The most common misconception about cryptocurrency security is that it is "good enough" or "probabilistically safe." Neither phrasing captures the magnitude. To exhaustively search the Bitcoin keyspace at one billion derivations per second — an aggressive estimate even for top-tier GPUs — would take 3.67 × 10^60 years. The age of the universe is 1.38 × 10^10 years, so a brute-force attack at that rate would require about 2.66 × 10^50 universe-ages to complete. Even running every computer on Earth in parallel only buys a constant-factor speedup, and constant factors are powerless against an exponential keyspace.
What does work, and what the Graveyard documents, is attacking wallets that were generated with weak randomness in the first place. Brain wallets seeded from human passphrases live in a 2^30 to 2^50 search space. The Profanity vanity-address tool reduced its search to 32 bits. Bitcoin Puzzle wallets are deliberately constrained to specific bit-ranges. All of these are crackable today. None of those vulnerabilities apply to a wallet whose 256-bit key was sampled from a cryptographically-secure random source — which is to say, every wallet generated by a hardware wallet or a properly-implemented software wallet.
How to Use This Site
Start anywhere. Spin the Wheel is the most playful entry point — press a button, watch a key generate. Live Hunt turns the same idea into a Matrix-style scanner. Keyspace lets you walk through every possible key in order. Calculator gives you the probability mathematics in concrete numbers, with comparisons to lottery tickets and lightning strikes. Collision shows the birthday-paradox boundary on Ethereum addresses. Entropy demonstrates how randomness is collected for key generation. Dictionary and Graveyard document what happens when the input randomness is weak. Timeline places fifteen years of crypto-security history into context.
Each page includes the underlying math, FAQ entries answering the most common questions, and source links to public datasets where applicable. The whole thing is open-source and runs entirely client-side except for read-only on-chain balance queries.
Frequently Asked Questions
What is privatekeys.lol?
privatekeys.lol is an educational website about cryptocurrency private keys, the secp256k1 keyspace, and the mathematics of wallet security. It hosts interactive visualizations and calculators that let you explore why brute-forcing Bitcoin or Ethereum keys is computationally infeasible.
Is this site for finding lost or abandoned wallets?
No. It is purely educational. Anyone claiming a "wallet finder" tool that actually recovers funded addresses through random key generation has misunderstood the math. The 2^256 keyspace makes random discovery functionally impossible.
How does Bitcoin's 2^256 keyspace work?
Each Bitcoin and Ethereum private key is a 256-bit integer below the secp256k1 curve order, giving roughly 1.16 × 10^77 valid keys. Public addresses derive deterministically from those keys. Security comes from the fact that randomly guessing one funded address out of all those keys is statistically equivalent to zero.
Are the keys on this site real?
Yes. Every key shown by Spin, Hunt, Keyspace, Entropy, and the rest is a fully valid Bitcoin and Ethereum private key. They are generated either deterministically (Keyspace) or from cryptographic randomness (everything else). None of them is funded — that's the whole point.
Why does this site exist?
To make the size of the cryptographic keyspace feel real. People often hear that Bitcoin has 2^256 keys without grasping the magnitude. Watching keys fly past in Live Hunt, scrolling through Keyspace, and reading the probability calculations gives a much more visceral sense of why decentralized cryptocurrency works.
Can I generate a wallet here for real use?
Technically the keys are valid, but in practice no. Anything generated in a browser tab is exposed to extensions, screen recorders, and clipboard managers. For real funds, use a hardware wallet or a vetted offline software wallet.