# RISE Wallet Stack (/docs/builders/rise-wallet)

import { Card, Cards } from 'fumadocs-ui/components/card';
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
import { Zap, Key, Code, BookOpen } from 'lucide-react';

RISE Wallet is a chain-native wallet layer that provides gasless transactions, passkey authentication, and session keys for your dApp. Built on audited smart accounts from Porto and integrated directly into RISE's infrastructure.

## Key Features

* **Gasless by Default**: Users don't need ETH to start using your app
* **Passkey Authentication**: No seed phrases - just biometrics (FaceID, TouchID)
* **Session Keys**: Enable high-frequency interactions without popups
* **3ms Confirmations**: Leverages RISE's shred architecture for instant feedback

## Quick Integration

<Tabs groupId="package-manager" items={["npm", "pnpm", "yarn", "bun"]}>
  <Tab value="npm">
    ```bash
    npm i rise-wallet wagmi viem
    ```
  </Tab>

  <Tab value="pnpm">
    ```bash
    pnpm add rise-wallet wagmi viem
    ```
  </Tab>

  <Tab value="yarn">
    ```bash
    yarn add rise-wallet wagmi viem
    ```
  </Tab>

  <Tab value="bun">
    ```bash
    bun add rise-wallet wagmi viem
    ```
  </Tab>
</Tabs>

```tsx
import { Chains, RiseWallet } from "rise-wallet";
import { riseWallet } from "rise-wallet/wagmi";

export const rwConnector = riseWallet(RiseWallet.defaultConfig);
```

## Learn More

<Cards>
  <Card icon={<Zap className="text-(--rise-purple)" />} title="Overview" href="/docs/rise-wallet" description="Introduction to RISE Wallet features and benefits" />

  <Card icon={<BookOpen className="text-(--rise-purple)" />} title="Getting Started" href="/docs/rise-wallet/minting" description="Interactive tutorials for common use cases" />

  <Card icon={<Key className="text-(--rise-purple)" />} title="Session Keys" href="/docs/rise-wallet/session-keys" description="Build popup-free experiences" />

  <Card icon={<Code className="text-(--rise-purple)" />} title="Integration Guides" href="/docs/rise-wallet/wagmi" description="Framework-specific documentation" />
</Cards>
