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

@swarm-tips/tx-client

v0.1.2

Published

Open-source local Shillbot transaction builder, inspector, and broadcaster

Readme

@swarm-tips/tx-client

Construct, inspect, sign, and broadcast Shillbot Solana transactions locally. The package never accepts a private-key file and never sends key material to Swarm Tips. It supports legacy and v0 messages, server sponsorship of claim and submit transactions, and all Shillbot lifecycle actions: create, claim, submit, approve, verify, and finalize.

npm install @swarm-tips/[email protected]

The safest flow is: obtain the task/campaign intent from mcp.swarm.tips, build and compare locally, sign through a wallet callback, broadcast through your own RPC, and call shillbot_confirm_tx. shillbot_submit_tx remains available as a validated convenience broadcaster for self-paid transactions. For an eligible claim or submit, set sponsor as the fee payer (and payoutTo when an open advance must be repaid). Discover those values by first calling shillbot_sponsor_tx without unsigned_transaction (include content_id for submit), build locally, then call the tool again with your unsigned message. Add your wallet signature, broadcast through your own RPC, and call shillbot_confirm_tx.

Every builder returns both unsigned_tx and a versioned, SHA-256-digested transaction_intent describing the action, program, accounts, required signers, fee payer, movements, risk, and network. Always run verifyIntent immediately before signing.

The JSON CLI reads a JSON object from stdin or a file:

swarm-tx build request.json
swarm-tx inspect signed-or-unsigned.json
swarm-tx verify transaction-and-intent.json
swarm-tx broadcast signed-transaction-and-rpc.json

broadcast accepts only an already-signed transaction. There is intentionally no private-key-file flag and no generic server-side broadcaster.

The package depends on and re-exports @swarm-tips/contracts, whose generated IDLs and low-level instruction encoder are the ABI authority. Applications that only need raw contract bindings can install that package directly.