Meteora Dynamic AMM IDL

meteorav0.4.12DEX / AMM
Program Address
Eo7WjKq67rjJQSZxS6z3YkapzY3eMj6Xy8X5EQVn5UaB
On-chain

Meteora Dynamic AMM is an automated market maker on Solana featuring dynamic fees, virtual price curves, and yield-bearing LP tokens. Supports volatile and stable token pairs with optimized capital efficiency.

19
Instructions
2
Accounts
15
Events
11
Types

Instructions

initializePermissionedPoolinitializePermissionlessPoolinitializePermissionlessPoolWithFeeTierenableOrDisablePoolswapremoveLiquiditySingleSideaddImbalanceLiquidityremoveBalanceLiquidityaddBalanceLiquiditysetPoolFeesoverrideCurveParamtransferAdmin+7 more

Account Types

PoolLockEscrow

Events

AddLiquidityRemoveLiquidityBootstrapLiquiditySwapSetPoolFeesPoolInfoTransferAdminSetAdminFeeAccount+7 more

Integration Examples

Use the Meteora Dynamic AMM 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 Dynamic AMM IDL
import idl from "./meteora dynamic amm.json";

const PROGRAM_ID = new PublicKey("Eo7WjKq67rjJQSZxS6z3YkapzY3eMj6Xy8X5EQVn5UaB");

// 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_Dynamic_AMM
  .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 dynamic amm.json
{
  "version": "0.4.12",
  "name": "amm",
  "docs": [
    "Program for AMM"
  ],
  "instructions": [
    {
      "name": "initializePermissionedPool",
      "docs": [
        "Initialize a new permissioned pool."
      ],
      "accounts": [
        {
          "name": "pool",
          "isMut": true,
          "isSigner": true,
          "docs": [
            "Pool account (arbitrary address)"
          ]
        },
        {
          "name": "lpMint",
          "isMut": true,
          "isSigner": false,
          "docs": [
            "LP token mint of the pool"
          ]
        },
        {
...

Frequently Asked Questions

What is the Meteora Dynamic AMM IDL?

The Meteora Dynamic AMM IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Meteora Dynamic AMM smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Meteora Dynamic AMM program. This IDL contains 19 instructions, 2 account types, 15 events, and 11 type definitions.

How do I use the Meteora Dynamic AMM 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 Dynamic AMM program address on Solana?

The Meteora Dynamic AMM program is deployed at address Eo7WjKq67rjJQSZxS6z3YkapzY3eMj6Xy8X5EQVn5UaB on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Meteora Dynamic AMM IDL is this?

This is version 0.4.12 of the Meteora Dynamic AMM 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.