IntrospectionuseQuery
useConfidentialAirdropFactoryImplementation
Read the FHE-airdrop factory's current implementation() address — the LibClone target every new airdrop clone delegates to.
Import
@tokenops/sdk/fhe-airdrop/reactReturn
{ data, isLoading, error, refetch }Lifecycle
IntrospectionDescription
Read the FHE-airdrop factory's current implementation() address — the
LibClone target every new airdrop clone delegates to.
Signature
@tokenops/sdk/fhe-airdrop/react
ts
function useConfidentialAirdropFactoryImplementation(options?: BaseHookOptions): UseQueryResult<Address, Error>;Example
@tokenops/sdk/fhe-airdrop/react · @example
tsx
const { data: implementation } = useConfidentialAirdropFactoryImplementation();Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.
See also
Other Introspection hooks in airdrop:
useFactoryInitCodeHashRead the init-code hash the factory would use to CREATE2 an airdrop clone with the given params + gasFee.useAirdropDeploymentBlockNumberRead the block number at which this airdrop clone was deployed.useAirdropDomainSeparatorRead the EIP-712 domain separator for this airdrop clone.useAirdropClaimTypehashRead the EIP-712 type hash for Claim(address recipient, bytes32 encryptedAmount).