useAuctionWinner
Hook for getting the winner of an auction (or english auction) on a Marketplace or MarketplaceV3 contract.
import { useAuctionWinner } from "@thirdweb-dev/react";
const { data, isLoading, error } = useAuctionWinner(contract, listingId);
Usage
Provide your Marketplace contract and the listing ID as the arguments.
import { useAuctionWinner, useContract } from "@thirdweb-dev/react";
// Your smart contract address
const contractAddress = "{{contract_address}}";
const listingId = "{{listing_id}}";
function App() {
const { contract } = useContract(contractAddress, "marketplace");
const { data, isLoading, error } = useAuctionWinner(
contract,
listingId, // The listing id of the item that you want to get the auction winner for
);
}