chore: lint

This commit is contained in:
aryan
2024-12-30 07:04:06 +05:30
parent 98369a0912
commit 46ff233f35
4 changed files with 221 additions and 210 deletions

View File

@@ -356,21 +356,15 @@ export class SolanaAgentKit {
async tensorListNFT(
nftMint: PublicKey,
price: number,
expirySeconds?: number
): Promise<string> {
return listNFTForSale(this, nftMint, price, expirySeconds);
return listNFTForSale(this, nftMint, price);
}
async tensorBuyNFT(
nftMint: PublicKey,
maxPrice: number
): Promise<string> {
async tensorBuyNFT(nftMint: PublicKey, maxPrice: number): Promise<string> {
return buyNFT(this, nftMint, maxPrice);
}
async tensorCancelListing(
nftMint: PublicKey
): Promise<string> {
async tensorCancelListing(nftMint: PublicKey): Promise<string> {
return cancelListing(this, nftMint);
}
}