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

# Wallet Pregeneration & Claiming

> Pregenerate and claim wallets in your Swift applications (Coming Soon)

export const Link = ({href, label, newTab = false}) => {
  const [isHovered, setIsHovered] = useState(false);
  return <a href={href} target={newTab ? '_blank' : '_self'} rel={newTab ? 'noopener noreferrer' : undefined} className="not-prose inline-block relative text-black font-semibold cursor-pointer border-b-0 no-underline" onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
      {label}
      <span className={`absolute left-0 bottom-0 w-full rounded-sm bg-gradient-to-r from-orange-600 to-purple-600 transition-all duration-300 ${isHovered ? 'h-0.5' : 'h-px'}`} />
    </a>;
};

<Note>
  **Coming Soon**: Wallet pregeneration and claiming functionality for Swift applications is currently in development and will be available soon. Reach out to us at <Link label="support@getpara.com" href="mailto:support@getpara.com?subject=Early%20Access%20to%20Wallet%20Pregeneration%20in%20Swift" /> if you'd like to get early access.
</Note>

Para will soon provide support for wallet pregeneration and claiming in Swift applications, allowing you to create blockchain wallets for users before they complete authentication.

<Card horizontal title="Request Early Access" description="Email us to get early access to wallet pregeneration for Swift" href="mailto:support@getpara.com?subject=Early%20Access%20to%20Wallet%20Pregeneration%20in%20Swift" imgUrl="/images/v3/feature-pregeneration.png" />
