Official QuickSwap token list for multi-chain DeFi applications. Includes curated token metadata for Polygon, Base, zkEVM, and other supported networks.
Former package name: quickswap-token-lists (deprecated)
New package name: @quickswap-defi/token-list
# npm
npm install @quickswap-defi/token-list
# pnpm
pnpm add @quickswap-defi/token-list
# yarn
yarn add @quickswap-defi/token-listimport 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
);
⚠️ IMPORTANT: Token listing is NOT automatic. We DO NOT accept external Pull Requests or Issues for token listings without prior Business Development approval.
To ensure the quality and safety of our list, your token MUST meet ALL of these criteria:
- Total Value Locked (TVL): Minimum $100k USD
- Security Audit: Valid third-party security audit report
- Trading Volume: Consistent daily volume demonstrating real usage
- Token Verification: Verified contract on blockchain explorer
- Project Legitimacy: Active community, clear documentation, and transparent governance
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.
| 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/ |
- Node.js >= 18
- npm >= 8
# Install dependencies
npm ci
# Run tests
npm test
# Build token list
npm run build
# Output: build/quickswap-default.tokenlist.jsonAll 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 --provenanceGPL-3.0-or-later - See LICENSE
- NPM Package: https://www.npmjs.com/package/@quickswap-defi/token-list
- GitHub: https://github.com/QuickSwap/quickswap-default-token-list
- QuickSwap: https://quickswap.exchange
- Discord: https://discord.com/invite/cSbHcjBSWM
- Twitter: https://twitter.com/QuickswapDEX
Maintained by: QuickSwap Team