Raydium CP Swap IDL
CPMMoo8L3F4NbTegBCKVNunggL7H1ZpdTHKxQB5qKP1CRaydium CP Swap (Constant Product) is a streamlined AMM for token swaps on Solana. Provides efficient constant product pricing with simplified pool management and lower overhead than the full AMM v4.
Instructions
Account Types
Events
Integration Examples
Use the Raydium CP Swap 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 Raydium CP Swap IDL
import idl from "./raydium cp swap.json";
const PROGRAM_ID = new PublicKey("CPMMoo8L3F4NbTegBCKVNunggL7H1ZpdTHKxQB5qKP1C");
// 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.raydium_CP_Swap
.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
{
"version": "0.1.0",
"name": "raydium_cp_swap",
"metadata": {
"address": "CPMMoo8L3F4NbTegBCKVNunggL7H1ZpdTHKxQB5qKP1C"
},
"instructions": [
{
"name": "createAmmConfig",
"docs": [
"# Arguments",
"",
"* `ctx`- The accounts needed by instruction.",
"* `index` - The index of amm config, there may be multiple config.",
"* `trade_fee_rate` - Trade fee rate, can be changed.",
"* `protocol_fee_rate` - The rate of protocol fee within tarde fee.",
"* `fund_fee_rate` - The rate of fund fee within tarde fee.",
""
],
"accounts": [
{
"name": "owner",
"isMut": true,
"isSigner": true,
"docs": [
"Address to be set as protocol owner."
]
},
{
"name": "ammConfig",
...Frequently Asked Questions
What is the Raydium CP Swap IDL?
The Raydium CP Swap IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Raydium CP Swap smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Raydium CP Swap program. This IDL contains 10 instructions, 3 account types, 2 events, and 5 type definitions.
How do I use the Raydium CP Swap 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 Raydium CP Swap program address on Solana?
The Raydium CP Swap program is deployed at address CPMMoo8L3F4NbTegBCKVNunggL7H1ZpdTHKxQB5qKP1C on Solana mainnet. You can verify this on any Solana block explorer.
What version of the Raydium CP Swap IDL is this?
This is version 0.1.0 of the Raydium CP Swap 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.