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

# Overview

The Sophon account is provided via SDKs so you can integrate on your project.

## Sophon account as unique login

*Coming soon*

## Already using a wallet kit/SDK?

Integrate the Sophon Account into your existing application using our SDKs and integration guides. We support popular libraries and frameworks to ensure a smooth integration process.

In most cases, you may already be using one of the following wallet kits:

* [Reown AppKit](https://docs.reown.com/appkit/overview)
* [RainbowKit](https://rainbow.me/)
* [ConnectKit](https://docs.family.co/connectkit)
* [Thirdweb Wallet](https://portal.thirdweb.com/)

To integrate the Sophon Account, follow our [examples repo](https://github.com/sophon-org/sophon-account/tree/main/examples).

<Note>
  By simply declaring the **EIP-6963** emitter, you can use the Sophon Account
  as a connection option in your wallet kit. To learn more about **EIP-6963**,
  check out the [EIP-6963
  documentation](https://eips.ethereum.org/EIPS/eip-6963).
</Note>

```typescript theme={null}

import "@sophon-labs/account-eip6963/mainnet";
// or
import "@sophon-labs/account-eip6963/testnet";

// Then, inside your wallet kit configuration:
...
    enableEIP6963: true,
```

## Live Demos

<CardGroup cols={1}>
  <Card title="EIP-6963" icon="code" href="https://github.com/sophon-org/sophon-account-sso/tree/main/examples/web/eip6963" />
</CardGroup>
