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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@orca-so/orca-mintlists

v1.0.3

Published

Orca Mintlists

Downloads

1,246

Readme

Orca Mintlists

This is the repository for managing SPL tokens frequently used by Orca which replaces the Mongo DB backed token database. Here we only manage lists of mint addresses, and there can be multiple lists managed in the repository in the ./assets/mintlists/ directory.

Mintlist management also relies on two other Orca packages:

  • token-sdk - SDK utilities and classes for working with tokens
  • mintlist-cli - CLI tool used by the mintlist repository for formatting and managing mintlists - e.g. scripts for adding and removing tokens

Automatic Deployments

  • Any changes made in this repository on the main branch will automatically be deployed to Orca's CloudFlare Pages orca-mintlists deployment.
  • The latest CF Pages deployment is configured to publish the /assets directory to https://mintlists.orca.so
  • Clients can include fetchMintlist or fetchOverrides methods from this repository to programmatically fetch the latest updates by using the @orca-so/orca-mintlists NPM package. This is what our UI does.

Mintlist Types

We currently maintain three mintlists which represent different types of business logic.

Orca Default List

orca-default.mintlist.json

This list is rarely updated, and mints on this are preferred as legitimate tokens when detecting for imitators - AKA major Solana ecosystem tokens.

Orca Extended List

orca-extended.mintlist.json

Tokens that have not been flagged as imitating other tokens, and tokens on this list will be displayed with no token warnings - AKA “whitelisted” tokens.

Orca Unsupported List

orca-unsupported.mintlist.json

Tokens that are unsupported by Orca and hidden excluded in the UI.

Managing tokens

Here are video guides on how to manage tokens.

How to add tokens to a mintlist:

  • Add Mint GitHub Action
  • Click on "Run Workflow" on the right-hand side
  • Branch: main
  • Select appropriate mintlist to modify
  • space separated mints to add: mint1 mint2 ...

How to remove tokens from a mintlist:

  • Remove Mint GitHub Action
  • Click on "Run Workflow" on the right-hand side
  • Branch: main
  • Select appropriate mintlist to modify
  • space separated mints to remove: mint1 mint2 ...

How to change(override) symbol or logo of tokens:

  • Check out this repository
    git clone [email protected]:orca-so/orca-mintlists.git
  • Make sure you have yarn installed, and then run yarn at the root.
    • https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable
  • Check out a new branch
    git checkout -b tmoc/new-override
  • Make the necessary changes to overrides.json
  • Run yarn fmt
  • Commit your changes and push to the repository
    git commit -am "Adding overrides for mint XYZ"
    git push origin tmoc/new-override
  • Navigate to the repository and create a PR for your branch
  • Review and merge as needed

Notes

  • The main branch cannot be directly modified. Please make changes in a separate branch and open a Pull Request.
  • There is a lint check that enforces alphabetical sorting of mints in both the mintlists and overrides file. You can use the yarn fmt command to automatically sort files after you make changes.