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

faucet-terminal

v2.0.4

Published

Multi-chain testnet faucet CLI - get tokens on Starknet and Ethereum testnets

Downloads

526

Readme

faucet-terminal

Get testnet tokens from your terminal

npm Downloads License

Starknet Sepolia · Ethereum Sepolia


Installation

npm install -g faucet-terminal

Quick Start

# Ethereum Sepolia (ETH)
faucet-terminal request 0xYOUR_ADDRESS --network ethereum
faucet-terminal req 0xYOUR_ADDRESS -n eth              # short version

# Starknet Sepolia (STRK - default)
faucet-terminal request 0xYOUR_ADDRESS --network starknet
faucet-terminal req 0xYOUR_ADDRESS -n sn               # short version

# Starknet Sepolia (ETH)
faucet-terminal request 0xYOUR_ADDRESS --network starknet --token ETH
faucet-terminal req 0xYOUR_ADDRESS -n sn --token ETH   # short version

Example Output

$ faucet-terminal req 0x742d35Cc6634C0532925a3b844Bc9e7595f8fE21 -n eth

  faucet terminal

  network  ethereum

  [Verification] What is 5 + 7? 12
  Correct!

  ✔ Challenge received
  ✔ Challenge solved in 32.1s
  ✔ Transaction submitted!

  ────────────────────────────────────────────────────────

    amount  0.01 ETH
    tx      0x6139cd4b...82e8d55f

    https://sepolia.etherscan.io/tx/0x6139cd4b...

  ────────────────────────────────────────────────────────

  ✔ Tokens will arrive in ~30 seconds

Supported Networks

| Network | Full Name | Aliases | Tokens | |:--------|:----------|:--------|:-------| | Starknet Sepolia | starknet | sn, sn-sep | STRK (default), ETH | | Ethereum Sepolia | ethereum | eth, eth-sep | ETH |

Commands

Request Tokens

# Full command
faucet-terminal request <ADDRESS> --network <NETWORK> [--token <TOKEN>]

# Short version
faucet-terminal req <ADDRESS> -n <NETWORK> [--token <TOKEN>]

# Shortest version
faucet-terminal r <ADDRESS> -n <NETWORK>

Examples:

faucet-terminal request 0x123...abc --network ethereum           # ETH on Ethereum
faucet-terminal req 0x123...abc -n eth                           # same, shorter
faucet-terminal r 0x123...abc -n eth                             # same, shortest

faucet-terminal request 0x123...abc --network starknet           # STRK on Starknet
faucet-terminal req 0x123...abc -n sn                            # same, shorter

faucet-terminal request 0x123...abc --network starknet --token ETH  # ETH on Starknet
faucet-terminal req 0x123...abc -n sn --token ETH                   # same, shorter

Check Status

# Full command
faucet-terminal status <ADDRESS> --network <NETWORK>

# Short version
faucet-terminal s <ADDRESS> -n <NETWORK>

Examples:

faucet-terminal status 0x123...abc --network ethereum
faucet-terminal s 0x123...abc -n eth

View Faucet Info

# Full command
faucet-terminal info --network <NETWORK>

# Short version
faucet-terminal i -n <NETWORK>

Examples:

faucet-terminal info --network ethereum
faucet-terminal i -n eth

Check Your Quota

# Full command
faucet-terminal quota

# Short version
faucet-terminal q

View Rate Limits

# Full command
faucet-terminal limits

# Short version
faucet-terminal l

Options

| Option | Short | Description | |:-------|:------|:------------| | --network | -n | Network to use (required for most commands) | | --token | | Token to request: ETH, STRK | | --json | | Output in JSON format | | --version | -v | Show version | | --help | -h | Show help |

Rate Limits

5 requests/day     per IP address
1 request/hour     per token type (ETH and STRK tracked separately)
24h cooldown       after daily limit reached

How It Works

1. Submit address    →  Validate format for the network
2. Verification      →  Answer a simple math question
3. Proof of Work     →  Solve SHA-256 challenge (~30-60s)
4. Receive tokens    →  Transaction submitted to blockchain

Error Messages

The CLI provides clear error messages when you hit rate limits:

  • [HOURLY LIMIT] - You requested this token within the last hour
  • [DAILY LIMIT] - You've used all 5 daily requests
  • [FAUCET LIMIT] - Faucet has temporarily reached its distribution limit
  • [LOW BALANCE] - Faucet balance is too low

License

MIT


npm · GitHub · Issues

Made with ❤️ by a developer, for developers