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

@maxblock/ethcli

v0.0.5

Published

Ethereum command line tools

Downloads

13

Readme

@eth-tools/cli

Ethereum command line tools

oclif Version

Appveyor CI Codecov Downloads/week License

Usage

$ npm install -g @maxblock/ethcli
$ eth COMMAND
running command...
$ eth (-v|--version|version)
@maxblock/ethcli/0.0.4 darwin-x64 node-v11.0.0
$ eth --help [COMMAND]
USAGE
  $ eth COMMAND
...

Commands

eth account CONFIG

Get info about accounts: ether balance, nonce

USAGE
  $ eth account CONFIG

ARGUMENTS
  CONFIG  Path to config file

See code: src/commands/account.ts

eth config-example COMMAND

Show config file example

USAGE
  $ eth config-example COMMAND

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

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

eth decode-input CONFIG

Decode tx.data

USAGE
  $ eth decode-input CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

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

eth encode-input CONFIG

Encode tx.data

USAGE
  $ eth encode-input CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

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

eth help [COMMAND]

display help for eth

USAGE
  $ eth help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

eth keystore-recover CONFIG

Restore privateKey from keystore JSON files

USAGE
  $ eth keystore-recover CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

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

eth mnemonic

Generate ethereum account by mnemonic seed

USAGE
  $ eth mnemonic

OPTIONS
  --accounts=accounts  [default: 20]
  --seed=seed          Mnemonic seed
  --strength=strength  [default: 256] Mnemonic strength (128=12words, 256=24words)

See code: src/commands/mnemonic.ts

eth node CONFIG

Get info about ethereum nodes: block, network, client

USAGE
  $ eth node CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

See code: src/commands/node.ts

eth one-to-many CONFIG COMMAND

Send the same txs from one account to many

USAGE
  $ eth 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 parse-tx RAWTX

Parse raw tx

USAGE
  $ eth parse-tx RAWTX

ARGUMENTS
  RAWTX  raw tx

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

eth send-txs CONFIG COMMAND

Send transactions, scheduling supported

USAGE
  $ eth send-txs CONFIG COMMAND

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

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

eth sign-tx CONFIG

Sign raw tx

USAGE
  $ eth sign-tx CONFIG

ARGUMENTS
  CONFIG  Path to config YAML file

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

eth transfer-all-ether CONFIG COMMAND

Transfer all ether from many accounts to one

USAGE
  $ eth transfer-all-ether CONFIG COMMAND

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

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

eth transfer-all-token CONFIG COMMAND

Transfer all tokens from many accounts to one

USAGE
  $ eth transfer-all-token CONFIG COMMAND

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

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

eth transfer-token CONFIG COMMAND

Transfer ERC20 token

USAGE
  $ eth transfer-token CONFIG COMMAND

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

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