PancakeSwap CLMM IDL
HpNfyc2Saw7RKkQd8nEL4khUcuPhQ7WwY1B2qjx8jxFqPancakeSwap on Solana is the concentrated liquidity AMM (CLMM) from the popular multi-chain DEX. Features NFT-based position management, protocol/fund fee collection, Token-2022 compatibility, and dual token vault architecture.
Instructions
Account Types
Events
Integration Examples
Use the PancakeSwap CLMM IDL in your application with these code examples for TypeScript, Rust, and Python.
import { Connection, PublicKey } from "@solana/web3.js";
import { Program, AnchorProvider, Idl } from "@coral-xyz/anchor";
// Load the PancakeSwap CLMM IDL
import idl from "./pancakeswap clmm.json";
const PROGRAM_ID = new PublicKey("HpNfyc2Saw7RKkQd8nEL4khUcuPhQ7WwY1B2qjx8jxFq");
// Set up the provider and program
const connection = new Connection("https://api.mainnet-beta.solana.com");
const provider = new AnchorProvider(connection, wallet, {
commitment: "confirmed",
});
const program = new Program(idl as Idl, provider);
// Fetch and decode an account
const accountData = await program.account.pancakeSwap_CLMM
.fetch(accountPublicKey);
console.log("Account data:", accountData);
// Build and send an instruction
const tx = await program.methods
.initialize(/* ...args */)
.accounts({
/* ...required accounts */
})
.rpc();
console.log("Transaction signature:", tx);IDL JSON Preview
{
"address": "HpNfyc2Saw7RKkQd8nEL4khUcuPhQ7WwY1B2qjx8jxFq",
"metadata": {
"name": "amm_v3",
"version": "0.1.0",
"spec": "0.1.0",
"description": "Anchor client and source for Pancake concentrated liquidity AMM"
},
"instructions": [
{
"name": "close_position",
"docs": [
"Close the user's position and NFT account. If the NFT mint belongs to token2022, it will also be closed and the funds returned to the NFT owner.",
"",
"# Arguments",
"",
"* `ctx` - The context of accounts",
""
],
"discriminator": [
123,
134,
81,
0,
49,
68,
98,
98
],
"accounts": [
...Frequently Asked Questions
What is the PancakeSwap CLMM IDL?
The PancakeSwap CLMM IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the PancakeSwap CLMM smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the PancakeSwap CLMM program. This IDL contains 27 instructions, 10 account types, 11 events, and 26 type definitions.
How do I use the PancakeSwap CLMM IDL in my project?
Download the JSON file and import it in your project. With TypeScript, use the @coral-xyz/anchor package to create a Program instance. In Rust, use anchor-client. For Python, use anchorpy. See the integration examples above for complete code snippets in all three languages.
What is the PancakeSwap CLMM program address on Solana?
The PancakeSwap CLMM program is deployed at address HpNfyc2Saw7RKkQd8nEL4khUcuPhQ7WwY1B2qjx8jxFq on Solana mainnet. You can verify this on any Solana block explorer.
What version of the PancakeSwap CLMM IDL is this?
This is version 0.1.0 of the PancakeSwap CLMM IDL. IDL versions correspond to specific program deployments and may be updated as the protocol evolves. Always verify compatibility with the on-chain program version before integrating.