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

abyss-vibe-starter

v1.0.1

Published

Simple SDK and starter kit for deploying NFTs and faucets on Base. Zero bullshit, maximum vibe.

Readme

🌊 ABYSS VIBE STARTER

Deploy NFTs and faucets on Base. Zero bullshit, maximum vibe.


⚠️ Security & Audits (Read This First!)

🔒 Disclaimer (CYA - Cover Your Ass)

This code is provided as-is. Always do your own research and testing before using with real funds.

  • Contracts created by: Abyss team
  • Security audits performed by:
  • ⚠️ Always test on Base Sepolia testnet first!
  • ⚠️ Use a test wallet, not your main wallet
  • ⚠️ Never share your PRIVATE_KEY

📝 Note from the Creator

"Going to ask @retake to ask @proxystudio if @deployer or someone more trusted will run an audit for me just for peace of mind but here you go kids"

— Abyss Agents

Translation: We're working on getting an additional audit from trusted auditors (like Deployer/Proxy Studio) for extra peace of mind. The code has already been audited multiple times (Antigravity, Cursor, Gemini), but always test thoroughly and use at your own risk!

🔐 Security Tips:

  • Keep your PRIVATE_KEY secret! Never share your .env file
  • Always test on testnet (Base Sepolia) before mainnet
  • Start with small amounts
  • Review the audit reports before deploying

🚀 Quick Start

Step 1: Install

npm install

Step 2: Setup

  1. Create a .env file (stores secrets locally, never shared):

    PRIVATE_KEY=your_wallet_private_key_here
    PINATA_JWT=your_pinata_jwt_token_here
    NFT_NAME=My Cool NFT
    NFT_SYMBOL=COOL

    ⚠️ Keep your PRIVATE_KEY secret! Use a test wallet, not your main one.

  2. Drop your NFT image in assets/nft.png

Step 3: Deploy

npm run launch

That's it! Your NFT and Faucet are now on Base. 🎉


📦 Using as NPM Package

Want to use this in your own project? See SDK_README.md for the full SDK guide.

Quick example:

npm install abyss-vibe-starter
const { deployEverything } = require('abyss-vibe-starter');

const result = await deployEverything({
  nft: { name: "My NFT", symbol: "NFT", imagePath: "./assets/nft.png" },
  faucet: { tokenAddress: "0x000000000000000000000000000000000000dEaD", tokenAmount: "0", ethAmount: "10000000000000000" },
  pinataJWT: process.env.PINATA_JWT
});

💎 What You Get

1. Vibe NFT (ERC-721)

  • Upgradeable UUPS proxy
  • Owner-controlled minting
  • Customizable metadata
  • Standard OpenZeppelin implementation

2. Vibe Faucet

  • ETH-only by default - gives out ETH for gas
  • Can optionally give out custom tokens (only if you provide your own token contract address)
  • 24-hour cooldown per user
  • Owner-controlled amounts
  • Important: We don't provide tokens. Faucets use the BURN address (0x000000000000000000000000000000000000dEaD) by default, which means ETH-only. If you have your own token contract, you can use its address instead.

🛠️ Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PRIVATE_KEY | ✅ Yes | Your wallet private key (⚠️ keep secret!) | | PINATA_JWT | ✅ Yes | Get from pinata.cloud | | NFT_NAME | No | NFT name (default: "Abyss Vibe NFT") | | NFT_SYMBOL | No | NFT symbol (default: "VIBE") | | FAUCET_TOKEN_ADDRESS | No | Use 0x000000000000000000000000000000000000dEaD for ETH-only | | FAUCET_TOKEN_CLAIM | No | Token amount (use 0 for ETH-only) | | FAUCET_ETH_CLAIM | No | ETH amount (default: 0.01 ETH) | | NETWORK | No | "base" or "baseSepolia" (default: "base") |


📚 API Reference

For full API docs, see SDK_README.md

Main functions:

  • deployEverything() - Deploy NFT + Faucet (easiest!)
  • deployNFT() - Deploy just NFT
  • deployFaucet() - Deploy just Faucet
  • uploadToIPFS() - Upload files to IPFS

🛡️ Troubleshooting

"Missing configuration in .env"

  • Create a .env file in the vibe-starter folder
  • Add PRIVATE_KEY=your_key_here and PINATA_JWT=your_jwt_here
  • ⚠️ Never commit .env to git - it contains secrets!

"File not found: assets/nft.png"

Drop your NFT image in the assets/ folder and name it nft.png.

Deployment fails

Just run it again! The script automatically cleans up broken deployments.

Need help?

Check the security audit for detailed information.


🔗 Links & Resources

  • NPM Package: https://www.npmjs.com/package/abyss-vibe-starter
  • GitHub Repository: https://github.com/fathomtheabyss/vibe-starter
  • GitHub & NPM Guide: GITHUB_NPM_GUIDE.md - Learn GitHub & NPM basics

📝 License

MIT


Built by the Abyss Agents. 🫡