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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cool-wallet

v1.0.0

Published

Coolest Wallet in the World

Readme

Dynamic Global Wallet Package

This repository provides the base configuration for building a wallet package powered by Dynamic Global Wallet, supporting both EVM and Solana ecosystems.

Getting Started

Follow these steps to set up your wallet package:

  1. Clone the Repository

    git clone <repository-url>
    cd <repository-folder>
  2. Install Dependencies

    npm install
  3. Configure Your Wallet Package

    Update the following fields to customize your wallet package:

    In package.json

    • wallet-package-name: Your wallet package’s name.
    • wallet-description: A brief description of your wallet.
    • wallet-author: The author’s name or organization.

    In src/lib/config.ts

    • wallet-name: Display name of the wallet.
    • wallet-icon: URL or base64 encoded image of your wallet’s icon.
    • wallet-url: URL of your wallet’s configured domain in the Dynamic dashboard.
    • environment-id: Environment ID of your project in the Dynamic dashboard.

Once completed, your wallet package is configured and ready for testing and publishing.


Testing Your Wallet

After configuring your wallet package, test it locally using a Wallet SDK of your choice. This example demonstrates testing with the create-dynamic-app package:

  1. Build Your Wallet Package

    npm run build
  2. Pack Your Wallet Package

    npm pack

    This will create a .tgz file in your directory.

  3. Create a New Project In a separate directory, initialize a new project:

    npx create-dynamic-app@latest

    Select ReactJS or NextJS as your project type.

  4. Install Your Wallet Package

    npm install /path/to/your-wallet-package-1.0.0.tgz
  5. Import Your Wallet

    • For EVM Wallet:

      import "<wallet-package-name>/eip6963";
    • For Solana Wallet:

      import "<wallet-package-name>/solana-standard";
  6. Use Your Wallet Your wallet is now ready to use within the project.


Publishing Your Wallet

When your wallet package is ready for distribution, follow these steps:

  1. Update Package Version

    npm version patch  # for bug fixes
    # or
    npm version minor  # for new features
    # or
    npm version major  # for breaking changes
  2. Build Your Wallet Package

    npm run build
  3. Publish Your Wallet Package

    npm publish

Ensure your package meets the npm publishing guidelines before publishing.


For more details or support, refer to the documentation or contact the Dynamic Global Wallet team.