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

@deaura/limitless-sdk

v1.0.5

Published

Official JavaScript & TypeScript SDK for the Limitless ecosystem — enabling token creation, liquidity management, and Solana on-chain interactions with ease.

Readme

Limitless SDK

The official JavaScript & TypeScript SDK for integrating with the Limitless ecosystem — enabling token creation, liquidity management, and Solana-based on-chain operations with minimal setup.


Overview

The Limitless SDK provides developers with simple, type-safe methods to interact with the Limitless blockchain ecosystem.

Key Features:

  • Secure API authentication
  • Token creation and liquidity launch via Orca Whirlpool
  • SOL balance queries and transfers
  • Real-time progress tracking with callbacks
  • Built-in validation for all parameters
  • Compatible with Custom RPC, Solana RPC, or custom endpoints

Built for modern frameworks like React, Next.js, and Node.js, it simplifies complex on-chain logic into developer-friendly APIs.


Table of Contents


Installation

Install the SDK via npm:

npm install @deaura/limitless-sdk

The SDK is fully compatible with:

  • React / Next.js / Node.js environments
  • TypeScript & modern bundlers (Vite, Webpack)
  • Solana wallet adapters (Phantom, Solflare, Backpack, etc.)

Quick Start

import { initSdk, launchToken } from '@deaura/limitless-sdk';
import { useWallet } from '@solana/wallet-adapter-react';

// 1. Initialize the SDK with your API key
await initSdk({ authToken: "limitless_live_your_api_key_here" });

// 2. Launch a token with liquidity
const result = await launchToken({
  rpcurl: process.env.NEXT_PUBLIC_RPC_MAINNET  || "https://api.mainnet-beta.solana.com",
  wallet: connectedWallet,
  metadata: {
    name: "My Token",
    symbol: "MTK",
    uri: "https://example.com/metadata.json"
  },
  tokenSupply: 1000000,
  liquidityAmount: 500,
  tickSpacing: 128,
  feeTierAddress: "G319n1BPjeXjAfheDxYe8KWZM7FQhQCJerWRK2nZYtiJ"
});

API Authentication

Every SDK call must be authenticated using a valid Limitless API key.

Generating Your API Key

  1. Log in to your Limitless Ecosystem
  2. Navigate to the limitless SDL section
  3. Generate a new API key (valid for 1 year by default)
  4. Copy and securely store your key

Authentication Flow

import { initSdk } from '@deaura/limitless-sdk';
import React from 'react';

React.useEffect(() => {
  // Replace this with your generated API key from the Limitless dashboard
  const apiKey = "limitless_live_your_api_key_here";

  if (apiKey) {
    initSdk({ authToken: apiKey })
      .then((res) => console.log('SDK initialized:', res))
      .catch((err) => console.error('SDK init failed:', err));
  }
}, []);

Security Note: The authentication process ensures that all token operations are securely linked to your verified developer identity. Never commit API keys to version control.


Core Functions

Initialize SDK

Initialize the SDK with your API key before making any other calls.

import { initSdk } from '@deaura/limitless-sdk';

const initialize = async () => {
  try {
    const response = await initSdk({ 
      authToken: "limitless_live_your_api_key_here" 
    });
    console.log('SDK initialized:', response);
  } catch (error) {
    console.error('SDK init failed:', error);
  }
};

Launch Token

Create a new token mint, set metadata, and add liquidity automatically using the Orca Whirlpool protocol.

import { launchToken } from '@deaura/limitless-sdk';
import { useWallet } from '@solana/wallet-adapter-react';

const LaunchTokenExample = () => {
  const wallet = useWallet();

  const handleLaunchToken = async () => {
    try {
      if (!wallet?.publicKey) {
        console.error("Please connect your wallet before launching a token.");
        return;
      }

      const params = {
        rpcurl: process.env.NEXT_PUBLIC_RPC_MAINNET  || "https://api.mainnet-beta.solana.com",
        wallet, // The connected wallet adapter
        metadata: {
          name: "Limitless Token",
          symbol: "LMT",
          uri: "https://example.com/metadata.json", // Must be valid metadata JSON URI
        },
        tokenSupply: 1_000_000, // Total supply of the token
        liquidityAmount: 500,   // ORO tokens used as liquidity
        tickSpacing: 128,       // Whirlpool tick spacing
        feeTierAddress: "G319n1BPjeXjAfheDxYe8KWZM7FQhQCJerWRK2nZYtiJ", // Example fee tier (ORCA fee tiers)
        onStep: (status) => console.log("Step:", status), // Optional callback for progress updates
      };

      const response = await launchToken(params);

      if (!response.success) {
        console.error("Launch failed:", response.error);
        return;
      }

      console.log("Token launched successfully:", response.data);
    } catch (error) {
      console.error("Unexpected error launching token:", error);
    }
  };

  return (
    <button onClick={handleLaunchToken}>
      Launch Token
    </button>
  );
};

export default LaunchTokenExample;

Parameters

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | rpcurl | string | Yes | Solana RPC endpoint URL (Helius, Solana RPC, or custom) | | wallet | WalletAdapter | Yes | Connected Solana wallet adapter instance | | metadata | object | Yes | Token metadata (name, symbol, uri) | | metadata.name | string | Yes | Token name | | metadata.symbol | string | Yes | Token symbol (ticker) | | metadata.uri | string | Yes | Valid metadata JSON URI | | tokenSupply | number | Yes | Total token supply | | liquidityAmount | number | Yes | ORO tokens used as liquidity | | tickSpacing | number | Yes | Whirlpool tick spacing (64, 128, or 256) | | feeTierAddress | string | Yes | Orca fee tier address | | onStep | function | No | Optional callback for progress updates |



Requirements

  • Node.js: >= 16.x
  • React (optional): >= 17.x
  • Solana Wallet Adapter: >= 0.15.x (for wallet integration)
  • TypeScript (optional): >= 4.5.x

Advanced Usage

Progress Tracking

Use the onStep callback to track token launch progress:

await launchToken({
  // ... other params
  onStep: (status) => {
    console.log('Current step:', status);
    // Update UI with progress
  }
});

Custom RPC Endpoints

The SDK supports any Solana RPC provider:

// Solana Public RPC
rpcurl: "https://api.mainnet-beta.solana.com"

Error Handling

Always wrap SDK calls in try-catch blocks:

try {
  const result = await launchToken(params);
  if (!result.success) {
    // Handle expected errors
    console.error('Launch failed:', result.error);
  }
} catch (error) {
  // Handle unexpected errors
  console.error('Unexpected error:', error);
}

Support


Made with ❤️ by the DeAura Labs team