Raydium CLMM v3 (SwapV2) IDL

raydiumv0.1.0DEX / AMM
Program Address
CAMMCzo5YL8w4VFF8KVHrK22GGUsp5VTaW7grrKgrWqK
On-chain

Raydium CLMM v3 with SwapV2 — includes the enhanced swap instruction for improved routing and execution. Same concentrated liquidity mechanics with an updated swap interface.

23
Instructions
8
Accounts
11
Events
9
Types

Instructions

createAmmConfigupdateAmmConfigcreatePoolupdatePoolStatuscreateOperationAccountupdateOperationAccounttransferRewardOwnerinitializeRewardcollectRemainingRewardsupdateRewardInfossetRewardParamscollectProtocolFee+11 more

Account Types

AmmConfigOperationStateObservationStatePersonalPositionStatePoolStateProtocolPositionStateTickArrayStateTickArrayBitmapExtension

Events

ConfigChangeEventCreatePersonalPositionEventIncreaseLiquidityEventDecreaseLiquidityEventLiquidityCalculateEventCollectPersonalFeeEventUpdateRewardInfosEventPoolCreatedEvent+3 more

Integration Examples

Use the Raydium CLMM v3 (SwapV2) 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 Raydium CLMM v3 (SwapV2) IDL
import idl from "./raydium clmm v3 (swapv2).json";

const PROGRAM_ID = new PublicKey("CAMMCzo5YL8w4VFF8KVHrK22GGUsp5VTaW7grrKgrWqK");

// 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.raydium_CLMM_v3__SwapV2_
  .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

raydium clmm v3 (swapv2).json
{
  "version": "0.1.0",
  "name": "amm_v3",
  "instructions": [
    {
      "name": "createAmmConfig",
      "accounts": [
        {
          "name": "owner",
          "isMut": true,
          "isSigner": true
        },
        {
          "name": "ammConfig",
          "isMut": true,
          "isSigner": false
        },
        {
          "name": "systemProgram",
          "isMut": false,
          "isSigner": false
        }
      ],
      "args": [
        {
          "name": "index",
          "type": "u16"
        },
        {
          "name": "tickSpacing",
...

Frequently Asked Questions

What is the Raydium CLMM v3 (SwapV2) IDL?

The Raydium CLMM v3 (SwapV2) IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Raydium CLMM v3 (SwapV2) smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Raydium CLMM v3 (SwapV2) program. This IDL contains 23 instructions, 8 account types, 11 events, and 9 type definitions.

How do I use the Raydium CLMM v3 (SwapV2) 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 Raydium CLMM v3 (SwapV2) program address on Solana?

The Raydium CLMM v3 (SwapV2) program is deployed at address CAMMCzo5YL8w4VFF8KVHrK22GGUsp5VTaW7grrKgrWqK on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Raydium CLMM v3 (SwapV2) IDL is this?

This is version 0.1.0 of the Raydium CLMM v3 (SwapV2) 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.