§ Tool · validator

BIP-39 Validator — checksum + entropy decoder

Paste a 12/15/18/21/24-word seed phrase. We check every word against the BIP-39 list and SHA-256-verify the checksum. Runs in your browser.

Last updated · May 11, 2026

BIP-39 · Validator · Offline

client-side · no data leaves your browser

12, 15, 18, 21, or 24 lowercase English words, separated by spaces. Stays in your browser.

What this catches

  • Typos in a word (the word isn't in the BIP-39 list)
  • Wrong word count (not 12 / 15 / 18 / 21 / 24)
  • A swapped, missing, or extra word — the last 4-8 bits are a SHA-256 checksum over the rest, so almost any corruption fails the checksum

What it does NOT check: whether the phrase generates the wallet you think it does. That requires deriving an address at your wallet's exact derivation path + script type — easier to do by restoring on the hardware device and confirming the first receive address.

Safety

This page never sends your phrase anywhere. The validation runs in your browser via the @scure/bip39 library. Still — if this is a *real* seed protecting real funds, treat the act of typing it onto an internet-connected machine as a low-but-non-zero risk. For maximum paranoia, save this page offline (right-click → Save) and use it on an air-gapped machine.

What this tool does

BIP-39 (Bitcoin Improvement Proposal 39) is the standard that encodes the entropy behind a Bitcoin wallet as a list of 12, 15, 18, 21, or 24 dictionary words. The last few bits of the final word are a SHA-256 checksum over the preceding entropy bits — so a phrase that contains a typo, a swapped word, or a missing/extra word will almost always fail the checksum.

This validator does exactly that check, client-side, with no telemetry. It tells you three things:

  1. Are all your words in the BIP-39 wordlist? Typos and OCR errors get caught here. The wordlist is 2,048 words chosen so that no word is a prefix of another and most are distinguishable by the first four letters.
  2. Is the word count valid? Only 12, 15, 18, 21, or 24 — anything else isn’t a BIP-39 mnemonic.
  3. Does the checksum hash-verify? This is the strong check. If even one word is wrong or out of order, the SHA-256 over the entropy bits doesn’t match the trailing checksum bits and the phrase is rejected.

If all three pass, you’ll see the decoded entropy in hex (128 / 160 / 192 / 224 / 256 bits) and a confirmation that the phrase is a mathematically self-consistent BIP-39 mnemonic.

Why you’d use this

The most common scenario: you wrote down 24 words when you set up a hardware wallet, and now — years later — you want to confirm the paper backup is still correct without wiping the device and restoring. Type the words in here, and if the checksum passes, the phrase is at least mathematically valid. It does not confirm the phrase corresponds to your wallet (only a device restore can do that), but it does rule out the most common backup failures: a typo, a smudged letter, a word transposed by two positions, a row written down twice.

What it deliberately doesn’t do

Safety considerations

This page never sends your phrase anywhere. The validation runs in your browser using the audited @scure/bip39 library, and the BIP-39 English wordlist is bundled into the page bundle itself — no network requests are made when you click validate.

That said, typing a real seed onto an internet-connected machine is still a low-but-non-zero risk. A malicious browser extension, a keylogger, a compromised input method — any of those would defeat the “client-side” property. For maximum paranoia:

Specification reference