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

plugin-nodeflare

v0.1.0

Published

ElizaOS plugin for NodeFlare — read on-chain data & agent-intelligence (balances, portfolio, token approvals, tx simulation, wallet reports, token safety) across 23 EVM chains, including young chains (Robinhood, Plasma, Ink, Zircuit) the big indexers skip

Readme

plugin-nodeflare

Read on-chain data and agent-intelligence across 23 EVM chains from your ElizaOS agent — including young chains (Robinhood, Plasma, Ink, Zircuit) the big indexers skip. Powered by NodeFlare.

Read-only. No wallet, no private key. Works out of the box on the free public tier; add an API key for higher limits and heavy methods. Complements @elizaos/plugin-evm (which signs & sends) — this plugin is the read/intelligence side.

Why

Most data providers cover the same dozen big chains and stop. NodeFlare runs its own nodes on 23 EVM chains and exposes higher-level agent-intelligence on top of raw RPC: know a wallet, screen a token, check approvals, pre-flight a transaction — in one call, over chains other tools leave as empty shells.

Install

npm install plugin-nodeflare
# or:  elizaos plugins add plugin-nodeflare

Add it to your character/agent:

import { nodeflarePlugin } from "plugin-nodeflare";

export const character = {
  name: "MyAgent",
  plugins: [nodeflarePlugin],
  // ...
};

Configuration

Zero-config on the public tier. For higher rate limits and heavy methods (token discovery, deep token-safety, full approval scans), set an API key — get one free at nodeflare.app/sign-up:

NODEFLARE_API_KEY=nf_live_...

The plugin reads it from runtime.getSetting("NODEFLARE_API_KEY") or the environment.

Actions (14)

Agent-intelligence

| Action | Does | |---|---| | NODEFLARE_WALLET_REPORT | Know any wallet: balances + USD total + approvals, in one call | | NODEFLARE_TOKEN_SAFETY | Screen an ERC-20: ownership, risk signals, honeypot/rug score | | NODEFLARE_BALANCES | Native + ERC-20 balances across chains (optional token discovery) | | NODEFLARE_PORTFOLIO | USD portfolio value + per-chain breakdown | | NODEFLARE_ALLOWANCES | Active token approvals / revoke-risk (flags unlimited) | | NODEFLARE_SIMULATE_TX | Pre-flight a tx: revert reason, gas, asset changes |

RPC reads

| Action | Does | |---|---| | NODEFLARE_LIST_CHAINS | The 23 supported chains + IDs | | NODEFLARE_BLOCK_NUMBER | Latest block on a chain | | NODEFLARE_GAS_PRICE | Current gas price (gwei) | | NODEFLARE_GET_TRANSACTION | Look up a tx by hash | | NODEFLARE_NATIVE_BALANCE | Native-token balance of an address | | NODEFLARE_ERC20_BALANCE | ERC-20 balance for a holder | | NODEFLARE_TOKEN_METADATA | Name / symbol / decimals / supply | | NODEFLARE_RPC_QUERY | Any read-only JSON-RPC method (send/sign are rejected) |

Example prompts

  • "Give me a report on wallet 0xd8dA…."
  • "Is 0x… on Base a honeypot?"
  • "What approvals has 0x… granted — any unlimited?"
  • "Discover every token 0x… holds on Robinhood Chain."
  • "Simulate calling 0x… with data 0x… on Base — will it revert?"
  • "What's the latest block on Sonic?"

Supported chains (23)

Ethereum · Base · BNB Chain · Arbitrum One · Optimism · HyperEVM · Avalanche · Unichain · Sonic · Polygon · Linea · Mantle · Zircuit · Robinhood · XLayer · Soneium · Arbitrum Nova · BOB · Ink · Cronos · Mode · Sei · Plasma

Address a chain by slug, name, or numeric chain ID.

Safety

Every action is read-only — nothing signs or broadcasts. NODEFLARE_SIMULATE_TX only simulates; NODEFLARE_RPC_QUERY rejects eth_sendRawTransaction / eth_sign* / personal_*. The plugin never holds keys and only takes public on-chain identifiers as input.

Links

License

MIT