ReaduseQuery Curated
useGetFeeConfig
Read the singleton's { gasFeeEnabled, tokenFeeEnabled, defaultGasFee, defaultTokenFee } fee config.
Import
@tokenops/sdk/fhe-disperse/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadDescription
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>;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:
useIsRegisteredHas this deployer already called register?useGetWalletsRead the deployer's two registered subwallet addresses.useGetFeesRead consolidated fee information for user — combines per-user resolved fees (getFeeAmounts) with the global feeConfig toggles in one read.useGetBatchLimitsRead the maximum batch size for each of the three disperse modes ("wallet", "direct", "wallet-token-fee").