IntrospectionuseQuery

useFactoryInitCodeHash

Read the init-code hash the factory would use to CREATE2 an airdrop clone with the given params + gasFee.

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

Description

Read the init-code hash the factory would use to CREATE2 an airdrop clone with the given params + gasFee. Mirrors Solidity's getInitCodeHash selector.

Signature

@tokenops/sdk/fhe-airdrop/react
ts
function useFactoryInitCodeHash(args?: UseFactoryInitCodeHashArgs): UseQueryResult<Hex, Error>;

Parameters

Shape of the options object passed to the hook itself.

PropertyTypeDescription
paramsAirdropParams
gasFeebigint
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 useFactoryInitCodeHash; pick another from the dropdown if you'd rather start there.

Example

@tokenops/sdk/fhe-airdrop/react · @example
tsx
const { data: initCodeHash } = useFactoryInitCodeHash({ params, gasFee });

Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.

See also

Other Introspection hooks in airdrop: