mirror of
https://github.com/d0zingcat/solana-agent-kit.git
synced 2026-05-19 23:26:45 +00:00
94 lines
3.1 KiB
TypeScript
94 lines
3.1 KiB
TypeScript
import { VersionedTransaction, PublicKey } from "@solana/web3.js";
|
|
import { SolanaAgentKit } from "../index";
|
|
import {
|
|
TOKENS,
|
|
DEFAULT_OPTIONS,
|
|
JUP_API,
|
|
JUP_REFERRAL_ADDRESS,
|
|
} from "../constants";
|
|
import { getMint } from "@solana/spl-token";
|
|
/**
|
|
* Swap tokens using Jupiter Exchange
|
|
* @param agent SolanaAgentKit instance
|
|
* @param outputMint Target token mint address
|
|
* @param inputAmount Amount to swap (in token decimals)
|
|
* @param inputMint Source token mint address (defaults to USDC)
|
|
* @param slippageBps Slippage tolerance in basis points (default: 300 = 3%)
|
|
* @returns Transaction signature
|
|
*/
|
|
|
|
export async function trade(
|
|
agent: SolanaAgentKit,
|
|
outputMint: PublicKey,
|
|
inputAmount: number,
|
|
inputMint: PublicKey = TOKENS.USDC,
|
|
slippageBps: number = DEFAULT_OPTIONS.SLIPPAGE_BPS,
|
|
): Promise<string> {
|
|
try {
|
|
// Check if input token is native SOL
|
|
const isNativeSol = inputMint.equals(TOKENS.SOL);
|
|
|
|
// For native SOL, we use LAMPORTS_PER_SOL, otherwise fetch mint info
|
|
const inputDecimals = isNativeSol
|
|
? 9 // SOL always has 9 decimals
|
|
: (await getMint(agent.connection, inputMint)).decimals;
|
|
|
|
// Calculate the correct amount based on actual decimals
|
|
const scaledAmount = inputAmount * Math.pow(10, inputDecimals);
|
|
|
|
const quoteResponse = await (
|
|
await fetch(
|
|
`${JUP_API}/quote?` +
|
|
`inputMint=${isNativeSol ? TOKENS.SOL.toString() : inputMint.toString()}` +
|
|
`&outputMint=${outputMint.toString()}` +
|
|
`&amount=${scaledAmount}` +
|
|
`&slippageBps=${slippageBps}` +
|
|
`&onlyDirectRoutes=true` +
|
|
`&maxAccounts=20` +
|
|
`${agent.config.JUPITER_FEE_BPS ? `&platformFeeBps=${agent.config.JUPITER_FEE_BPS}` : ""}`,
|
|
)
|
|
).json();
|
|
|
|
// Get serialized transaction
|
|
let feeAccount;
|
|
if (agent.config.JUPITER_REFERRAL_ACCOUNT) {
|
|
[feeAccount] = PublicKey.findProgramAddressSync(
|
|
[
|
|
Buffer.from("referral_ata"),
|
|
new PublicKey(agent.config.JUPITER_REFERRAL_ACCOUNT).toBuffer(),
|
|
TOKENS.SOL.toBuffer(),
|
|
],
|
|
new PublicKey(JUP_REFERRAL_ADDRESS),
|
|
);
|
|
}
|
|
|
|
const { swapTransaction } = await (
|
|
await fetch("https://quote-api.jup.ag/v6/swap", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
quoteResponse,
|
|
userPublicKey: agent.wallet_address.toString(),
|
|
wrapAndUnwrapSol: true,
|
|
dynamicComputeUnitLimit: true,
|
|
prioritizationFeeLamports: "auto",
|
|
feeAccount: feeAccount ? feeAccount.toString() : null,
|
|
}),
|
|
})
|
|
).json();
|
|
// Deserialize transaction
|
|
const swapTransactionBuf = Buffer.from(swapTransaction, "base64");
|
|
|
|
const transaction = VersionedTransaction.deserialize(swapTransactionBuf);
|
|
// Sign and send transaction
|
|
transaction.sign([agent.wallet]);
|
|
const signature = await agent.connection.sendTransaction(transaction);
|
|
|
|
return signature;
|
|
} catch (error: any) {
|
|
throw new Error(`Swap failed: ${error.message}`);
|
|
}
|
|
}
|