@mmt-finance/clmm-sdk
is the official TypeScript SDK for integrating with
MMT Finance CLMM for developers. Please visit
MMT Developer Docs
for detailed guideline.
npm i @mmt-finance/clmm-sdk
Our SDK has pre-configured network settings that allows you to connect to MMT CLMM on both mainnet and testnet. You can utilize the src/sdk NEW method to swiftly initialize the configuration.
import { MmtSDK } from '@mmt-finance/clmm-sdk'
const mmtClmmSDK = MmtSDK.NEW({
network: 'mainnet',
});
Now, you can start using MMT SDK.
- Retrieve pool data
- Retrieve user data
- Swap
- Open and Add Liquidity
- Position Management
- Claim Fees and Rewards
- Close Position
For a full detailed technical integration doc, please visit MMT Developer Docs.
A comprehensive set of examples has been provided to demonstrate the fundamental usage of the SDK. Please refer to the detailed guidelines for further information example