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

@d13co/escreg

v0.0.1

Published

CLI for the Escreg on-chain escrow registry on Algorand

Readme

@d13co/escreg

npm

Command-line client for the Escreg on-chain escrow registry on Algorand.

Quick start

# Run directly with npx (no install needed)
npx @d13co/escreg lookup ADDR1,ADDR2

# Or install globally
npm install -g @d13co/escreg
escreg lookup ADDR1,ADDR2

Build from source

npm install
npm run build:ts              # compile TypeScript only
npm run build                 # compile + build standalone executables via Bun

Commands

register

Register application IDs with the Escreg contract.

escreg register 123,456,789
escreg register --file app-ids.txt --concurrency 4 --skip-check

lookup

Look up addresses to find registered application IDs.

escreg lookup ADDR1,ADDR2
escreg lookup --file addresses.txt --concurrency 4

convert

Convert application IDs to escrow addresses (local, no network call).

escreg convert 123,456,789
escreg convert --file app-ids.txt

deposit-credits

Deposit MBR credits before registering app IDs (amount in Algos).

escreg deposit-credits 1                    # deposit 1 Algo
escreg deposit-credits 0.5 --creditor ADDR  # credit a different account

credits

Check MBR credit balances.

escreg credits ADDR1,ADDR2
escreg credits --file addresses.txt
escreg credits --all

withdraw-credits

Withdraw all remaining MBR credits.

escreg withdraw-credits

withdraw

Withdraw funds from the contract (admin only, amount in Algos).

escreg withdraw 1

Configuration

Defaults to the Fnet deployment (app ID 16954321, Nodely Fnet endpoint). Override via CLI flags, environment variables, or a .env file. Set ENV to load environment-specific files (e.g. ENV=testnet loads .env.testnet).

| Variable | Flag | Default | Description | |---|---|---|---| | ALGOD_HOST | --algod-host | fnet-api.4160.nodely.dev | Algorand node host | | ALGOD_PORT | --algod-port | 443 | Algorand node port | | ALGOD_TOKEN | --algod-token | (empty) | Algorand node token | | APP_ID | --app-id | 16954321 | Escreg application ID | | MNEMONIC | --mnemonic | | Account mnemonic for write operations | | ADDRESS | --address | | Account address (for rekeyed accounts) | | CONCURRENCY | --concurrency | 1 | Parallel request count |

All commands support --debug for verbose logging.