Custom hook to fetch the block number of a specific network, despite being supported or not by the app config.

It has a default refetch interval of 10 seconds that can be overridden by passing the options object.

  • Parameters

    • params: {
          chain: Chain;
          options?: Omit<UseSuspenseQueryOptions<unknown, Error, unknown, QueryKey>, "queryKey" | "queryFn">;
      }

      The parameters for the hook.

      • chain: Chain

        The chain object representing the network.

      • Optionaloptions?: Omit<UseSuspenseQueryOptions<unknown, Error, unknown, QueryKey>, "queryKey" | "queryFn">

        Additional options for the useSuspenseQuery hook.

    Returns undefined | bigint

    • The block number of the network.