npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fiandev/ina-phrase

v1.0.1

Published

indonesian seed phrase word list

Readme

@fiandev/ina-phrase

A TypeScript library and CLI tool for generating Indonesian BIP39 seed phrases and deriving Bitcoin keys.

Features

  • Generate random BIP39 seed phrases using Indonesian words
  • Derive Bitcoin keys from seed phrases
  • Display QR codes for keys in terminal
  • CLI tool for easy command-line usage
  • TypeScript support with full type definitions

Installation

As a library

npm install @fiandev/ina-phrase

As a CLI tool (global install)

npm install -g @fiandev/ina-phrase

Usage

CLI Commands

Generate a random seed phrase

ina-phrase generate <length>

Where <length> is either 12 or 24.

Example:

ina-phrase generate 12
# Output: masa gila kabel brutal watu halim desi sakral curah opor ebong bunda

Get keys from a seed phrase

ina-phrase keys "<seed-phrase>"

Example:

ina-phrase keys "masa gila kabel brutal watu halim desi sakral curah opor ebong bunda"
# Output:
# {
#   "privateKey": "85d6da48f237235a877f224d3b6c775d82dab8ccb117f2d35f3113ffd31348b6",
#   "publicKey": "033c2103985493608123817693fe4f5c38e86ec979fe4d9b814369a6dc622d407e",
#   "address": "1F61pasuA5urBzp4XHN6aW3X9pAaML11ZL"
# }

Print QR codes for keys

ina-phrase print <private-key> <public-key> <address>

Example:

ina-phrase print \
  "85d6da48f237235a877f224d3b6c775d82dab8ccb117f2d35f3113ffd31348b6" \
  "033c2103985493608123817693fe4f5c38e86ec979fe4d9b814369a6dc622d407e" \
  "1F61pasuA5urBzp4XHN6aW3X9pAaML11ZL"
# Outputs QR codes in terminal

Library Usage

import IndonesianSeedPhrase from '@fiandev/ina-phrase';

const isp = new IndonesianSeedPhrase();

// Generate a random seed phrase
const seedPhrase = isp.generateRandomSeedPhrase(12);
console.log(seedPhrase); // "masa gila kabel brutal watu halim desi sakral curah opor ebong bunda"

// Get keys from seed phrase
const keys = isp.getKeysFromSeedPhrase(seedPhrase);
console.log(keys);
// {
//   privateKey: "85d6da48f237235a877f224d3b6c775d82dab8ccb117f2d35f3113ffd31348b6",
//   publicKey: "033c2103985493608123817693fe4f5c38e86ec979fe4d9b814369a6dc622d407e",
//   address: "1F61pasuA5urBzp4XHN6aW3X9pAaML11ZL"
// }

// Print QR codes (async)
await isp.print(keys.privateKey, keys.publicKey, keys.address);

API Reference

IndonesianSeedPhrase

Methods

  • generateRandomSeedPhrase(len: 12 | 24): string - Generates a random seed phrase
  • getKeysFromSeedPhrase(seedPhrase: string): { privateKey: string, publicKey: string, address: string } - Derives Bitcoin keys from seed phrase
  • print(privateKey: string, publicKey: string, address: string): Promise<void> - Prints keys and QR codes to console

Development

# Install dependencies
yarn install

# Build the project
yarn build

# Run tests
yarn test

License

MIT - see LICENSE file for details.