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

@codegame.dev/wallet-cli

v1.1.13

Published

A CLI tool for managing wallets across multiple blockchains, supporting operations like wallet creation, balance checking, transfers, and fee estimation.

Readme

Wallet CLI - Multi-Blockchain Wallet Management Tool

Wallet CLI is a powerful command-line tool for managing multi-blockchain wallets. It allows you to generate public keys, manage balances, transfer funds, and estimate transaction fees with ease. The tool supports a wide range of blockchains and tokens, making it an essential utility for developers and blockchain enthusiasts.


Installation

Install the @codegame.dev/wallet-cli globally using npm:

npm install -g @codegame.dev/wallet-cli

This makes the wallet-cli command accessible from anywhere on your system.


Features

  • Generate public keys for multiple blockchains from an existing or new mnemonic.
  • View wallet balances in real-time.
  • Perform secure and efficient transfers.
  • Estimate transaction fees for supported networks.
  • Wallet creation is supported for most major blockchains, but other features are currently supported for these blockchains: Ethereum, Binance Smart Chain, Polygon, Tron, Ton. In the future, other chains will be added.

Commands Overview

General Options

  • -V, --version: Display the version number.
  • -h, --help: Show help for any command.

Commands

coin-list

Display a list of all supported coins.

Options:

  • -s <text>: Search for a specific coin.
  • --json: Output results in JSON format.

Example:

wallet-cli coin-list -s bitcoin

get-address

Retrieve the public address for a specific coin.

Options:

  • --mnemonic <mnemonic>: Specify an existing mnemonic.
  • --coin <coin>: Name of the coin (based on Trust Wallet Core).
  • --coingecko-platform <platform>: Platform name (based on CoinGecko API).
  • --json: Output results in JSON format.

Example:

wallet-cli get-address --mnemonic "your mnemonic" --coin ethereum

create-wallet

Generate a new mnemonic and wallet.

Options:

  • --coin <coin>: Name of the coin (based on Trust Wallet Core).
  • --coingecko-platform <platform>: Platform name (based on CoinGecko API).
  • --json: Output results in JSON format.

Example:

wallet-cli create-wallet --coin bitcoin

get-balance

Check the balance of a wallet for a coin or token.

Options:

  • --coin <coin>: Name of the coin (based on Trust Wallet Core).
  • --coingecko-platform <platform>: Platform name (based on CoinGecko API).
  • --address <address>: Wallet address.
  • --token-address <token-address>: Contract address of the token.
  • --json-rpc-provider <url>: URL of the JSON-RPC provider.
  • --http-provider <url>: URL of the HTTP provider.
  • --json: Output results in JSON format.
  • --testnet: Use the testnet provider.

Example:

wallet-cli get-balance --coin ethereum --address 0xYourAddress

transfer

Send coins or tokens to another wallet.

Options:

  • --mnemonic <mnemonic>: Specify an existing mnemonic.
  • --coin <coin>: Name of the coin (based on Trust Wallet Core).
  • --coingecko-platform <platform>: Platform name (based on CoinGecko API).
  • --address <address>: Recipient wallet address.
  • --amount <amount>: Amount to transfer.
  • --token-address <token-address>: Contract address of the token.
  • --json-rpc-provider <url>: URL of the JSON-RPC provider.
  • --json: Output results in JSON format.
  • --testnet: Use the testnet provider.

Example:

wallet-cli transfer --mnemonic "your mnemonic" --coin ethereum --address 0xReceiverAddress --amount 0.1

estimate-fee

Estimate the fees for a coin or token transfer.

Options:

  • --mnemonic <mnemonic>: Specify an existing mnemonic.
  • --coin <coin>: Name of the coin (based on Trust Wallet Core).
  • --coingecko-platform <platform>: Platform name (based on CoinGecko API).
  • --address <address>: Recipient wallet address.
  • --amount <amount>: Amount to transfer.
  • --token-address <token-address>: Contract address of the token.
  • --json-rpc-provider <url>: URL of the JSON-RPC provider.
  • --json: Output results in JSON format.
  • --testnet: Use the testnet provider.

Example:

wallet-cli estimate-fee --mnemonic "your mnemonic" --coin ethereum --address 0xReceiverAddress --amount 0.1

Supported Networks

The following networks are supported for get-balance, transfer, and estimate-fee commands:

  • Ethereum (ETH)
  • Binance Smart Chain (BSC)
  • Polygon POS (POL)
  • Tron (TRX)
  • Ton (TON) - static estimate-fee

Acknowledgements

Wallet CLI leverages the following libraries:

Special thanks to these projects for their contributions to the blockchain ecosystem.


License

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