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

eth-console-wallet

v0.2.0

Published

Lightweight console wallet for Ethereum

Downloads

15

Readme

Eth Console Wallet

This tool is used for creating wallet and allow to generate accounts for charging and sending ETH to another users. IMPORTANT: current release is alpha.

Getting started

First of all, you should install eth-console-wallet. You can do it by means the next command

Npm

$ npm i --global eth-console-wallet

or

Yarn

$ yarn global add eth-console-wallet

Create a new wallet

Now, you should create a new wallet.

$ eth-console-wallet --init --passwork MY_PASSWORD

Generate address

After, you created the wallet, you should create an address for getting ETH.

$ eth-console-wallet --generate --password MY_PASSWORD

If you want to create a bundle of addresses and manage them, you will need to add --count NUMBER and --output PATH to current command.

Getting balance

Before, you use this command, you will need to create MY_ETHERSCAN_TOKEN at Etherscan and add it to config.

$ eth-console-wallet --add --etherscan-token MY_ETHERSCAN_TOKEN

Or, if you have your own node, you can run it with the next options:

$ geth --datadir PATH --syncmode fast --rpc --rpcapi="db,eth,net,web3,personal,web3"

and you can add rpcapi to your wallet config:

$ eth-console-wallet --add --rpcapi http://address:port

Now, you may get your account balance.

$ eth-console-wallet --balance --address 0xMyAddress

Send ETH

if you want to send some custom value from your account address to another, you will be able to use the next command:

$ eth-console-wallet --send --from 0xAddress1 --to 0xAddress2 --value SOME_VALUE_IN_ETHER --fee (low/medium/fast) --password MY_PASSWORD

if you want to send entire amount from your account address to another (fee will be max automatically), you will be able to use the next command:

$ eth-console-wallet --withdraw-all --from 0xMyAddress --to 0xAnotherWallet --password MY_PASSWORD

Roadmap

  • Add state for addresses
  • Clean source code

If you have any suggestions, you will be able to report about that by means issue.