GetClaimParamsOptions
type GetClaimParamsOptions = {  from?: string;  quantity: bigint;  singlePhaseDrop?: boolean;  to: string;} & (  | { type: "erc721" }  | { tokenDecimals: number; type: "erc20" }  | { tokenId: bigint; type: "erc1155" });