Block Lattice - Live Block Updated:
Auto-generated 128-bit CSPRNG.
Blocks:
Entropy = SHA-256(systemSalt + userSalt + blockhash). System salt is 128-bit CSPRNG; user salt is optional but recommended for extra unpredictability.
Seed Phrase ( words)
Random Password from Entropy
Strength
% / ~ bits entropy
Password is derived by expanding the seed entropy (SHA-256 chain over entropy+salt+counter), then mapping bytes to the chosen charset.
How your seed is generated (BIP39)
1. System salt
+
2. User salt
+
3. Live blockhash(es)
4. Concatenate
salt + userSalt + hash bytes
5. SHA-256
hash(x) = 32B
6. Entropy
7. BIP39 mnemonic
Formula
entropy = SHA-256( utf8(systemSalt) ++ utf8(userSalt) ++ hexBytes(blockhashes) )[0 : ENT_bits/8]

checksum = SHA-256(entropy)[0 : ENT/32 bits]   # 4 / 5 / 6 / 8 bits

bits     = bin(entropy) ++ bin(checksum)       # 132 / 165 / 198 / 264 bits

mnemonic = [ WORDLIST[bits[i:i+11]]  for i in 0,11,22,... ]
Why Nano?

Nano (XNO) is a feeless, eco-friendly cryptocurrency with a unique block-lattice architecture. It is perfectly suited as a live entropy source for this tool:

Blocks confirmed continuously Nano settles transactions — on average one or more per second, and free — so fresh blockhashes keep arriving 24/7. We never run out of new randomness.
256-bit blockhashes Each confirmation produces a 256-bit SHA-256-family hash that no one predicted beforehand. It is a public, verifiable source of high entropy bits.
Publicly verifiable Any hash you see in this app links straight to nanexplorer.com so anyone can audit that the entropy actually came from a confirmed Nano block — transparency without hiding anything.
Green & feeless No mining, no wasted energy, no cost per block. The "noise" of real user transactions keeps the pipeline running without contributing to carbon or network congestion.
But remember: public blockhashes alone are not secret. The system salt (128-bit, auto-generated client-side) keeps each seed private; the user salt you type adds a second, personal layer.
Why NanoRandom? — The Coldcard 2026 Lesson

In July 2026 a single hidden firmware bug in a famous hardware wallet silently replaced its hardware TRNG with a non-cryptographic PRNG for years. On July 30, 2026 an attacker recreated the weak seeds offline and drained about 594 BTC (~ $38M) from vulnerable wallets.

Single point of failure The devices trusted a single onboard RNG. One compiler flag (#ifndef) was enough to break seed security for four years with no visible error.
NanoRandom mixes 2+ independent sources Your seed is a hash of auto system salt (browser CSPRNG) + optional user salt (your text) + live Nano blockhashes (verifiable, outside world). Even if any one source is compromised, the final entropy still depends on the remaining ones.
Everything is public & auditable Blockhashes link straight to nanexplorer.com. The full formula is written on this page. You don't have to trust a sealed chip — you can verify every step yourself.
Your salt is the secret part As Coinkite's own advisory said, seeds were only safe when users added their own strong BIP39 passphrase / dice rolls. Same principle here: the blockhash is public, but your salt is what makes your seed unguessable to anyone else on the blockchain.
The lesson of the Coldcard incident is: never trust one RNG alone. NanoRandom strips the "black box" of hardware: entropy comes from open, verifiable Live Nano blockhashes + auto-generated system salt + optional user salt, mixed with open public math.
Frequently Asked Questions
1. What is a BIP39 mnemonic seed phrase?

BIP39 is the standard used by Nano, Bitcoin and many other cryptos to represent a private key as a list of human-readable words (12 / 15 / 18 / 24). The words come from a fixed dictionary of 2048 entries, so the phrase can be written down and retyped safely.

2. Where does the randomness come from?

Three sources are combined and SHA-256 hashed:

  • System salt – a secure random 128-bit value generated by your browser's crypto.getRandomValues() on page load. Auto-generated, readonly, and you can click any time.
  • User salt – optional text you type yourself. Leave empty unless you want a second, personal layer.
  • Live Nano blockhashes – fetched from api.nanexplorer.com/last-blocks every 3 seconds. The last 16 hashes are concatenated.

Result: entropy = SHA-256( systemSalt + userSalt + blockhashes )[0 : ENT/8]

3. Why mix blockhash with two salts?

Blockhashes are public. A blockhash alone is not a private secret. The system salt is auto-generated by your browser (so nobody can calculate it in advance), and the user salt adds a second layer that you control — if an attacker knew the blockhash(es) and guessed one of the salts, they still have to guess the other. On the Nano network, both salts stay local, never uploaded.

4. Is this tool safe? Where is my seed stored?

Everything runs 100% client-side in your browser. No seed, salt or entropy is ever sent to any server. The only network call is to the public Nano explorer API to read live blockhashes. Still, before holding real funds, consider using a trusted offline/air-gapped device to sign transactions.

5. Why do 12 / 15 / 18 / 24 word options exist?

BIP39 requires the entropy length to be a multiple of 32 bits. The supported lengths are:

  • 12 words → 128 bits entropy + 4-bit checksum
  • 15 words → 160 bits entropy + 5-bit checksum
  • 18 words → 192 bits entropy + 6-bit checksum
  • 24 words → 256 bits entropy + 8-bit checksum
6. Can I reuse a salt later?

The salt is part of your entropy. If you regenerate the same salt (e.g. by saving it) combined with the same blockhash, you'd get the same seed. In practice the blockhash changes every few seconds, so each run is unique. If you want to back up a seed, use Download instead.

7. What happens if the API is down?

The badge switches to API Off, the blockhash buffer stays as-is and the seed will not regenerate until the connection recovers (auto-retry on every poll). You can keep editing the salt to regenerate the seed from the existing buffer.

Security tips
  • Write down your seed phrase on paper and store it offline. Never store it in cloud notes or screenshots.
  • Never share the seed or the salts (system + user) with anyone. Anyone with both salts + the matching blockhash window can fully recover your wallet.
  • For significant funds, prefer using an offline/air-gapped device and verify the seed derivation there before trusting any on-screen values.
  • This tool is open and client-side — you can save the page and run it offline after the first load.