useClaimedNFTs
Hook for fetching all claimed NFTs from a given NFT Drop contract.
Available to use on contracts that implement ERC721Claimable
,
such as the NFT Drop.
import { useClaimedNFTs } from "@thirdweb-dev/react";
const { data, isLoading, error } = useClaimedNFTs(contract);
Usage
Provide your NFT Drop contract as the argument to the hook.
import { useClaimedNFTs, useContract } from "@thirdweb-dev/react";
// Your smart contract address
const contractAddress = "{{contract_address}}";
function App() {
// Contract must implement ERC721Claimable, e.g. nft-drop
const { contract } = useContract(contractAddress, "nft-drop");
const { data: nfts, isLoading, error } = useClaimedNFTs(contract);
}