ReaduseQuery
useRecipientVestingsLength
Read the number of vesting schedules owned by recipient.
Import
@tokenops/sdk/fhe-vesting/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadSignature
@tokenops/sdk/fhe-vesting/react
ts
function useRecipientVestingsLength(args: UseRecipientVestingsLengthArgs): UseQueryResult<bigint, Error>;Parameters
Shape of the options object passed to the hook itself.
| Property | Type | Description |
|---|---|---|
| recipient | Address |
Example
components/useRecipientVestingsLengthExample.tsx
tsx
"use client";
import { useRecipientVestingsLength } from "@tokenops/sdk/fhe-vesting/react";
export function Example() {
const { data, isLoading } = useRecipientVestingsLength(/* 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.