ReaduseQuery

useAirdropEndTime

Read the airdrop clone's endTime — the unix timestamp when claims close.

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

Description

Read the airdrop clone's endTime — the unix timestamp when claims close. Mutable: the admin can extend it via useExtendClaimWindow when canExtendClaimWindow() is true.

After a successful useExtendClaimWindow, invalidate this query.

Signature

@tokenops/sdk/fhe-airdrop/react
ts
function useAirdropEndTime(options: AirdropHookOptions): UseQueryResult<number, 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 useAirdropEndTime; pick another from the dropdown if you'd rather start there.

Example

components/useAirdropEndTimeExample.tsx
tsx
"use client";
import { useAirdropEndTime } from "@tokenops/sdk/fhe-airdrop/react";

export function Example() {
  const { data, isLoading } = useAirdropEndTime(/* 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 airdrop: