Bitcoin / BIP-39 / Terminal

NKAMOTO

Bitcoin wallet generation, stripped down to the command line.

A security-focused BIP-39 wallet generator for developers who would rather inspect the terminal than trust another glossy interface.

npm i nkamoto
nkamoto — zsh
~/projects/wallet
$ nkamoto

NKAMOTO / bitcoin wallet generator

────────────────────────────────────
entropy     128 bits
mnemonic    BIP-39
network     bitcoin
────────────────────────────────────

mnemonic
•••••••• •••••••• •••••••• ••••••••
•••••••• •••••••• •••••••• ••••••••
•••••••• •••••••• •••••••• ••••••••

 wallet generated
$ 
01 / Design principles

Small surface.
Clear intent.

No dashboard. No account. No ceremony. Just a developer tool with a deliberate interface.

01

Terminal first

Built around the command line, where scripts, automation and reproducible workflows already live.

02

BIP-39 native

Designed around the Bitcoin BIP-39 mnemonic standard for deterministic wallet generation.

03

Minimal by design

A compact npm package with a focused job: generate wallet material without turning it into a product circus.

02 / Quickstart

Install.
Run. Inspect.

Designed to feel familiar from the first command.

npm
terminal
# install
npm install nkamoto

# run
nkamoto

# use it where you build
const wallet = await nkamoto(...)
03 / Get started

Your terminal already has a wallet.

Install NKAMOTO from npm and keep wallet generation close to the code that needs it.

INSTALL NKAMOTO ↗