Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
mPaella committed Dec 10, 2024
1 parent 948ba70 commit 3fa795d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { decompileVersionedTransactionToInstructions } from "../utils/decompileV
import { getNftListings } from "./getNftListings";

export async function buyListing(
apiKey: string | undefined,
apiKey: string,
connection: Connection,
walletClient: SolanaWalletClient,
parameters: z.infer<typeof getNftInfoParametersSchema>,
Expand Down
2 changes: 1 addition & 1 deletion typescript/packages/plugins/solana-magiceden/src/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getNftInfoParametersSchema } from "./parameters";
export function getTools({
apiKey,
connection,
}: { apiKey?: string; connection: Connection }): DeferredTool<SolanaWalletClient>[] {
}: { apiKey: string; connection: Connection }): DeferredTool<SolanaWalletClient>[] {
const getNftListingsTool: DeferredTool<SolanaWalletClient> = {
name: "get_nft_listings",
description: "Gets information about a Solana NFT, from the Magic Eden API",
Expand Down

0 comments on commit 3fa795d

Please sign in to comment.