useNFTDrop
Deprecated
This hook is deprecated and will be removed in a future major version. You should use useContract instead.
- const nftDrop = useNFTDrop("0x1234...");
+ const nftDrop = useContract("0x1234...", "nft-drop").contract;
Hook for getting an instance of an NFTDrop
contract. This contract is meant to interface with ERC721 compliant NFTs that can be lazily minted.
function useNFTDrop(
contractAddress: RequiredParam<string>,
): undefined | NFTDrop;
Parameters
Returns
type ReturnType = undefined | NFTDrop;
Example
import { useContract } from '@thirdweb-dev/react'
export default function Component() {
const { contract } = useContract("<YOUR-CONTRACT-ADDRESS>", "nft-drop")
// Now you can use the nft drop contract in the rest of the component
// For example, this function will let the connected wallet claim a new NFT
async function claim(quantity) {
await contract.claim(quantity)
}
...
}