Calls the "getClaimConditionById" function on the contract.
import { getClaimConditionById } from "thirdweb/extensions/erc1155"; const result = await getClaimConditionById({ contract, tokenId: ..., conditionId: ...,});
function getClaimConditionById(): Promise<{ currency: string; maxClaimableSupply: bigint; merkleRoot: `0x${string}`; metadata: string; pricePerToken: bigint; quantityLimitPerWallet: bigint; startTimestamp: bigint; supplyClaimed: bigint;}>;
The options for the getClaimConditionById function.