Meteora CP AMM v0.1.6 IDL

meteorav0.1.6DEX / AMM
Program Address
cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG
On-chain

Meteora Constant Product AMM (CPAMM) v0.1.6 — the latest constant product AMM version with refined pool creation, deposit/withdrawal, and swap operations.

34
Instructions
9
Accounts
23
Events
64
Types

Instructions

add_liquidityclaim_partner_feeclaim_position_feeclaim_protocol_feeclaim_rewardclose_configclose_operator_accountclose_positionclose_token_badgecreate_configcreate_dynamic_configcreate_operator_account+22 more

Account Types

ConfigOperatorPodAlignedFeeMarketCapSchedulerPodAlignedFeeRateLimiterPodAlignedFeeTimeSchedulerPoolPositionTokenBadge+1 more

Events

EvtClaimPartnerFeeEvtClaimPositionFeeEvtClaimProtocolFeeEvtClaimRewardEvtCloseConfigEvtClosePositionEvtCreateConfigEvtCreateDynamicConfig+15 more

Integration Examples

Use the Meteora CP AMM v0.1.6 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 CP AMM v0.1.6 IDL
import idl from "./meteora cp amm v0.1.6.json";

const PROGRAM_ID = new PublicKey("cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG");

// 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_CP_AMM_v0_1_6
  .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 cp amm v0.1.6.json
{
  "address": "cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG",
  "metadata": {
    "name": "cp_amm",
    "version": "0.1.6",
    "spec": "0.1.0",
    "description": "Created with Anchor"
  },
  "instructions": [
    {
      "name": "add_liquidity",
      "discriminator": [
        181,
        157,
        89,
        67,
        143,
        182,
        52,
        72
      ],
      "accounts": [
        {
          "name": "pool",
          "writable": true,
          "relations": [
            "position"
          ]
        },
        {
...

Frequently Asked Questions

What is the Meteora CP AMM v0.1.6 IDL?

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

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

The Meteora CP AMM v0.1.6 program is deployed at address cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Meteora CP AMM v0.1.6 IDL is this?

This is version 0.1.6 of the Meteora CP AMM v0.1.6 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.