IntrospectionuseQuery

useManagerDeploymentBlockNumber

Read the manager clone's immutable DEPLOYMENT_BLOCK_NUMBER — the block at which the factory deployed this clone via LibClone.

Import
@tokenops/sdk/fhe-vesting/react
Return
{ data, isLoading, error, refetch }
Lifecycle
Introspection

Description

Read the manager clone's immutable DEPLOYMENT_BLOCK_NUMBER — the block at which the factory deployed this clone via LibClone.

Signature

@tokenops/sdk/fhe-vesting/react
ts
function useManagerDeploymentBlockNumber(options: ManagerHookOptions): UseQueryResult<bigint, Error>;
Want to run a similar shape interactively? The Playground ships 8 ready presets across vesting / airdrop / disperse — deploy a manager, create a vesting, claim, and the airdrop / disperse equivalents. The deep-link above auto-selects the closest preset to useManagerDeploymentBlockNumber; pick another from the dropdown if you'd rather start there.

Example

components/useManagerDeploymentBlockNumberExample.tsx
tsx
"use client";
import { useManagerDeploymentBlockNumber } from "@tokenops/sdk/fhe-vesting/react";

export function Example() {
  const { data, isLoading } = useManagerDeploymentBlockNumber(/* 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 Introspection hooks in vesting: