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

@deaura/limitless-sdk

v1.1.0

Published

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

Readme

Limitless SDK

JavaScript/TypeScript SDK for the Limitless ecosystem: authenticate, launch tokens, fetch launched tokens, and claim fees.


Flow

  1. Authenticate – Initialize the SDK with your API key.
  2. Launch token – Create a token and add liquidity (Orca Whirlpool).
  3. Get token – Fetch launched tokens (e.g. by wallet).
  4. Claim – Claim creator fees from a position.

Installation

npm install @deaura/limitless-sdk

Quick Start

import { initSdk, launchToken, getLaunchedTokens, claimFee } from '@deaura/limitless-sdk';
import { useWallet } from '@solana/wallet-adapter-react';
import { PublicKey } from '@solana/web3.js';

const rpcUrl = process.env.NEXT_PUBLIC_RPC_MAINNET || "https://api.mainnet-beta.solana.com";
const wallet = useWallet(); // or your wallet adapter

// 1. Authenticate
await initSdk({ authToken: "limitless_live_your_api_key_here" });

// 2. Launch token
const launchResult = await launchToken({
  rpcurl: rpcUrl,
  wallet,
  metadata: { name: "My Token", symbol: "MTK", uri: "https://example.com/metadata.json" },
  tokenSupply: 1_000_000,
  liquidityAmount: 500,
  tickSpacing: 128,
  feeTierAddress: "BGnhGXT9CCt5WYS23zg9sqsAT2MGXkq7VSwch9pML82W",
  integratorAccount: null,
  salesRepAccount: null,
  onStep: (step) => console.log(step),
});

if (launchResult.success) {
  console.log("Mint:", launchResult.data.tokenMint);
  console.log("Pool:", launchResult.data.poolAddress);
}

// 3. Get launched tokens for this wallet only (tokenDeployer required)
const tokens = await getLaunchedTokens({
  rpcUrl,
  tokenDeployer: wallet.publicKey.toBase58(),
});

// Each token has: claim, token (mint, name, symbol, uri), whirlpool, totalMint, isLiquidityAdded
// Use token.claim to call claimFee.

// 4. Claim fees (use claim params from a launched token)
if (tokens.length && tokens[0].claim.position) {
  const result = await claimFee({
    rpcurl: rpcUrl,
    wallet,
    tokenMint: new PublicKey(tokens[0].claim.tokenMint),
    whirlpool: new PublicKey(tokens[0].claim.whirlpool),
    position: new PublicKey(tokens[0].claim.position),
    tickArrayLower: tokens[0].claim.tickArrayLower,
    tickArrayUpper: tokens[0].claim.tickArrayUpper,
    tickSpacing: tokens[0].claim.tickSpacing,
    positionTokenAccount: new PublicKey(tokens[0].claim.positionTokenAccount),
    tokenVaultA: new PublicKey(tokens[0].claim.tokenVaultA),
    tokenVaultB: new PublicKey(tokens[0].claim.tokenVaultB),
  });
  if (result.success) console.log("Tx:", result.data.transactions);
}

1. Authenticate

Initialize the SDK before any other call. Use an API key from the Limitless Dashboard.

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

await initSdk({ authToken: process.env.NEXT_PUBLIC_LIMITLESS_API_KEY });

Store the key in env (e.g. NEXT_PUBLIC_LIMITLESS_API_KEY) and never commit it.


2. Launch token

Creates the token mint, metadata, and liquidity on Orca Whirlpool.

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

const result = await launchToken({
  rpcurl: "https://api.mainnet-beta.solana.com",
  wallet,
  metadata: { name: "My Token", symbol: "MTK", uri: "https://example.com/metadata.json" },
  tokenSupply: 1_000_000,
  liquidityAmount: 500,
  tickSpacing: 128,
  feeTierAddress: "BGnhGXT9CCt5WYS23zg9sqsAT2MGXkq7VSwch9pML82W",
  integratorAccount: null,
  salesRepAccount: null,
  onStep: (step) => console.log(step),
});

Success response:

{
  success: true,
  data: {
    tokenMint: string,
    poolAddress: string,
    transactions: { launch: string; tickConfig: string | null; liquidity: string }
  }
}

Error: { success: false, error: string }


3. Get launched tokens

Fetch launched tokens for a specific deployer wallet only. tokenDeployer is required.

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

const tokens = await getLaunchedTokens({
  rpcUrl: "https://api.mainnet-beta.solana.com",
  tokenDeployer: wallet.publicKey.toBase58(),
});

Returns: LaunchedTokenResult[]

Each item includes:

  • claim – All fields needed for claimFee(): tokenMint, whirlpool, position, tickArrayLower, tickArrayUpper, tickSpacing, positionTokenAccount, tokenVaultA, tokenVaultB
  • tokenmint, name, symbol, uri
  • whirlpool – Pool address
  • totalMint – Token launch amount
  • isLiquidityAdded – Whether liquidity was added

Use token.claim when calling claimFee.


4. Claim

Claim creator fees for a position. Use the claim object from a launched token (from Get launched tokens).

import { claimFee } from '@deaura/limitless-sdk';
import { PublicKey } from '@solana/web3.js';

const result = await claimFee({
  rpcurl: "https://api.mainnet-beta.solana.com",
  wallet,
  tokenMint: new PublicKey(token.claim.tokenMint),
  whirlpool: new PublicKey(token.claim.whirlpool),
  position: new PublicKey(token.claim.position),
  tickArrayLower: token.claim.tickArrayLower,
  tickArrayUpper: token.claim.tickArrayUpper,
  tickSpacing: token.claim.tickSpacing,
  positionTokenAccount: new PublicKey(token.claim.positionTokenAccount),
  tokenVaultA: new PublicKey(token.claim.tokenVaultA),
  tokenVaultB: new PublicKey(token.claim.tokenVaultB),
});

Success response:

{ success: true, data: { transactions: string[] } }

Error: { success: false, error: string }


Requirements

  • Node.js >= 16
  • @solana/web3.js, @solana/wallet-adapter-base (or equivalent)

Support