ReaduseQuery Curated
useManagerFeeInfo
Resolves { feeType, fee } — caller passes the right branch to useClaim.
Import
@tokenops/sdk/fhe-vesting/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadDescription
Read the manager clone's { feeType, fee } in one round-trip. Both fields
are immutable, so the result can be cached for the manager's lifetime.
Signature
@tokenops/sdk/fhe-vesting/react
ts
function useManagerFeeInfo(options: ManagerHookOptions): UseQueryResult<ManagerFeeInfo, Error>;Example
components/useManagerFeeInfoExample.tsx
tsx
"use client";
import { useManagerFeeInfo } from "@tokenops/sdk/fhe-vesting/react";
export function Example() {
const { data, isLoading } = useManagerFeeInfo(/* 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.