|
| 1 | +import type { SolanaWalletClient } from "@goat-sdk/core"; |
| 2 | +import { type Connection, VersionedTransaction } from "@solana/web3.js"; |
| 3 | +import type { z } from "zod"; |
| 4 | +import type { getBuyListingTransactionResponseSchema, getNftInfoParametersSchema } from "../parameters"; |
| 5 | +import { decompileVersionedTransactionToInstructions } from "../utils/decompileVersionedTransactionToInstructions"; |
| 6 | +import { getNftListings } from "./getNftListings"; |
| 7 | + |
| 8 | +export async function buyListing( |
| 9 | + apiKey: string | undefined, |
| 10 | + connection: Connection, |
| 11 | + walletClient: SolanaWalletClient, |
| 12 | + parameters: z.infer<typeof getNftInfoParametersSchema>, |
| 13 | +) { |
| 14 | + const nftInfo = await getNftListings(apiKey, parameters); |
| 15 | + |
| 16 | + const queryParams = new URLSearchParams({ |
| 17 | + buyer: walletClient.getAddress(), |
| 18 | + seller: nftInfo.seller, |
| 19 | + tokenMint: parameters.mintHash, |
| 20 | + tokenATA: nftInfo.pdaAddress, |
| 21 | + price: nftInfo.price.toString(), |
| 22 | + }); |
| 23 | + |
| 24 | + let data: z.infer<typeof getBuyListingTransactionResponseSchema>; |
| 25 | + try { |
| 26 | + const response = await fetch( |
| 27 | + `https://api-mainnet.magiceden.dev/v2/instructions/buy_now?${queryParams.toString()}`, |
| 28 | + { |
| 29 | + headers: { |
| 30 | + "Content-Type": "application/json", |
| 31 | + ...(apiKey ? { Authorization: `Bearer ${apiKey}` } : {}), |
| 32 | + }, |
| 33 | + }, |
| 34 | + ); |
| 35 | + |
| 36 | + data = (await response.json()) as z.infer<typeof getBuyListingTransactionResponseSchema>; |
| 37 | + } catch (error) { |
| 38 | + throw new Error(`Failed to get buy listing transaction: ${error}`); |
| 39 | + } |
| 40 | + |
| 41 | + const versionedTransaction = VersionedTransaction.deserialize(Buffer.from(data.v0.tx.data)); |
| 42 | + const instructions = await decompileVersionedTransactionToInstructions(connection, versionedTransaction); |
| 43 | + const lookupTableAddresses = versionedTransaction.message.addressTableLookups.map((lookup) => lookup.accountKey); |
| 44 | + |
| 45 | + return { versionedTransaction, instructions, lookupTableAddresses }; |
| 46 | +} |
0 commit comments