IntrospectionuseQuery
useAirdropDeploymentBlockNumber
Read the block number at which this airdrop clone was deployed.
Import
@tokenops/sdk/fhe-airdrop/reactReturn
{ data, isLoading, error, refetch }Lifecycle
IntrospectionSignature
@tokenops/sdk/fhe-airdrop/react
ts
function useAirdropDeploymentBlockNumber(options: AirdropHookOptions): UseQueryResult<bigint, Error>;Example
components/useAirdropDeploymentBlockNumberExample.tsx
tsx
"use client";
import { useAirdropDeploymentBlockNumber } from "@tokenops/sdk/fhe-airdrop/react";
export function Example() {
const { data, isLoading } = useAirdropDeploymentBlockNumber(/* 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 airdrop:
useConfidentialAirdropFactoryImplementationRead the FHE-airdrop factory's current implementation() address — the LibClone target every new airdrop clone delegates to.useFactoryInitCodeHashRead the init-code hash the factory would use to CREATE2 an airdrop clone with the given params + gasFee.useAirdropDomainSeparatorRead the EIP-712 domain separator for this airdrop clone.useAirdropClaimTypehashRead the EIP-712 type hash for Claim(address recipient, bytes32 encryptedAmount).