Bidirectional Bitcoin BIP39 mnemonic word selector and converter tool
An interactive, privacy-focused web application for exploring the BIP39 wordlist. Type words or click numbers. Perfect for understanding how Bitcoin seed phrases work.
Simply type any BIP39 word in the input field. The numbers will automatically update to show the binary pattern.
Click the number boxes (2048, 1024, 512, etc.) to create a binary pattern. The corresponding BIP39 word appears automatically.
Each number represents a binary bit. Combining them creates values from 1-2048, matching the 2048 BIP39 words.
npm installStart the development server:
npm run devThis will start a local server at http://localhost:3000
npm run buildnpm run previewThe project includes comprehensive test coverage with unit, integration, and end-to-end tests.
# Run Unit
npm run test:unit
# Run Integration
npm run test:integration
# Run E2E
npm run test:e2e
# Run all Tests (Unit + Integration + E2E)
npm run test:all