ReaduseQuery
useManagerMaxRevokeBatchSize
Read the manager clone's maxRevokeBatchSize — upper bound for batchRevokeVesting.
Import
@tokenops/sdk/fhe-vesting/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadSignature
@tokenops/sdk/fhe-vesting/react
ts
function useManagerMaxRevokeBatchSize(options: ManagerHookOptions): UseQueryResult<bigint, Error>;Example
components/useManagerMaxRevokeBatchSizeExample.tsx
tsx
"use client";
import { useManagerMaxRevokeBatchSize } from "@tokenops/sdk/fhe-vesting/react";
export function Example() {
const { data, isLoading } = useManagerMaxRevokeBatchSize(/* args */);
if (isLoading) return "loading…";
return <pre>{JSON.stringify(data, null, 2)}</pre>;
}Auto-generated from the hook's shape (the SDK doesn't carry a TSDoc @example here yet).
See also
Other Read hooks in vesting:
useFactoryDefaultGasFeeRead the factory-wide default gas fee (in wei) — applied to new FeeType.Gas manager clones at deployment.useFactoryDefaultTokenFeeRead the factory-wide default token fee in basis points — applied to new FeeType.DistributionToken manager clones at deployment.useFactoryDefaultFeeTypeRead the factory-wide default fee model (FeeType.Gas or FeeType.DistributionToken) applied to newly-created manager clones.useFactoryFeeCollectorRead the factory's current fee collector address.