Function useUnclaimedNFTs

  • Beta

    Get all unclaimed NFTs

    Parameters

    • contract: RequiredParam<NFTDrop>

      an instance of a contract that extends the ERC721 spec (NFT drop, Signature Drop, or any custom contract that extends the ERC721 spec)

    • Optional queryParams: {}

      query params to pass to the query for the sake of pagination

      Returns UseQueryResult<NFT[]>

      a response object that includes an array of NFTs that are unclaimed

      Example

      const { data: unclaimedNfts, isLoading, error } = useUnclaimedNFTs(contract, { start: 0, count: 100 });
      

      Twfeature

      ERC721LazyMintable

      See

      Documentation

    Generated using TypeDoc