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

@quickswap-defi/token-list

v2.0.8

Published

Official Quickswap token list - Multi-chain DeFi token metadata

Downloads

489

Readme

@quickswap-defi/token-list

npm version npm downloads License: GPL-3.0 Security

Official QuickSwap token list for multi-chain DeFi applications. Includes curated token metadata for Polygon, Base, zkEVM, and other supported networks.


🚨 Migration Notice

Former package name: quickswap-token-lists (deprecated)
New package name: @quickswap-defi/token-list


Installation

# npm
npm install @quickswap-defi/token-list

# pnpm
pnpm add @quickswap-defi/token-list

# yarn
yarn add @quickswap-defi/token-list

Usage

import tokenList from '@quickswap-defi/token-list';

// Access token list data
console.log(tokenList.name);     // "Quickswap Default List"
console.log(tokenList.version);  // { major: 2, minor: 0, patch: 0 }
console.log(tokenList.tokens);   // Array of token metadata

// Filter tokens by chain
const polygonTokens = tokenList.tokens.filter(
  token => token.chainId === 137
);

// Find specific token
const usdc = tokenList.tokens.find(
  token => token.symbol === 'USDC' && token.chainId === 137
);

Token Listing Process

⚠️ IMPORTANT: Token listing is NOT automatic. We DO NOT accept external Pull Requests or Issues for token listings without prior Business Development approval.

Listing Requirements

To ensure the quality and safety of our list, your token MUST meet ALL of these criteria:

  1. Total Value Locked (TVL): Minimum $100k USD
  2. Security Audit: Valid third-party security audit report
  3. Trading Volume: Consistent daily volume demonstrating real usage
  4. Token Verification: Verified contract on blockchain explorer
  5. Project Legitimacy: Active community, clear documentation, and transparent governance

How to Request a Listing

You must contact our BD team directly to initiate the process. Do not open a GitHub Issue.

  • Telegram: QuickSwap Official Community

  • Only after BD approval, our technical team will provide instructions on how to submit your token metadata.

  • Unsolicited PRs will be closed immediately.


Supported Networks

| Network | Chain ID | |---------|----------| | Polygon | 137 | | Ethereum | 1 | | Base | 8453 | | Polygon zkEVM | 1101 | | Manta | 169 | | IMX | 13371 | | X1 | 195 | | Dogechain | 2000 | | And more... | See src/tokens/ |

Development (Maintainers Only)

Prerequisites

  • Node.js >= 18
  • npm >= 8

Setup

# Install dependencies
npm ci

# Run tests
npm test

# Build token list
npm run build

# Output: build/quickswap-default.tokenlist.json

Security

NPM Provenance

All published versions include NPM Provenance for supply chain security.

Verify authenticity:

npm view @quickswap-defi/token-list --json | jq '.provenance'

Manual publish:

# Bump version
npm version patch  # or minor/major

# Publish with provenance
npm publish --access public --provenance

License

GPL-3.0-or-later - See LICENSE

Links

Maintained by: QuickSwap Team