> ## Documentation Index
> Fetch the complete documentation index at: https://turnkey-0e7c1f5b-traian-remove-eip-712-note.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introducing Turnkey Solutions

> Structured starting points for building onchain with Turnkey

export const SolutionCard = ({title, description, icon, href}) => {
  return <a href={href} className="not-prose font-normal group ring-0 ring-transparent cursor-pointer block rounded-lg border border-zinc-950/10 dark:border-white/10 bg-white dark:bg-transparent p-5 no-underline hover:border-primary/40 transition-colors">
      <div style={{
    display: 'flex',
    alignItems: 'flex-start',
    gap: '16px'
  }}>
        <img src={`/images/solutions/light/${icon}.svg`} className="tk-card-icon-img block dark:hidden" alt="" />
        <img src={`/images/solutions/dark/${icon}.svg`} className="tk-card-icon-img hidden dark:block" alt="" />
        <div>
          <div className="font-semibold text-sm text-zinc-950 dark:text-white group-hover:text-primary transition-colors">
            {title}
          </div>
          <div className="text-sm text-zinc-500 dark:text-zinc-400 mt-1">
            {description}
          </div>
        </div>
      </div>
    </a>;
};

To help you build quickly, we've packaged common patterns like wallet provisioning, policy enforcement, and transaction flows into easy integration paths called Turnkey Solutions. Each Solution is built on Turnkey's underlying primitives, so you're never locked into a rigid workflow and can always go deeper when you need more flexibility.

Whether you're building consumer apps, business tooling, or AI-powered systems, there's a solution designed for your use case.

***

## Embedded Wallets

Wallet experiences built directly into your product. Users authenticate with email, passkeys, or social login — you control the UX.

<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '12px'}}>
  <SolutionCard title="Embedded Consumer Wallets" icon="embedded-consumer-wallets" href="/solutions/embedded-wallets/embedded-consumer-wallet" description="Non-custodial wallets with plug-and-play UI for consumer onboarding." />

  <SolutionCard title="Embedded Business Wallets" icon="embedded-business-wallets" href="/solutions/embedded-wallets/embedded-business-wallets" description="Multi-user access with policy controls and automated payment flows." />

  <SolutionCard title="Embedded Wallet-as-a-Service" icon="embedded-wallet-as-a-service" href="/solutions/embedded-wallets/embedded-waas" description="White-labeled wallets with isolated user environments for your own wallet product." />
</div>

***

## Company Wallets

Wallets your organization operates for onchain automation — high-volume signing with programmable controls.

<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '12px'}}>
  <SolutionCard title="Payment Orchestration" icon="payment-orchestration" href="/solutions/company-wallets/payment-orchestration" description="Automated stablecoin movement flows at scale." />

  <SolutionCard title="Smart Contract Management" icon="smart-contract-management" href="/solutions/company-wallets/smart-contract-management" description="Production infrastructure for governing smart contract execution." />

  <SolutionCard title="Agentic Wallets" icon="agentic-wallets" href="/solutions/company-wallets/agentic-wallets" description="Scoped signing authority for AI agents with policy-enforced access controls and spending caps." />
</div>

***

## Key Management

Enterprise-grade security for your most sensitive keys — hardware-backed with programmable access controls.

<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '12px'}}>
  <SolutionCard title="Encryption Key Storage" icon="encryption-key-storage" href="/solutions/key-management/encryption-key-storage" description="Secure key generation and policy-controlled access for encrypted data." />

  <SolutionCard title="Enterprise Disaster Recovery" icon="enterprise-disaster-recovery" href="/solutions/key-management/enterprise-disaster-recovery" description="Non-custodial wallet recovery with instant policy enforcement." />
</div>
