> For the complete documentation index, see [llms.txt](https://docs.zama.org/protocol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zama.org/protocol/sdk/api-references/react/usetokenpairsslice.md).

# useTokenPairsSlice

Fetches a range of token wrapper pairs from the registry using start and end indices. This is the low-level pagination primitive — for page-based pagination, use [`useListPairs`](/protocol/sdk/api-references/react/uselistpairs.md) instead.

## Import

```ts
import { useTokenPairsSlice } from "@zama-fhe/react-sdk";
```

## Usage

{% tabs %}
{% tab title="PairSlice.tsx" %}

```tsx
import { useTokenPairsSlice } from "@zama-fhe/react-sdk";

function PairSlice() {
  const { data: pairs, isLoading, error } = useTokenPairsSlice({ fromIndex: 0n, toIndex: 10n });

  if (isLoading) return <p>Loading...</p>;
  if (error) return <p>Error: {error.message}</p>;

  return (
    <ul>
      {pairs?.map((pair) => (
        <li key={pair.tokenAddress}>
          {pair.tokenAddress} &rarr; {pair.confidentialTokenAddress}
        </li>
      ))}
    </ul>
  );
}
```

{% endtab %}
{% endtabs %}

## Parameters

### fromIndex

`bigint | undefined`

Start index (inclusive). Pass `undefined` to disable the query.

```ts
useTokenPairsSlice({ fromIndex: 0n, toIndex: 10n });
```

### toIndex

`bigint | undefined`

End index (exclusive). Pass `undefined` to disable the query.

```ts
useTokenPairsSlice({ fromIndex: 10n, toIndex: 20n });
```

## Return Type

The `data` field resolves to `readonly TokenWrapperPair[]`:

```ts
interface TokenWrapperPair {
  readonly tokenAddress: Address;
  readonly confidentialTokenAddress: Address;
  readonly isValid: boolean;
}
```

## Related

* [useListPairs](/protocol/sdk/api-references/react/uselistpairs.md) -- page-based pagination with metadata support
* [useTokenPairsLength](/protocol/sdk/api-references/react/usetokenpairslength.md) -- get total count for pagination bounds
* [useTokenPair](/protocol/sdk/api-references/react/usetokenpair.md) -- fetch a single pair by index
* [WrappersRegistry](/protocol/sdk/api-references/sdk/wrappersregistry.md) -- SDK-level `getTokenPairsSlice()` method


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.zama.org/protocol/sdk/api-references/react/usetokenpairsslice.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
