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

colorwallet

v1.0.0-rc

Published

Color Wallet is the user interface for the Color blockchain.

Downloads

4

Readme

Color-Wallet logo — spaceship blasting off

Welcome to Color Wallet!

CircleCI

👋 Welcome to Color Wallet, the official wallet and UI for the Color Platform.

⚠️ This is beta software. DO NOT enter your Color fundraiser seed into Color Wallet. We will not ask for it and this is considered highly unsafe.

Development Dependencies

Install the following dependencies if you wish to run Color Wallet on developer mode or contribute.

Node

Color Wallet requires Node.js >=10.13.0. If you have a different version of Node.js installed, you can use n to install the correct version. The following command will use n to install it alongside your current version of Node.js.

npm i -g n && n 10.13.0

Yarn

Yarn is a JS package manager we use to manage Color Wallet's dependencies. Download it here.

Docker

To run a local tesnet for Color Wallet you will need Docker installed. You can download it here.

Ledger Color App

IMPORTANT: Only use Ledger devices that you bought factory new or trust fully.

Color Wallet supports sending transactions through the Color app for Ledger Nano hardware wallet. To install the Cølor app on your device you'll have to:

  1. Download the Ledger Live app here
  2. Connect your Ledger via USB and update to the latest firmware
  3. Go to the Ledger Live App Store, and download the Cølor application (this can take a while). Note: You may have to enable Dev Mode in the Ledger Live Settings to be able to download the Cølor application
  4. Navigate to the Cølor app on your Ledger device

Check out Color Wallet

With Node, Yarn and Docker installed, you're ready to check out the source code:

git clone https://github.com/ColorPlatform/color-wallet.git
cd color-wallet
yarn install

Color Wallet Development

Generate SSL certificates

First generate some SSL certificates and add them to your trusted certificates.

yarn certificates

Run local testnet

You can simply start a docker based testnet and the frontend.

yarn startlocal

This will create a rich account. You need to import that account into Color Wallet:

  • Sign In
  • Use an existing address
  • Recover with backup code
  • Write Account Name & Password on your own wish
  • Use mnemonic (Seed Phrase): release endorse scale across absurd trouble climb unaware actor elite fantasy chair license word rare length business kiss smoke tackle report february bid ginger

You should now have a bunch of color to play with.

Deploy

Create the bundle to deploy Color Wallet you can run:

yarn build:ui

If you want to set a particular Stargate (Color SDK REST API) or Tendermint's RPC endpoints:

STARGATE=<https://StargateAddress:port> RPC=<https://RPCAddress:port> yarn build:ui

Release

Color Wallet has a automated release process. Every night the CI creates a new release PR. To release manually, run

yarn release

Testing

If you would like to run all the tests you can run:

yarn test

Unit tests

Color Wallet uses Jest to run unit tests. You can run all the unit tests with the following command:

yarn test:unit

For a single test file (e.g. PageValidator.spec.js) run the unit tests like this to watch the tests whenever there are changes:

yarn watch PageValidator

End to end tests

If you want to run them locally first start a testnet:

MAX_NODES=4 yarn testnet:start

Then run the tests:

yarn test:e2e

To run only some tests, provide a filter:

yarn test:e2e:serve
yarn test:e2e:local --filter send.spec.js

To run the e2e tests on multiple browsers use Browserstack. You must set the environment variables BROWSERSTACK_USERNAME and BROWSERSTACK_ACCESS_KEY aquired from Browserstack first.

yarn test:e2e:serve
yarn test:e2e:browserstack

Finally stop the testnet when you are done:

yarn testnet:stop

Code coverage

To check test coverage locally run following. It will spin up a webserver and provide you with a link to the coverage report web page.

yarn test:coverage

Flags

A list of all environment variables and their purpose:

| Variable | Values | default | Purpose | |-----------------|-----------------------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------| | NODE_ENV | production, development | | | | CI | true, false | false | Adds better structured output, makes a screenshot and adds logs to files (used on CircleCI). | | ALLOW_CONSOLE | true, false | false | Unit tests fail if they use console.error or console.warn. To see the initial use/occurences of those callings, you can escape this behavior using this flag. |

Thanks