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

ripple-wallet-cli

v1.1.6

Published

Simple Ripple Wallet client, made in node using Ripple-lib

Downloads

47

Readme

Ripple Wallet

A lightweight command-line Ripple client built with node and the official ripple-lib package.

Runs on Linux, Window and MacOSX

Network diagram

Functionalities

  • Generating a new wallet (works offline)
  • Checking the balance of an existing wallet
  • Making a payment from your existing wallet to another

Installation

  1. Make sure you have the current Node LTS release (or higher) installed on your system
  2. Run npm install -g ripple-wallet-cli to install as a global dependency
  3. Run ripple-wallet-cli to use

Usage:

Generating a new wallet

Pull the internet cord of your computer (or disable wifi) and run the following command:

$ ripple-wallet-cli generate

Checking the balance of an existing wallet

To check the balance on your wallet, run:

$ ripple-wallet-cli balance

You'll be asked for the public address to check, or you can provide it directly on the command line:

$ ripple-wallet-cli balance rJysCK99GqUBmgB54mcV7NwxYH29NRs1QQ

The output will also show the last 10 transactions. To see more transactions, you can up the limit:

$ ripple-wallet-cli balance rJysCK99GqUBmgB54mcV7NwxYH29NRs1QQ --limit [number]

Making a payment from your existing wallet to another

To make a payment from a wallet you control to another address, run:

$ ripple-wallet-cli pay

You'll be asked for the XRP amount to send, the destination address, the destination tag (optional), the sender address and finally the sender secret.

Alternatively, you can provide these params on the command line:

$ ripple-wallet-cli pay --amount [amount] --to [destination address] --tag [destination tag]