useActiveClaimConditionForWallet
Hook for getting the active claim condition on a drop contract for a specific wallet address.
As part of our improved claim conditions update, each wallet address can have unique claim conditions at any given time. This hook allows you to get the active claim condition for a specific wallet address at this time.
Available for contracts that implement the claim conditions interface; such as NFT Drop, Edition Drop, and Token Drop.
import { useActiveClaimConditionForWallet } from "@thirdweb-dev/react";
const { data, isLoading, error } = useActiveClaimConditionForWallet(
contract,
"{{wallet_address}}",
);
Usage
Provide your drop contract as the first argument to the hook.
- Returns the claim condition specific to the wallet address if found in the claimer snapshot.
- Returns the default claim condition on the contract if the address is not found in the claimer snapshot.
- Populates the
error
field if there is no active claim condition on the contract.
import {
useActiveClaimConditionForWallet,
useContract,
useAddress,
} from "@thirdweb-dev/react";
// Your smart contract address
const contractAddress = "{{contract_address}}";
function App() {
// Contract can be any contract that implements claim conditions.
// Including ERC721, ERC1155, and ERC20 drop contracts.
const address = useAddress();
const { contract } = useContract(contractAddress);
const { data, isLoading, error } = useActiveClaimConditionForWallet(
contract,
address,
);
}