> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fluton.io/llms.txt
> Use this file to discover all available pages before exploring further.

# React SDK

> React SDK for Fluton

### Provider

```js theme={null}
<FlutonProvider client={fluton}>
  <App />
</FlutonProvider>
```

### Hooks (v1)

* `useSupportedChains()`
* `useSupportedTokens(chain)`
* `useBridgeQuote(params, { enabled })`
* `useExecuteBridge() : returns execute(quote) + transaction state`
* `useIntentStatus(intentId) (polling/stream)`
* `useOffers(intentId) (stream)`

Hook return shapes follow TanStack Query style:

```js theme={null}
{
  data: T;
  error: Error | null;
  isLoading: boolean;
  refetch: () => void;
}
```
