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 🙏

© 2024 – Pkg Stats / Ryan Hefner

dashphrase-cli

v1.0.4

Published

A DASH Recovery Phrase generator for Mac, Linux, & Windows - BIP-39 (Mnemonic) compliant

Downloads

26

Readme

DashPhrase CLI

A Recovery Phrase generator for Mac, Linux, & Windows
(BIP-39 "mnemonic" compliant)

Production-ready reference implementation built with DASH SDK Core.

dashphrase generate -o ./words.txt
cat swing flag economy stadium alone churn speed unique patch report train
dashphrase seed ./words.txt "" -o ./seed.hex
7ea73b3a398f8a71f7dde589d972b0358d3fa8b9e91317ecc544e42752b1bb251a1926b1f4c69eec0a80c0396aa0f7df29f7d73411d3106eba539f3d584fcdf8

Use for anything that needs entropy that can be communicated over the phone,
or printed and stored in a safe place.

(this is what a cryptocurrency "Wallet" is, by the way - just 12 words)

Developed for (but not specific to) DASH.

Table of Contents

  • Install
  • Usage
    • help
  • Test Values
    • Zoomonic (easy-to-remember)
    • Catmonic (pleasant, looks random)
  • JavaScript SDK
  • License

Install

  1. Install node.js

    # Mac, Linux
    curl -sS https://webi.sh/node | sh
    source ~/.config/envman/PATH.env
    # Windows
    curl.exe https://webi.ms/node | powershell
  2. Install dashphrase-cli

    npm install --location=global dashphrase-cli@1
  3. Use the dashphrase command to generate recovery phrases (mnemonics)

    dashphrase generate -o ./words.txt

Usage

You can generate a recovery phrase

dashphrase generate [-o ./words.txt]

And convert it into a seed (e.g. for DashHD or DashWallet)

dashphrase seed <./words.txt> <./secret.txt> [-o ./seed.hex]

Help

See the latest help:

dashphrase help

It's probably still pretty close to this:

dashphrase-cli v1.0.0 SDK v1.3.5

USAGE:
    dashphrase <subcommand> [...]

EXAMPLES:
    dashphrase gen --bits 128 -o ./words.txt
    dashphrase decode ./words.txt -o ./entropy.hex
    dashphrase encode ./entropy.hex -o ./words.txt
    dashphrase seed ./words.txt "" -o ./seed.hex

SUBCOMMANDS:
    gen|generate [--bits 128] [-o ./words.txt]
    decode                    <./words.txt> [-o ./entropy.hex]
    encode                    <./entropy.hex> [-o ./words.txt]
    seed        [--no-verify] <./words.txt> <./secret.txt> [-o seed.hex]
    zoomonic                  [secret-salt]   prints zoomonic & seed
    catmonic                  [secret-salt]   prints catmonic & seed

    help
    version

TEST VALUES:

    Catmonic:
      cat swing flag economy stadium alone churn speed unique patch report train

    Zoomonic: zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo wrong
    Zecret:   TREZOR
    Zeed:
      ac27495480225222079d7be181583751e86f571027b0497b5b5d11218e0a8a13332572917f0f8e5a589620c6f15b11c61dee327651a14c34e18231052e48c069

Test Values

These are values for use in documentation, examples, test fixtures, debugging, etc

Zoomonic

Words:

zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo wrong

(easy to remember because it's a zoo, and the checksum is wrong)

Seed (Zeed), using "TREZOR" as secret salt:

ac27495480225222079d7be181583751e86f571027b0497b5b5d11218e0a8a13332572917f0f8e5a589620c6f15b11c61dee327651a14c34e18231052e48c069

Catmonic

Words:

cat swing flag economy stadium alone churn speed unique patch report train

Catmonic Seed, with empty ("") secret salt:

7ea73b3a398f8a71f7dde589d972b0358d3fa8b9e91317ecc544e42752b1bb251a1926b1f4c69eec0a80c0396aa0f7df29f7d73411d3106eba539f3d584fcdf8

DashPhrase JavaScript SDK

DashPhrase CLI was created to make it easier for developers to get involved in developing apps for themselves and online merchants using DASH.

It is part of the DASH SDK Core, which is a suite of ready-for-production-use reference implementations in JavaScript.

License

MIT License

Copyright (c) 2023 AJ ONeal
Copyright (c) 2023 Dash Incubator