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

@cetusprotocol/sui-clmm-sdk

v1.4.5

Published

SDK for cetus clmm

Readme

NPM npm GitHub Repo stars

Introduction

Cetus-CLMM-SUI-SDK is the official software development kit (SDK) specifically designed for seamless integration with Cetus-CLMM. It provides developers with the necessary tools and resources to easily connect and interact with Cetus-CLMM, enabling the development of robust and efficient applications.

Getting Started

To integrate our SDK into your local project, please follow the example steps provided below. Please see details in document.

Prerequisites

npm i @cetusprotocol/sui-clmm-sdk

SDK Initialization

The SDK provides a convenient initialization method src/config/initCetusSDK for quick setup and configuration of the Cetus SDK.

Network Options

  • mainnet (Production Network)
  • testnet (Test Network)

Important Note

Before performing swaps or other asset-related operations, ensure:

  • A wallet is properly configured
  • The wallet has sufficient token balance for the intended operation
import { CetusClmmSDK } from '@cetusprotocol/sui-clmm-sdk'

If you would like to use the mainnet network and the official Sui rpc url, you can do so as follows:

const sdk = CetusClmmSDK.createSDK()

If you wish to set your own full node URL or network (You have the option to select either 'mainnet' or 'testnet' for the network), you can do so as follows:

const env = 'mainnet'
const full_rpc_url = 'YOUR_FULL_NODE_URL'
const wallet = 'YOUR_WALLET_ADDRESS'

const sdk = CetusClmmSDK.createSDK({ env })

<<<<<<< HEAD If you wish to set your own full node URL or SuiGrpcClient, you can do so as follows:

If you wish to set your own full node URL or SuiJsonRpcClient, you can do so as follows:

dev_migrate_json_rpc

const sdk = CetusClmmSDK.createSDK({ env, sui_client })
//or
const sdk = CetusClmmSDK.createSDK({ env, full_rpc_url })

After linking your wallet, if you need use your wallet address to do something, you should set it by CetusClmmSDK.setSenderAddress("YOUR_SUI_ADDRESS_HERE")

const wallet = 'YOUR_WALLET_ADDRESS'

sdk.setSenderAddress(wallet)

Now, you can start using Cetus SDK.

Typescript Doc

You can view this typescript sdk in Cetus Development Documents.

LICENSE

CETUS-SUI-SDK released under the Apache license. See the LICENSE file for details.

More About Cetus

Use the following links to learn more about Cetus: Learn more about working with Cetus in the Cetus Documentation.

Join the Cetus community on Cetus Discord.