Calls the "getClaimConditionByTokenId" function on the contract.
import { ClaimableERC1155 } from "thirdweb/modules"; const result = await ClaimableERC1155.getClaimConditionByTokenId({ contract, tokenId: ...,});
function getClaimCondition( options: BaseTransactionOptions<GetClaimConditionByTokenIdParams>,): Promise<{ allowlistMerkleRoot: `0x${string}`; auxData: string; availableSupply: bigint; currency: string; endTimestamp: number; maxMintPerWallet: bigint; pricePerUnit: bigint; startTimestamp: number;}>;
The options for the getClaimConditionByTokenId function.
let options: BaseTransactionOptions<GetClaimConditionByTokenIdParams>;
let returnType: Promise<{ allowlistMerkleRoot: `0x${string}`; auxData: string; availableSupply: bigint; currency: string; endTimestamp: number; maxMintPerWallet: bigint; pricePerUnit: bigint; startTimestamp: number;}>;
The parsed result of the function call.