Skip to main content

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.

Provider

<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:
{
  data: T;
  error: Error | null;
  isLoading: boolean;
  refetch: () => void;
}