ReaduseQuery Curated

useGetFeeConfig

Read the singleton's { gasFeeEnabled, tokenFeeEnabled, defaultGasFee, defaultTokenFee } fee config.

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

Description

Read the on-chain global fee configuration (feeConfig getter).

Returns the FeeConfig struct the contract stores — pass the result straight back to useSetFeeConfig to flip one toggle without re-stating the others.

Signature

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

Example

@tokenops/sdk/fhe-disperse/react · @example
tsx
const { data: cfg } = useGetFeeConfig();
// cfg → { gasFeeEnabled, tokenFeeEnabled, defaultGasFee, defaultTokenFee }

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

See also

Other Read hooks in disperse: