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

@thalalabs/safely

v0.4.5

Published

A highly visible CLI tool for managing multisig on Aptos.

Readme

safely

Manage your multisig accounts on Aptos & Movement safely through a secure CLI interface.

Quickstart

  1. Install the CLI:
npm install -g @thalalabs/safely
  1. Install Aptos CLI (if not already done):
brew update
brew install aptos
  1. Configure your Aptos profiles (if not already done) under a folder that works for you:
cd </path/to/your/preferred/folder>

aptos init --profile <profile_name>

# or with Ledger hardware wallet
aptos init --ledger --profile <profile_name>

See Aptos CLI docs for more details.

  1. Launch the interactive terminal UI at the same location:
safely

The interactive mode will guide you through:

  • Selecting or entering a multisig address
  • Choosing your profile for signing
  • Viewing pending proposals
  • Voting on or executing transactions

This is the recommended way to use safely - it provides a safe, guided experience with clear transaction details and simulation results.

For advanced usage and automation, see the Subcommands section below.

Subcommands

Note: The interactive mode (safely without arguments) is the recommended way to interact with multisig accounts. Subcommands are provided for advanced users who need automation or scripting capabilities.

> safely --help
Usage: safely [options] [command]

CLI tool for multisig management

Options:
  -V, --version       output the version number
  -h, --help          display help for command

Commands:
  account             Multisig account operations
  propose [options]   Propose a new transaction for a multisig
  vote [options]      Vote on a pending transaction
  execute [options]   Execute a multisig transaction
  proposal [options]  List proposals for a multisig
  simulate [options]  Simulate multisig transaction
  decode [options]    Decode multisig transaction bytes (experimental)
  encode [options]    Encode entry function payload (experimental)
  addresses           Manage the local address book (experimental)
  default             Multisig default values
  docgen [options]    Generate documentation for the CLI
  help [command]      display help for command

For detailed subcommand documentation and examples, see docs.md.

Development

Want to contribute? Here's how to set up the development environment:

  1. Fork the repository.

  2. Install dependencies:

pnpm install
  1. Build the project:
pnpm build
  1. Link for local testing:
pnpm link -g
  1. Format code:
pnpm format
  1. Run in development mode:
pnpm start

Community & Contributing

We welcome contributions from the entire Move ecosystem! Whether you're:

  • A protocol developer adding transaction templates
  • A developer improving core functionality
  • A user reporting issues or suggesting features

Your input helps make multisig management safer and more efficient for everyone.

Why safely?

In the wake of recent security incidents like the SafeWallet frontend compromise, it's become clear that web-based multisig interfaces pose significant risks. Web frontends can be modified by attackers, making transaction verification difficult or impossible for users. safely takes a different approach:

  • CLI-first: No web frontend means no risk of compromised interfaces
  • Verifiable: All transactions are transparent and can be inspected directly
  • Local Control: All operations run locally on your machine
  • Transaction Simulation: Display simulation results wherever possible
  • Human-Readable: Clear transaction descriptions and parameter explanations
  • Multi-Chain: Support for both Aptos and Movement
  • Hardware Security: Native Ledger support
  • Open Source: Community-driven development and quick iterations

License

MIT.