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

common-faucet

v1.0.6

Published

A faucet interface people to host their own faucets and for test suites to get testnet coin

Downloads

16

Readme

common-faucet

Installation

you can install the npm module here

Usage

After using npm install, require the npm module at the top of the file

var faucet = require('common-faucet');

next specify the following arguments:

  1. A network ie) "testnet" or "mainnet"
  2. A Common Blockchain Client, see npm modules like blockypher-unofficial chain-unofficial etc.
var faucetClient = faucet({
  network: "testnet",
  commonBlockchainClient: (one of the common blockchain objects),
  inBrowser: (true if the call is from in a browser application)
});

Get Testnet Coin Programmatically

You can use our common-faucet instance at http://blockai-faucet.herokuapp.com/ if you need testnet coin for your test suites. Here is how you would do it:

faucet.Get({
  faucetURL: "http://blockai-faucet.herokuapp.com/",
  address: (the address you want the faucet to send to)
}, callback);

Functionality

//callback for all of these functions uses the standard callback(err, resp)

faucet.Balance((some address), callback);

//use our faucet endpoint for now http://blockai-faucet.herokuapp.com/
faucet.Get({
  faucetURL: (the url to a faucet endpoint),
  address: (the address you want the faucet to send to)
}, callback);

//note this function requires a good amount of requests (or a batch request) to work.
//I tested it with common-blockcypher and it required that I specified an api key to common-blockcypher
//returns the number of milliseconds since the last transaction between the faucetAddress and destinationAddress
//if there is no tx, it returns null.
faucet.LastReceived({
  faucetAddress: (address of the faucet you wish to inspect),
  destinationAddress: (the address you wish to probe for faucet transactions)
}, callback);

faucet.Send({
  faucetWIF: (the wif of your faucet address to sign the transactions),
  amount: (amount in satoshi you wish to send),
  destinationAddress: (the address that you wish to send the bitcoin to)
}, callback);

Maintainers