ReaduseQuery
useGetBatchLimits
Read the maximum batch size for each of the three disperse modes ("wallet", "direct", "wallet-token-fee").
Import
@tokenops/sdk/fhe-disperse/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadDescription
Read the maximum batch size for each of the three disperse modes
("wallet", "direct", "wallet-token-fee"). 0n means no limit.
Signature
@tokenops/sdk/fhe-disperse/react
ts
function useGetBatchLimits(options?: BaseHookOptions): UseQueryResult<BatchLimits, Error>;Example
@tokenops/sdk/fhe-disperse/react · @example
tsx
const { data: limits } = useGetBatchLimits();
// limits → { holding, direct, tokenFee }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.useGetFeeConfigRead the singleton's { gasFeeEnabled, tokenFeeEnabled, defaultGasFee, defaultTokenFee } fee config.