THE INFINITE VAULT

Every private key exists. Most are empty.
Some aren't. Find them →

115,792,089,237,316,195,423,570,985,008,687,907,852,837,564,279,074,904,382,605,163,141,518,161,494,336
possible private keys
"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

2256
Number of possible private keys. More than atoms in the observable universe (≈1080).
~500M
Active blockchain addresses with balance. A needle in an infinite haystack.
0%
Your chance of randomly finding a wallet with funds. Math doesn't lie.
Amount of hopium needed to think otherwise. But hey, it's fun to try! 🎲

🍀 Today's Lucky Key

A random key generated just for today. Check back tomorrow for a new one!
(Spoiler: It's also empty)

Private Key Loading...
ETH -
BTC -
Balance: Checking...

💬 Famous Last Words

🏆 Hall of Shame Top Brain Wallet Passwords That Got Cracked

#1 "password" < 1 second
#2 "bitcoin" < 1 second
#3 "satoshi nakamoto" 2 seconds
#4 "correct horse battery staple" Instantly (XKCD famous)
#5 "hello world" < 1 second
#6 "god" < 0.001 second
#7 "123456" Already in dictionary
#8 "i love you" Bots loved it more

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

Win lottery 6 times in a row
1 in 1042
Get struck by lightning while holding a winning lottery ticket
1 in 1015
Shuffle deck and get same order twice
1 in 1068
Find a Bitcoin wallet with funds
1 in 1077

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.