title: ‘FluxBeam Integration’
description: ‘Learn how to create and manage liquidity pools with FluxBeam’
Solana Agent Kit provides integration with FluxBeam for creating and managing liquidity pools. The integration supports creating new pools with any pair of tokens, including native SOL and SPL tokens.
interface CreatePoolParams { token_a: PublicKey; // First token mint address token_a_amount: number; // Amount of first token token_b: PublicKey; // Second token mint address token_b_amount: number; // Amount of second token}
const TOKENS = { SOL: new PublicKey("So11111111111111111111111111111111111111112"), USDC: new PublicKey("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v")};