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

moralis-liquidity-pairs

v1.0.10

Published

A React component to display token liquidity pairs using Moralis API

Readme

Moralis Liquidity Pairs

A React component library for displaying token liquidity pairs using the Moralis API.

Installation

npm install moralis-liquidity-pairs

Usage

Here's a complete example showing how to implement a search input for token addresses:

import React, { useState } from 'react';
import { MoralisLiquidityPairs } from 'moralis-liquidity-pairs';

function App() {
  const [tokenAddress, setTokenAddress] = useState('');
  const [chain, setChain] = useState<'eth' | 'bsc'>('eth');

  return (
    <div className="App">
      <header className="App-header">
        <h1>Moralis Liquidity Pairs</h1>
        <div className="search-container">
          <select 
            value={chain} 
            onChange={(e) => setChain(e.target.value as 'eth' | 'bsc')}
            style={{
              padding: '10px',
              marginRight: '10px',
              fontSize: '16px',
              borderRadius: '4px',
              border: '1px solid #ccc'
            }}
          >
            <option value="eth">Ethereum</option>
            <option value="bsc">BSC</option>
          </select>
          <input
            type="text"
            placeholder="Enter token address"
            value={tokenAddress}
            onChange={(e) => setTokenAddress(e.target.value)}
            style={{
              padding: '10px',
              width: '300px',
              fontSize: '16px',
              borderRadius: '4px',
              border: '1px solid #ccc'
            }}
          />
        </div>
        {tokenAddress && (
          <MoralisLiquidityPairs
            tokenAddress={tokenAddress}
            apiKey="YOUR_MORALIS_API_KEY"
            chain={chain}
          />
        )}
      </header>
    </div>
  );
}

Example Token Addresses

Ethereum Mainnet

  • PEPE Token: 0x6982508145454ce325ddbe47a25d4ec3d2311933
  • USDT: 0xdac17f958d2ee523a2206206994597c13d831ec7
  • USDC: 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
  • WETH: 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

BSC (Binance Smart Chain)

  • BUSD: 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56
  • CAKE: 0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82
  • WBNB: 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c

Features

  • Displays token liquidity pairs
  • Shows exchange logos
  • Displays token logos
  • Shows 24-hour price changes
  • Shows USD prices
  • Shows liquidity amounts
  • Includes a search input for token addresses
  • Supports multiple networks (Ethereum and BSC)

Network Support

Currently supported networks:

  • Ethereum Mainnet (eth)
  • BSC (Binance Smart Chain) (bsc)

Planned Network Support

  • Polygon
  • Avalanche
  • Arbitrum
  • Optimism

Requirements

  • React 16.8 or higher
  • Moralis API key

License

MIT