> ## 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.

# Connect Multichain Wallets

> Learn how to combine EVM, Solana, and Cosmos wallets with the Para Modal.

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>;
};

This guide will walk you through the process of integrating multiple blockchain wallets into your Para Modal and
Para-enabled application. By combining EVM, Solana, and Cosmos wallet support, you can provide users with a seamless
multi-chain experience.

## Prerequisites

<Note>
  Before integrating wallet connections, ensure you have an existing Para
  project with the Para Modal set up. If you haven't set up Para yet, follow one
  of our Framework Setup guides like this <Link label="React + Vite" href="/v3/react/setup/vite#para-with-react-vite" /> guide.
</Note>

## Setting up Multichain Support

Supporting multiple blockchain ecosystems is simple, all you need to do is install the necessary wallet connectors and
configure them within your Para Provider. Instructions for each connector can be found in the respective guides for each
ecosystem:

<Note>
  Multi chain wallets can only be connected to one chain at a time. Any wallets
  that Para is setup to support across ecosystems will give the give the user a
  choice of ecosystem selection before they connect their wallet.
</Note>

<CardGroup cols={3}>
  <Card title="EVM Wallets" imgUrl="/images/v3/wallets-evm.png" href="/v3/react/guides/external-wallets/evm" description="Connect MetaMask, WalletConnect, and other EVM-compatible wallets with Para." />

  <Card title="Solana Wallets" imgUrl="/images/v3/wallets-solana.png" href="/v3/react/guides/external-wallets/solana" description="Integrate Phantom, Solflare, and other Solana wallets into your Para-powered dApp." />

  <Card title="Cosmos Wallets" imgUrl="/images/v3/wallets-cosmos.png" href="/v3/react/guides/external-wallets/cosmos" description="Connect Keplr and other Cosmos ecosystem wallets with Para applications." />
</CardGroup>

## Examples

Check out our live demo of the Para Modal to configure all wallets:

<Card horizontal title="Modal Designer" fontAwesomeIcon="https://mintlify.b-cdn.net/v6.6.0/regular/palette.svg" href="https://demo.getpara.com/" description="View a live demo of the Para External Wallets Modal in action." />

For a code implementation, check out our GitHub repository:

<Card horizontal title="GitHub Repository" fontAwesomeIcon="https://mintlify.b-cdn.net/v6.6.0/brands/github.svg" href="https://github.com/getpara/examples-hub/tree/3.0.0" description="View the code implementation of the Para Modal with multichain support." />

## Next Steps

Now that you have integrated multichain wallet support, explore chain-specific features and integrations:

<CardGroup cols={3}>
  <Card title="EVM Integrations" fontAwesomeIcon="https://mintlify.b-cdn.net/v6.6.0/brands/ethereum.svg" href="/v3/react/guides/web3-operations/evm/setup-libraries" description="Learn how to integrate with Ethers.js and other EVM tools." />

  <Card title="Solana Integrations" fontAwesomeIcon="https://mintlify.b-cdn.net/v6.6.0/regular/sun-bright.svg" href="/v3/react/guides/web3-operations/solana/setup-libraries" description="Explore Solana-specific features and tools." />

  <Card title="Cosmos Integrations" fontAwesomeIcon="https://mintlify.b-cdn.net/v6.6.0/regular/empty-set.svg" href="/v3/react/guides/web3-operations/cosmos/setup-libraries" description="Discover Cosmos SDK integrations and features." />
</CardGroup>
