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

nightfall-crypto-access-exit-check

v0.2.4

Published

Read-only crypto wallet offboarding and access-revocation verifier for Safe smart accounts, AI agents, and token approvals

Downloads

538

Readme

NightFall Crypto Access Exit Check

Prove that a former AI agent, bot, employee, or contractor is actually revoked.

Read-only wallet offboarding verification for supported Safe smart-account permissions and token approvals. The scanner reports exactly which supported permission paths remain, which checks passed, and which checks could not be verified.

npm GitHub release

Need a verified exit report now?

Buy the $49 Crypto Access Exit Verification via PayPal

You receive a human-readable report for one treasury / subject pair covering the supported checks below. No seed phrase or private key is required.

After payment, send the public treasury address, subject address, relevant contract addresses, and authorized scope to [email protected].

Who this is for

  • Teams offboarding AI agents, bots, employees, contractors, or automation accounts
  • Safe smart-account and treasury operators
  • Wallet-security, account-abstraction, and Web3 engineering teams
  • Security or finance leads who need evidence that supported on-chain permissions were actually removed

What it checks

  • Safe owner membership
  • Safe enabled modules
  • Safe Allowance Module delegates and token spending limits
  • ERC-20 allowances
  • ERC-721 operator approvals
  • ERC-1155 operator approvals

The scanner never signs transactions, never requests private keys, and never moves funds.

Why this exists

Removing a signer or disabling an account is not always the same as removing every permission that address received. A departing subject may have authority through a separate Safe module, allowance, token approval, or other supported on-chain path.

This project focuses specifically on post-revocation verification: after the offboarding procedure is supposed to be finished, what supported authority still remains?

Verdicts

  • revoked — every selected supported check is absent
  • residual_access_found — at least one selected supported permission remains
  • unable_to_verify — at least one selected check could not be verified and none showed residual access

Unknown or unverifiable checks fail closed to unable_to_verify; they do not produce a reassuring green result.

Install and run

npm install nightfall-crypto-access-exit-check
npx nightfall-crypto-exit-check --input request.json --rpc https://mainnet.base.org --format markdown

Repository development mode:

npm install
npm run scan -- --input examples/base-usdc-smoke.json --rpc https://mainnet.base.org

Input JSON:

{
  "treasury": "0x...",
  "subject": "0x...",
  "safe": true,
  "safeAllowance": {
    "network": "8453",
    "tokens": ["0x..."]
  },
  "erc20": ["0x..."],
  "erc721": [],
  "erc1155": []
}

For supported Safe deployments, safeAllowance.network resolves the released Allowance Module address from Safe's official deployment package. You may instead supply an explicit safeAllowance.module address.

Only include contracts you are authorized to assess. Public-chain reads are non-custodial and read-only.

Customer-ready Markdown output

See:

  • examples/base-usdc-smoke-report.md for a live Base/USDC ERC-20 allowance example
  • examples/base-safe-allowance-smoke-report.md for a live Base Safe Allowance Module example

Need a broader security architecture review?

NightFall Technologies also offers a fixed-scope Security Architecture Risk Sprint for SaaS, AI, fintech, infrastructure, and technology teams: https://www.nightfalltechnologies.com/services/security-architecture-sprint

Verification

npm test -- --no-color
npm run typecheck
npm run build

CI runs the same verification on every push to main and on pull requests.