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

@paratro/cli

v1.2.0

Published

CLI for Paratro MPC Wallet Gateway

Readme

@paratro/cli

npm License: MIT

Command-line interface for Paratro MPC Wallet Gateway — manage wallets, accounts, assets and transfers from your terminal.

Features

  • Wallet Management — Create, list and inspect MPC wallets
  • Multi-Chain Accounts — Create accounts on Ethereum, Polygon, Avalanche, Solana and more
  • Transfer Funds — Send USDC, USDT and other tokens with one command
  • Transaction History — Query and filter transactions by wallet, chain or account
  • Config Management — Store API credentials locally in ~/.paratro/config.json
  • x402 Payments — Track X402_SIGN and X402_SETTLE transaction types

Installation

npm install -g @paratro/cli

Or run directly without installing:

npx @paratro/cli --help

Setup

# Set API credentials
paratro config set --api-key <your-api-key> --api-secret <your-api-secret>

# Set environment
paratro config set --env sandbox        # sandbox (testnet)
paratro config set --env production     # production (mainnet)

# Or use a custom endpoint
paratro config set --base-url https://your-api.example.com

# View current configuration
paratro config get

# Show config file path
paratro config path

Commands

Wallet

# Create a new wallet
paratro wallet create --name "Treasury" --description "Main treasury wallet"

# Get wallet details
paratro wallet get <wallet_id>

# List all wallets
paratro wallet list
paratro wallet list --page 2 --page-size 5

Account

# Create an account under a wallet
paratro account create --wallet <wallet_id> --chain ethereum --label "Hot Wallet"

# Supported chains: ethereum, bsc, polygon, avalanche, arbitrum, optimism, tron, bitcoin, solana

# Get account details
paratro account get <account_id>

# List accounts for a wallet
paratro account list --wallet <wallet_id>

Transfer

# Send funds
paratro transfer send \
  --from 0xYourAddress... \
  --to 0xRecipient... \
  --chain ethereum \
  --token USDC \
  --amount 100.50 \
  --memo "Invoice #1234"

# Get transaction details
paratro transfer get <tx_id>

# List transactions
paratro transfer list --wallet <wallet_id>
paratro transfer list --chain ethereum --page 1 --page-size 20

Other

# Show version
paratro version
paratro -v

# Show help
paratro help
paratro --help

Example Workflow

# 1. Configure
paratro config set --api-key pk_test_xxx --api-secret sk_test_xxx --env sandbox

# 2. Create wallet
paratro wallet create --name "Agent Wallet"

# 3. Wait for wallet to be ready (status=ACTIVE, key_status=ACTIVE)
paratro wallet get <wallet_id>

# 4. Create Ethereum account
paratro account create --wallet <wallet_id> --chain ethereum --label "USDC Account"

# 5. Check address
paratro account get <account_id>

# 6. Send USDC
paratro transfer send --from <address> --to <recipient> --chain ethereum --token USDC --amount 10

# 7. Check transaction
paratro transfer get <tx_id>

Configuration

Stored in ~/.paratro/config.json:

{
  "api_key": "pk_test_xxx",
  "api_secret": "sk_test_xxx",
  "env": "sandbox"
}

| Field | Description | |-------|-------------| | api_key | Your Paratro API key | | api_secret | Your Paratro API secret | | env | sandbox or production | | base_url | Custom API endpoint (overrides env) |

Supported Chains

| Chain | Value | Type | |-------|-------|------| | Ethereum | ethereum | EVM | | BNB Smart Chain | bsc | EVM | | Polygon | polygon | EVM | | Avalanche | avalanche | EVM | | Arbitrum | arbitrum | EVM | | Optimism | optimism | EVM | | Tron | tron | TVM | | Bitcoin | bitcoin | UTXO | | Solana | solana | SVM |

Requirements

  • Node.js >= 18

Links

License

MIT