Meteora Dynamic AMM v0.5.2 IDL

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

Meteora Dynamic AMM v0.5.2 — an updated version of the Meteora AMM with improved dynamic fees and virtual price curve mechanics for volatile and stable token pairs on Solana.

26
Instructions
3
Accounts
18
Events
16
Types

Instructions

initializePermissionedPoolinitializePermissionlessPoolinitializePermissionlessPoolWithFeeTierenableOrDisablePoolswapremoveLiquiditySingleSideaddImbalanceLiquidityremoveBalanceLiquidityaddBalanceLiquiditysetPoolFeesoverrideCurveParamgetPoolInfo+14 more

Account Types

ConfigLockEscrowPool

Events

AddLiquidityRemoveLiquidityBootstrapLiquiditySwapSetPoolFeesPoolInfoTransferAdminOverrideCurveParam+10 more

Integration Examples

Use the Meteora Dynamic AMM v0.5.2 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 v0.5.2 IDL
import idl from "./meteora dynamic amm v0.5.2.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_v0_5_2
  .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 v0.5.2.json
{
  "version": "0.5.2",
  "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 v0.5.2 IDL?

The Meteora Dynamic AMM v0.5.2 IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Meteora Dynamic AMM v0.5.2 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 v0.5.2 program. This IDL contains 26 instructions, 3 account types, 18 events, and 16 type definitions.

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

The Meteora Dynamic AMM v0.5.2 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 v0.5.2 IDL is this?

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