Raydium Launchpad IDL

raydiumv0.2.0DEX / AMM
Program Address
LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj
On-chain

Raydium Launchpad enables fair token launches on Solana through Raydium's ecosystem. Manages token sales, vesting schedules, and automatic liquidity pool creation on launch completion.

22
Instructions
4
Accounts
4
Events
25
Types

Instructions

buy_exact_inbuy_exact_outclaim_creator_feeclaim_platform_feeclaim_platform_fee_from_vaultclaim_vested_tokencollect_feecollect_migrate_feecreate_configcreate_platform_configcreate_vesting_accountinitialize+10 more

Account Types

GlobalConfigPlatformConfigPoolStateVestingRecord

Events

ClaimVestedEventCreateVestingEventPoolCreateEventTradeEvent

Integration Examples

Use the Raydium Launchpad 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 Launchpad IDL
import idl from "./raydium launchpad.json";

const PROGRAM_ID = new PublicKey("LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj");

// 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_Launchpad
  .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

raydium launchpad.json
{
  "address": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
  "metadata": {
    "name": "raydium_launchpad",
    "version": "0.2.0",
    "spec": "0.1.0",
    "description": "Created with Anchor"
  },
  "instructions": [
    {
      "name": "buy_exact_in",
      "docs": [
        "Use the given amount of quote tokens to purchase base tokens.",
        "# Arguments",
        "",
        "* `ctx` - The context of accounts",
        "* `amount_in` - Amount of quote token to purchase",
        "* `minimum_amount_out` - Minimum amount of base token to receive (slippage protection)",
        "* `share_fee_rate` - Fee rate for the share",
        ""
      ],
      "discriminator": [
        250,
        234,
        13,
        123,
        213,
        156,
        19,
        236
...

Frequently Asked Questions

What is the Raydium Launchpad IDL?

The Raydium Launchpad IDL (Interface Definition Language) is a JSON schema that defines the on-chain program interface for the Raydium Launchpad smart contract on Solana. It describes all available instructions, account structures, events, and custom types that developers need to interact with the Raydium Launchpad program. This IDL contains 22 instructions, 4 account types, 4 events, and 25 type definitions.

How do I use the Raydium Launchpad 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 Launchpad program address on Solana?

The Raydium Launchpad program is deployed at address LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Raydium Launchpad IDL is this?

This is version 0.2.0 of the Raydium Launchpad 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.