Meteora DLMM v0.9.0 IDL

meteorav0.9.0DEX / AMM
Program Address
LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo
On-chain

Meteora DLMM v0.9.0 — an updated version of the Dynamic Liquidity Market Maker with enhanced bin management, position tracking, and fee distribution for concentrated liquidity on Solana.

64
Instructions
10
Accounts
22
Events
38
Types

Instructions

initializeLbPairinitializePermissionLbPairinitializeCustomizablePermissionlessLbPairinitializeBinArrayBitmapExtensioninitializeBinArrayaddLiquidityaddLiquidityByWeightaddLiquidityByStrategyaddLiquidityByStrategyOneSideaddLiquidityOneSideremoveLiquidityinitializePosition+52 more

Account Types

BinArrayBitmapExtensionBinArrayClaimFeeOperatorLbPairOraclePositionPositionV2PresetParameter2+2 more

Events

CompositionFeeAddLiquidityRemoveLiquiditySwapClaimRewardFundRewardInitializeRewardUpdateRewardDuration+14 more

Integration Examples

Use the Meteora DLMM v0.9.0 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 Meteora DLMM v0.9.0 IDL
import idl from "./meteora dlmm v0.9.0.json";

const PROGRAM_ID = new PublicKey("LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo");

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

meteora dlmm v0.9.0.json
{
  "version": "0.9.0",
  "name": "lb_clmm",
  "constants": [
    {
      "name": "BASIS_POINT_MAX",
      "type": "i32",
      "value": "10000"
    },
    {
      "name": "MAX_BIN_PER_ARRAY",
      "type": {
        "defined": "usize"
      },
      "value": "70"
    },
    {
      "name": "MAX_BIN_PER_POSITION",
      "type": {
        "defined": "usize"
      },
      "value": "70"
    },
    {
      "name": "MAX_RESIZE_LENGTH",
      "type": {
        "defined": "usize"
      },
      "value": "70"
    },
...

Frequently Asked Questions

What is the Meteora DLMM v0.9.0 IDL?

The Meteora DLMM v0.9.0 IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Meteora DLMM v0.9.0 smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Meteora DLMM v0.9.0 program. This IDL contains 64 instructions, 10 account types, 22 events, and 38 type definitions.

How do I use the Meteora DLMM v0.9.0 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 Meteora DLMM v0.9.0 program address on Solana?

The Meteora DLMM v0.9.0 program is deployed at address LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Meteora DLMM v0.9.0 IDL is this?

This is version 0.9.0 of the Meteora DLMM v0.9.0 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.