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

@eth-tools/cli

v0.0.6

Published

Ethereum command line tools

Downloads

25

Readme

@eth-tools/cli

Ethereum command line tools

oclif Version

Appveyor CI Codecov Downloads/week License

Usage

$ npm install -g @eth-tools/cli
$ eth-tools COMMAND
running command...
$ eth-tools (-v|--version|version)
@eth-tools/cli/0.0.5 darwin-x64 node-v10.7.0
$ eth-tools --help [COMMAND]
USAGE
  $ eth-tools COMMAND
...

Commands

eth-tools account CONFIG

Get info about accounts: ether balance, nonce

USAGE
  $ eth-tools account CONFIG

ARGUMENTS
  CONFIG  Path to config file

See code: src/commands/account.ts

eth-tools config-example COMMAND

Show config file example

USAGE
  $ eth-tools config-example COMMAND

ARGUMENTS
  COMMAND  (account|decode-input|encode-input|keystore-recover|node|one-to-many|send-txs|sign-tx|transfer-all|transfer-t
           oken) Name of command

See code: src/commands/config-example.ts

eth-tools decode-input CONFIG

Decode tx.data

USAGE
  $ eth-tools decode-input CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/decode-input.ts

eth-tools encode-input CONFIG

Encode tx.data

USAGE
  $ eth-tools encode-input CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/encode-input.ts

eth-tools help [COMMAND]

display help for eth-tools

USAGE
  $ eth-tools help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

eth-tools keystore-recover CONFIG

Restore privateKey from keystore JSON files

USAGE
  $ eth-tools keystore-recover CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/keystore-recover.ts

eth-tools mnemonic

Generate ethereum account by mnemonic seed

USAGE
  $ eth-tools mnemonic

OPTIONS
  --accounts=accounts  [default: 20]
  --seed=seed          Mnemonic seed

See code: src/commands/mnemonic.ts

eth-tools node CONFIG

Get info about ethereum nodes: block, network, client

USAGE
  $ eth-tools node CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/node.ts

eth-tools one-to-many CONFIG COMMAND

Send the same txs from one account to many

USAGE
  $ eth-tools one-to-many CONFIG COMMAND

ARGUMENTS
  CONFIG   Path to config YAML file
  COMMAND  (prepare|start|all)

See code: src/commands/one-to-many.ts

eth-tools parse-tx RAWTX

Parse raw tx

USAGE
  $ eth-tools parse-tx RAWTX

ARGUMENTS
  RAWTX  raw tx

See code: src/commands/parse-tx.ts

eth-tools send-txs CONFIG COMMAND

Send transactions, scheduling supported

USAGE
  $ eth-tools send-txs CONFIG COMMAND

ARGUMENTS
  CONFIG   Path to config YAML file
  COMMAND  (prepare|start|all)

See code: src/commands/send-txs.ts

eth-tools sign-tx CONFIG

Sign raw tx

USAGE
  $ eth-tools sign-tx CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/sign-tx.ts

eth-tools transfer-all-ether CONFIG COMMAND

Transfer all ether from many accounts to one

USAGE
  $ eth-tools transfer-all-ether CONFIG COMMAND

ARGUMENTS
  CONFIG   Path to config file
  COMMAND  (prepare|start|all)

See code: src/commands/transfer-all-ether.ts

eth-tools transfer-all-token CONFIG COMMAND

Transfer all tokens from many accounts to one

USAGE
  $ eth-tools transfer-all-token CONFIG COMMAND

ARGUMENTS
  CONFIG   Path to config file
  COMMAND  (prepare|start|all)

See code: src/commands/transfer-all-token.ts

eth-tools transfer-token CONFIG COMMAND

Transfer ERC20 token

USAGE
  $ eth-tools transfer-token CONFIG COMMAND

ARGUMENTS
  CONFIG   Path to config YAML file
  COMMAND  (prepare|start|all)

See code: src/commands/transfer-token.ts