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

# Polygon Embedded Wallets

> Non-custodial account abstraction wallets built directly into your app, no browser extension required.

<Card title="Interactive Demo" icon="browser" href="/wallets/examples/interactive-demo">
  Walk through the key flows of a neobank built on a Polygon embedded wallet.
</Card>

Embedded wallets give your users a wallet experience without the friction of extensions, seed phrases, or separate apps. They are non-custodial: users control their keys, and no third party can move funds on their behalf.

Polygon's embedded wallet stack is powered by [Sequence](https://sequence.xyz). Users benefit from smart contract wallets out of the box: sponsored gas, batched transactions, and session-based signing, all with a consumer-grade onboarding experience that works for any fintech or payments product.

## Supported standards

The embedded wallet stack is fully compliant with the following EIPs:

| Standard                                            | Description                                                                                                                                              |
| --------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [EIP-712](https://eips.ethereum.org/EIPS/eip-712)   | Typed structured data signing. Wallets present human-readable data for user approval rather than raw hex.                                                |
| [EIP-1271](https://eips.ethereum.org/EIPS/eip-1271) | Smart contract signature validation. Contracts can verify signatures via `isValidSignature`, enabling contract wallets to sign onchain messages.         |
| [EIP-2098](https://eips.ethereum.org/EIPS/eip-2098) | Compact signature representation. Reduces signature size from 65 to 64 bytes for more efficient onchain verification.                                    |
| [EIP-6492](https://eips.ethereum.org/EIPS/eip-6492) | Signature validation for pre-deploy (counterfactual) contracts. Allows wallets that have not yet been deployed onchain to produce verifiable signatures. |

## Use cases

| Use case                                             | Fit                                                 |
| ---------------------------------------------------- | --------------------------------------------------- |
| Neobank or fintech adding stablecoin wallets         | Ideal                                               |
| Payments app with recurring or batch transfers       | Ideal                                               |
| Consumer product onboarding non-crypto users         | Ideal                                               |
| Multi-step checkout with no approval prompt per step | Ideal                                               |
| Enterprise custody with compliance requirements      | Use [Custodial Wallets](/wallets/custodial-wallets) |
| AI agent executing autonomous transactions           | Use [Agentic Wallets](/wallets/agentic-wallets)     |

## Get started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="bolt" href="/wallets/quickstart">
    Integrate an embedded wallet into your app in minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/wallets/authentication">
    Configure social login, email OTP, and passkey auth flows.
  </Card>

  <Card title="Smart sessions" icon="shield-check" href="/wallets/smart-sessions">
    Scope transaction permissions so users approve once and your app handles the rest.
  </Card>

  <Card title="Wallet operations" icon="arrow-right-arrow-left" href="/wallets/wallet-operations">
    Send transactions, sign messages, and check balances.
  </Card>

  <Card title="Recovery" icon="rotate-left" href="/wallets/recovery">
    Passkeys and timed recovery for user wallet access.
  </Card>

  <Card title="Security architecture" icon="lock" href="/wallets/security">
    How keys are protected and transactions are validated.
  </Card>
</CardGroup>
