Fix: remove buyNFT not working with sdk

This commit is contained in:
Lautaro
2024-12-30 14:00:55 -03:00
parent 35781f4dc1
commit 9fba6484b5
3 changed files with 0 additions and 81 deletions

View File

@@ -38,7 +38,6 @@ import {
rock_paper_scissor,
create_TipLink,
listNFTForSale,
buyNFT,
cancelListing,
} from "../tools";
import {
@@ -360,10 +359,6 @@ export class SolanaAgentKit {
return listNFTForSale(this, nftMint, price);
}
async tensorBuyNFT(nftMint: PublicKey, maxPrice: number): Promise<string> {
return buyNFT(this, nftMint, maxPrice);
}
async tensorCancelListing(nftMint: PublicKey): Promise<string> {
return cancelListing(this, nftMint);
}