Defi Integrations
// Swap SOL for USDC
const signature = await agent.methods.trade(
new PublicKey("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"), // USDC
1, // 1 SOL
);
// Swap USDC for SOL with custom slippage
const signature = await agent.methods.trade(
new PublicKey("So11111111111111111111111111111111111111112"), // SOL
100, // 100 USDC
new PublicKey("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"), // USDC
100 // 1% slippage
);Parameter
Type
Required
Description
Last updated