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

movemind-sdk

v2.0.0

Published

**MoveMind SDK** is offering seamless **liquidity** and **APR insights** powered by advanced **AI-driven analysis with MCP Services**. Developers can use this SDK to integrate dynamic protocol data and actionable insights into their dApps dashboard as wel

Readme

MoveMind SDK

MoveMind SDK is offering seamless liquidity and APR insights powered by advanced AI-driven analysis with MCP Services. Developers can use this SDK to integrate dynamic protocol data and actionable insights into their dApps dashboard as well as call in Terminal for human readable format on Aptos.

Features

  • ⛓️ Move Chains Supported: Aptos

  • 🔍 Liquidity Insights: Fetch real-time liquidity and price data for any Aptos pool.

  • 📊 APR Insights: Analyze staking APR, delegator activity, and more.

  • 🤖 MCP AI-Powered Analysis: Insights delivered through cutting-edge AI systems.

  • 💡 Ready-to-Use Formatting: Output is preformatted into tables for developer ease.

Installation

Install the SDK via npm:

npm install movemind-sdk

Dependencies

  • Pyth Network: Real-time price feeds for multiple blockchains.

  • OpenAI API is needed to be feeded in your Authorization: Bearer OPEN_AI_API_KEY at src/defiLens.ts analysis via MCP Services for contextual insights.

Getting Started

Here’s how to get started with the SDK in just a few steps:

1. Import and Initialize the SDK

import { MoveMindSDK } from "movemind-sdk";

// Initialize the SDK with your preferred environment (testnet or mainnet)
const sdk = new MoveMindSDK("testnet"); // Use "mainnet" for production

2. Query Liquidity Insights

Fetch liquidity data for any Aptos pool:

const liquidityInsight = await sdk.queryDefiLens(
  "What is the total liquidity in the pool?",
  "0xYourValidLiquidityPoolAddress", // Replace with a valid Aptos pool address
  "aptUsd", // Specify the price feed (APT/USD)
  "liquidity"
);

console.log(liquidityInsight); // Output: Formatted table showing liquidity details

3. Query APR Insights

Analyze APR and delegators for a staking pool:

const aprInsight = await sdk.queryDefiLens(
  "What is the APR for staking?",
  "0xYourValidStakingPoolAddress", // Replace with a valid staking pool address
  "btcUsd", // Specify the price feed (BTC/USD)
  "apr"
);

console.log(aprInsight); // Output: Formatted table showing APR details

Example Output

Liquidity Insights

================= Liquidity Insights =================
Metric                  Value
------------------------------------------------------
Total Liquidity         103,557,746,887 AptosCoin
APT/USD Price           $4.54855783
Liquidity (USD)         $471,176,806,024.78
======================================================

APR Insights

================= APR Insights =================
Metric                  Value
------------------------------------------------------
APR                     0%
BTC/USD Price           $81663.08071848
Delegators              None
======================================================

Configuration

The SDK automatically uses preconfigured settings for both testnet and mainnet environments. Simply specify the environment (testnet or mainnet) during initialization.

Contributing

Contributions are welcome! If you’d like to enhance the SDK, please fork the repository and submit a pull request.

License

This project is licensed under the MIT License.