Meteora CP AMM v0.1.5 IDL
cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGGMeteora Constant Product AMM (CPAMM) v0.1.5 — an updated constant product AMM with improved fee handling and swap execution for Solana token pairs.
Instructions
Account Types
Events
Integration Examples
Use the Meteora CP AMM v0.1.5 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.5 IDL
import idl from "./meteora cp amm v0.1.5.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_5
.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
{
"address": "cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG",
"metadata": {
"name": "cp_amm",
"version": "0.1.5",
"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.5 IDL?
The Meteora CP AMM v0.1.5 IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Meteora CP AMM v0.1.5 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.5 program. This IDL contains 32 instructions, 6 account types, 27 events, and 61 type definitions.
How do I use the Meteora CP AMM v0.1.5 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.5 program address on Solana?
The Meteora CP AMM v0.1.5 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.5 IDL is this?
This is version 0.1.5 of the Meteora CP AMM v0.1.5 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.