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

@bannynet/core-v6

v0.0.11

Published

On-chain composable avatar system for Juicebox 721 collections -- manages Banny character bodies, backgrounds, and outfit NFTs with layered SVG rendering. Bodies can be dressed with outfits and placed on backgrounds, all composed into fully on-chain SVG i

Downloads

995

Readme

Banny Retail

On-chain composable avatar system for Juicebox 721 collections -- manages Banny character bodies, backgrounds, and outfit NFTs with layered SVG rendering. Bodies can be dressed with outfits and placed on backgrounds, all composed into fully on-chain SVG images with base64-encoded JSON metadata.

Docs | Discord

Conceptual Overview

Banny is a composable NFT character system built on top of Juicebox 721 hooks. Each Banny is a body NFT (Alien, Pink, Orange, or Original) that can wear outfit NFTs and sit on a background NFT. The resolver composes these layers into a single SVG image, fully on-chain.

How It Works

1. A Juicebox 721 hook registers Banny721TokenUriResolver as its token URI resolver
   → All tokenURI() calls are forwarded to the resolver
   |
2. Users mint Banny body NFTs + outfit/background NFTs via the 721 hook
   → Bodies are the "base" layer; outfits and backgrounds are accessories
   |
3. Body owner calls decorateBannyWith(hook, bodyId, backgroundId, outfitIds)
   → Outfit and background NFTs are transferred to the resolver contract
   → Resolver tracks which body wears which outfits
   → Body's tokenURI now renders the full dressed composition
   |
4. Outfit lock (optional): lockOutfitChangesFor(hook, bodyId)
   → Freezes outfit and background changes for 7 days
   → Prevents moving currently equipped assets away through another body's decoration call
   → Proves the Banny's look is stable (useful for PFPs, displays)
   |
5. SVG content is stored on-chain via a two-step process:
   → Owner registers content hashes: setSvgHashesOf(upcs, hashes)
   → Anyone uploads matching content: setSvgContentsOf(upcs, contents)
   → Falls back to IPFS base URI if on-chain content not yet stored

Asset Categories

| Category ID | Name | Slot Rules | |-------------|------|------------| | 0 | Body | Base character. One of four types: Alien, Pink, Orange, Original. | | 1 | Background | Scene behind the Banny. One per body. | | 2 | Backside | Layer rendered behind the body. | | 3 | Necklace | Accessory (default provided if none attached). | | 4 | Head | Full head accessory. Blocks eyes, glasses, mouth, and headtop. | | 5 | Eyes | Eye style (defaults: alien or standard based on body type). | | 6 | Glasses | Eyewear layer. Blocked by head. | | 7 | Mouth | Mouth expression (default provided). Blocked by head. | | 8 | Legs | Lower body clothing. | | 9 | Suit | Full body one-piece. Blocks suit top and suit bottom. | | 10 | Suit Bottom | Lower suit piece. Blocked by full suit. | | 11 | Suit Top | Upper suit piece. Blocked by full suit. | | 12 | Headtop | Top-of-head accessory. Blocked by head. | | 13 | Hand | Held item layer. | | 14-17 | Special | Special suit, legs, head, and body overlays. |

Body Types

| UPC | Type | Color Palette | |-----|------|--------------| | 1 | Alien | Green tones (67d757, 30a220, 217a15, 09490f) with purple accents | | 2 | Pink | Pink tones (ffd8c5, ff96a9, fe588b, c92f45) | | 3 | Orange | Orange tones (f3a603, ff7c02, fd3600, c32e0d) | | 4 | Original | Yellow tones (ffe900, ffc700, f3a603, 965a1a) |

Architecture

| Contract | Description | |----------|-------------| | Banny721TokenUriResolver | The sole contract. Implements IJB721TokenUriResolver to serve fully on-chain SVG token URIs for any Juicebox 721 hook. Manages outfit attachment, background assignment, outfit locking, on-chain SVG storage, and layered SVG rendering. Inherits Ownable, ReentrancyGuard, ERC2771Context, IERC721Receiver. |

Interface

| Interface | Description | |-----------|-------------| | IBanny721TokenUriResolver | Public API: tokenUriOf, svgOf, decorateBannyWith, lockOutfitChangesFor, assetIdsOf, namesOf, userOf, wearerOf, SVG management, metadata management, plus all events. |

Install

npm install @bannynet/core-v6

If using Forge directly:

forge install

Develop

Requires via_ir = true in foundry.toml due to stack depth in SVG composition.

| Command | Description | |---------|-------------| | forge build | Compile contracts (requires via-IR) | | forge test | Run all tests (14 test files: functionality, attacks, decoration flows, fork integration, transfer lifecycle, audit gaps, QA, regressions) | | forge test -vvv | Run tests with full trace |

Repository Layout

src/
  Banny721TokenUriResolver.sol                  # Sole contract (~1,428 lines)
  interfaces/
    IBanny721TokenUriResolver.sol               # Public interface + events
test/
  Banny721TokenUriResolver.t.sol                # Unit tests
  BannyAttacks.t.sol                            # Security/adversarial tests
  DecorateFlow.t.sol                            # Decoration flow tests
  Fork.t.sol                                    # Fork integration tests
  OutfitTransferLifecycle.t.sol                 # Transfer lifecycle tests
  TestAuditGaps.sol                             # Audit gap coverage (meta-tx, SVG edge cases)
  TestQALastMile.t.sol                          # QA tests (gas, round-trip, fallback)
  regression/
    ArrayLengthValidation.t.sol                 # Input validation regression
    BodyCategoryValidation.t.sol                # Body category regression
    BurnedTokenCheck.t.sol                      # Burned token regression
    CEIReorder.t.sol                            # CEI ordering regression
    ClearMetadata.t.sol                         # Metadata clearing regression
    MsgSenderEvents.t.sol                       # Event emission regression
    RemovedTierDesync.t.sol                     # Removed tier desync regression
script/
  Deploy.s.sol                                  # Sphinx multi-chain deployment
  Drop1.s.sol                                   # Outfit drop deployment
  Add.Denver.s.sol                              # Denver-specific deployment
  helpers/
    BannyverseDeploymentLib.sol                 # Deployment artifact reader
    MigrationHelper.sol                         # Migration utilities

Permissions

| Action | Who Can Do It | |--------|--------------| | decorateBannyWith | Body owner (must also own or have worn-by-body access to outfits/backgrounds) | | lockOutfitChangesFor | Body owner | | setSvgHashesOf | Contract owner only | | setSvgContentsOf | Anyone (content validated against registered hash) | | setProductNames | Contract owner only | | setMetadata | Contract owner only |

Risks

  • Outfit custody: Attached outfits and backgrounds are held by the resolver contract. If the contract has a bug in the return logic, assets could be stuck.
  • 7-day lock is fixed. Cannot be shortened or cancelled once set. The lock duration is hardcoded.
  • SVG immutability. Once SVG content is stored on-chain for a UPC, it cannot be changed. A mistake in the content requires deploying a new resolver.
  • Hash registration is owner-only, but content upload is not. Anyone can call setSvgContentsOf as long as the content matches the registered hash. This is by design for lazy uploads.
  • Single resolver per hook. The resolver is set on the 721 hook and applies to all tiers. Different collections would need different resolver instances.