Boop IDL

boopv0.3.0Token Launchpad
Program Address
boop8hVGQGqehUK2iVEMEnMrL5RbjywRzHKBmBE7ry4
On-chain

Boop is a Solana token launchpad with built-in fee sharing. Enables token creation on bonding curves with SOL collateral, buy/sell trading with slippage protection, operator management, and vault-based fee distribution.

29
Instructions
4
Accounts
25
Events
30
Types

Instructions

add_operatorsbuy_tokencancel_authority_transferclose_bonding_curve_vaultcollect_meteora_trading_feescollect_meteora_trading_fees_v2collect_trading_feescollect_trading_fees_v2complete_authority_transfercreate_meteora_poolcreate_raydium_poolcreate_raydium_random_pool+17 more

Account Types

AmmConfigBondingCurveConfigLockedCpLiquidityState

Events

AuthorityTransferCancelledEventAuthorityTransferCompletedEventAuthorityTransferInitiatedEventBondingCurveDeployedEventBondingCurveDeployedFallbackEventBondingCurveVaultClosedEventConfigUpdatedEventLiquidityDepositedIntoRaydiumEvent+17 more

Integration Examples

Use the Boop 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 Boop IDL
import idl from "./boop.json";

const PROGRAM_ID = new PublicKey("boop8hVGQGqehUK2iVEMEnMrL5RbjywRzHKBmBE7ry4");

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

boop.json
{
  "address": "boop8hVGQGqehUK2iVEMEnMrL5RbjywRzHKBmBE7ry4",
  "metadata": {
    "name": "boop",
    "version": "0.3.0",
    "spec": "0.1.0",
    "description": "Boop is a token launcher with fee sharing"
  },
  "instructions": [
    {
      "name": "add_operators",
      "discriminator": [
        165,
        199,
        62,
        214,
        81,
        54,
        4,
        150
      ],
      "accounts": [
        {
          "name": "config",
          "writable": true,
          "pda": {
            "seeds": [
              {
                "kind": "const",
                "value": [
...

Frequently Asked Questions

What is the Boop IDL?

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

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

The Boop program is deployed at address boop8hVGQGqehUK2iVEMEnMrL5RbjywRzHKBmBE7ry4 on Solana mainnet. You can verify this on any Solana block explorer.

What version of the Boop IDL is this?

This is version 0.3.0 of the Boop 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.