Calls the "isNewWinningBid" function on the contract.
import { isNewWinningBid } from "thirdweb/extensions/marketplace"; const result = await isNewWinningBid({ contract, auctionId: ..., bidAmount: ...,});
function isNewWinningBid( options: BaseTransactionOptions<IsNewWinningBidParams>,): Promise<boolean>;
The options for the isNewWinningBid function.
let options: BaseTransactionOptions<IsNewWinningBidParams>;
let returnType: Promise<boolean>;
The parsed result of the function call.