# Connecting Wallet (/docs/rise-wallet/connecting)

import { WalletConnect } from "@/components/rise-wallet/WalletConnect";
import { ComponentPreviewTabs } from "@/components/rise-wallet/ComponentPreviewTabs";
import { CODE_EXAMPLES } from "@/components/rise-wallet/code-examples";

# Connecting Wallet

Connecting to RISE Wallet is as simple as using any standard Wagmi connector. The RISE Wallet connector handles passkey authentication automatically, creating a seamless login experience.

<ComponentPreviewTabs code={CODE_EXAMPLES.connect}>
  <WalletConnect />
</ComponentPreviewTabs>

## How it Works

1. **Find the RISE Wallet Connector**: Locate the RISE Wallet connector from the available connectors using its ID `com.risechain.wallet`.
2. **Trigger Connection**: Call the `connect` function with the RISE Wallet connector.
3. **Passkey Authentication**: The user is prompted to authenticate using their device's passkey (FaceID, TouchID, etc.).
4. **Account Ready**: Once authenticated, the account is connected and ready to transact.

The RISE Wallet connector integrates seamlessly with Wagmi's standard hooks like `useAccount`, `useConnect`, and `useDisconnect`, requiring no specialized APIs.
