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

tenderly-wizard-v6

v6.0.10

Published

A tool for managing virtual testnets using Tenderly

Readme

tenderly-wizard-v6 (Roles v2 / Ethers v6)

Overview

The tenderly-wizard-v6 is a CLI tool that streamlines the management of Tenderly virtual testnets. Key features include:

• Deploy Safe addresses that remain consistent across chains • Deploy and configure role management contracts • Execute whitelisting • Create, fork, manage and preserve virtual testnet states through snapshots

tenderly-wizard-v6: Local Development and Testing

This guide covers how to develop, pack, and test the tenderly-wizard-v6 package locally.

Prerequisites

  • Node.js (version 14 or later)
  • npm (usually comes with Node.js)
  • NPM_TOKEN with read access to the @thirdguard npm organization
  • .env file in the root of the project by using the @thirdguard/config package.

Local Installation and Testing

  1. Add the NPM_TOKEN to your shell environment variables by running:

    export NPM_TOKEN=<your-npm-token>

    or

    # using NPM_TOKEN as an input argument
    source ./set-npm-token.sh <your-npm-token>
  2. Install the package globally:

    ./build-and-install.sh
  3. Run the CLI:

    tenderly-wizard-v6
  4. To uninstall:

    npm uninstall -g tenderly-wizard-v6

Basic Usage

  • Once The Tenderly Wizard is installed globally, in terminal navigate to directory of the repo you would like to use for testing.
  • NOTE FOR WHITELISTING:
    • The access-control-safes-v2 folder needs to be in the same folder structure as the directory you would like to use this in:
    - folder
    --- access-control-safes-v2
    --- repo-you-want-to-run-this-wizard-in
    • The reason for this is that the tenderly-wizard-v6 will use that repo to access the whitelisting scripts
  1. To start the tenderly wizard run:
tenderly-wizard-v6
  1. The wizard will display a list of options, to get started select any of the 2 options:

    • +CREATE TESTNET & SETUP+ - Creates a new testnet, sets up Safes and Roles contracts and executes whitelisting
    • +CREATE TESTNET+ - Creates a new testnet
  2. Select an existing testnet to manage or activate it. Activating a testnet will update the .env file with the testnet's RPC URL, chain ID, Testnet UUID and current snapshot ID.

Development

  1. Follow the steps in the Local Installation and Testing section to set up the environment.

  2. Ensure you have the IS_DEV environment variable set to true in the .env file.

  3. Make your changes to the source code in the src directory.

  4. Run yarn start to start the wizard.

Publishing to npm

To publish a new version of the package to npm:

  1. Ensure your git working directory is clean (no uncommitted changes).

  2. Make the publish script executable (first time only):

    chmod +x publish.sh
  3. Run the publish script:

    ./publish.sh
  4. The script will:

    • Verify your working directory is clean
    • Display current package version and ethers dependency version
    • Prompt you to select version bump type (patch or minor)
    • Build the project
    • Update the version in package.json
    • Create a git commit and tag
    • Publish to npm with the appropriate tag (v5-latest or v6-latest)
  5. Important notes:

    • The script enforces version alignment with ethers.js:
      • For ethers v5.x.x, package version must start with "5."
      • For ethers v6.x.x, package version must start with "6."
    • The npm tag is automatically set based on the ethers version:
      • v5.x.x uses "v5-latest"
      • v6.x.x uses "v6-latest"
    • To install globally after publishing:
      • For Roles V1 (ethers v5): npm i -g tenderly-wizard
      • For Roles V2 (ethers v6): npm i -g tenderly-wizard-v6

Troubleshooting

  • If you encounter issues, try clearing npm's cache:

    npm cache clean --force
  • For verbose logging, run:

    NODE_DEBUG=module tenderly-wizard-v6

Gotchas

  • Creating or Forking a new testnet will activate it by default.
  • The Apply Whitelist option will only work if the Safe and Role contracts have been deployed and configured.
  • The Deploy Safes option fails when run in isolation on Base testnets with a an unknown call2 error, use the +CREATE TESTNET & SETUP+ option instead.

Notes

  • Always test thoroughly before publishing to npm.
  • Remember to gitignore the .tgz files created by npm pack.