React API
Everything ships in the single rabitwallet package — the provider, components, hooks, and chain
presets. There’s no separate core/react split to wire up.
import {
RabitProvider, // provider
WalletButton, // components
RabitDashboard,
useAuth, // hooks
useWallet,
useBalances,
useSendToken,
useOnRamp,
PRESET_EVM_CHAINS, // chains
ETHEREUM_SEPOLIA,
PRESET_SOLANA_CHAINS,
} from 'rabitwallet'Full type catalogue
Every type is available from the rabitwallet/types entry point:
import type { RabitConfig, WalletAccount, OnRampOrder, EvmChain } from 'rabitwallet/types'