Custom hook for fetching and managing tokens data. It fetches tokens data and optionally token balances.

  • Parameters

    • params: {
          account?: `0x${string}`;
          chainId?: number;
          withBalance?: boolean;
      } = ...

      Params for fetching tokens data.

      • Optionalaccount?: `0x${string}`

        The account address for which to fetch token balances. If not specified, the connected account will be used.

      • OptionalchainId?: number
      • OptionalwithBalance?: boolean

        Whether to fetch token balances or not. Defaults to true.

    Returns {
        isLoadingBalances: boolean;
    }

    An object containing tokens data and loading state.

    • isLoadingBalances: boolean