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

ethers-wallet-manager

v1.4.0

Published

CLI tool for managing Ethereum wallets with ethers.js

Readme

Ethers Wallet Manager CLI

A powerful command-line interface for managing Ethereum wallets using ethers.js. Create, import, and manage multiple wallets with secure keystore encryption.

Installation

Install globally via npm:

npm install -g ethers-wallet-manager

After installation, you can use either command:

  • ethers-wallet-manager (full command)
  • vlet (short alias)

Features

  • 🔐 Secure Wallet Management: Create and import wallets with encrypted keystore files
  • 🎯 Multiple Import Methods: Support for private keys, mnemonic phrases, and keystore JSON
  • 🌐 Network Support: Configure and switch between different Ethereum networks
  • 📝 HD Wallet Support: Create hierarchical deterministic wallets with custom derivation paths
  • 🔑 Message & Transaction Signing: Sign messages and transactions securely
  • 🏷️ Wallet Aliases: Manage multiple wallets with easy-to-remember names
  • ⚙️ Configuration Management: Persistent configuration with import/export functionality

Quick Start

Create a New Wallet

vlet create my-wallet --password mySecurePassword
# or use alias:
vlet new my-wallet --password mySecurePassword

Import from Mnemonic

vlet import imported-wallet --mnemonic "your twelve word mnemonic phrase here" --password myPassword
# or use alias:
vlet load imported-wallet --mnemonic "your twelve word mnemonic phrase here" --password myPassword

Import from Private Key

vlet import pk-wallet --private-key 0x1234... --password myPassword
# or use alias:
vlet load pk-wallet --private-key 0x1234... --password myPassword

List All Wallets

vlet list

Show Wallet Information

vlet info my-wallet

Show Wallet Information with Private Key

vlet info my-wallet --show-private-key --password mySecurePassword

Set Default Account

vlet config set-default-account my-wallet

Remove a Wallet

vlet remove my-wallet --force
# or use alias:
vlet delete my-wallet --force

Sign a Message

vlet sign-message my-wallet "Hello, World!" --password mySecurePassword

Commands

Wallet Management:

  • create <alias> / new <alias> - Create a new wallet
  • import <alias> / load <alias> - Import an existing wallet
  • list - Show all managed wallets
  • info <alias> - Show wallet information
  • remove <alias> / delete <alias> - Remove a wallet
  • sign-message <alias> <message> - Sign a message with a wallet
  • set-network <alias> <network> - Set network for a specific wallet
  • update-password <alias> - Update wallet password

Configuration:

  • config show - Show current configuration
  • config set-keystore-dir <directory> - Set keystore directory
  • config set-default-network <network> - Set default network
  • config set-current-network <network> - Set current network
  • config set-default-account <alias> - Set default account/wallet
  • config export <file> - Export configuration
  • config import <file> - Import configuration
  • config reset - Reset to defaults

Configuration

The CLI stores configuration and wallet data in:

  • Config: ~/.ethers-wallet-manager/config.json
  • Wallets: ~/.ethers-wallet-manager/wallets/

Supported Networks

  • Mainnet
  • Goerli
  • Sepolia
  • Polygon
  • Custom RPC endpoints

Security Features

  • Encrypted Keystores: All private keys are encrypted using industry-standard encryption
  • Password Protection: Each wallet requires a password for access
  • Local Storage: No data is transmitted to external servers
  • Secure Key Generation: Uses cryptographically secure random number generation

Development

Build from Source

git clone https://github.com/neomody77/ethers-wallet-manager-cli.git
cd ethers-wallet-manager-cli
npm install
npm run build

Run Development Version

npm run cli -- create --alias test-wallet

API Usage

You can also use this as a library in your Node.js projects:

import { WalletManager } from 'ethers-wallet-manager';

const manager = new WalletManager();

// Create a new wallet
const wallet = await manager.createWallet({
  alias: 'my-app-wallet',
  password: 'secure-password'
});

// Import existing wallet
const imported = await manager.importWallet({
  alias: 'imported-wallet',
  mnemonic: 'your mnemonic phrase here',
  password: 'password'
});

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Disclaimer

This software is provided "as is" without any warranty. Always backup your wallet files and never share your private keys or mnemonic phrases. The developers are not responsible for any loss of funds.