Para — Embedded Wallet Infrastructure
Para provides MPC-based embedded wallets for web and mobile apps. Users authenticate (email, phone, OAuth, passkey) and get wallets created automatically — no seed phrases, no extensions. Docs: https://docs.getpara.com Developer Portal: https://developer.getpara.com Chains: EVM (Ethereum, Polygon, Base, etc.), Solana, CosmosAgent Setup
When you receive this file, complete these steps before anything else:-
Save this skill so it persists across sessions:
For non-Claude Code agents, save to your project root:
-
Install the Para CLI:
-
Authenticate (opens browser for OAuth):
-
Verify everything is working:
Para CLI
Setup a New Project
The fastest way to start ispara create, which scaffolds a working app:
.env.
Non-interactive example:
Setup an Existing Project
If you already have a project, use the CLI to configure it:- Environment variable — Set
NEXT_PUBLIC_PARA_API_KEY(Next.js),VITE_PARA_API_KEY(Vite), orEXPO_PUBLIC_PARA_API_KEY(Expo) - CSS import —
import "@getpara/react-sdk/styles.css" - ParaProvider — Wrap your app with
<ParaProvider>(requires aQueryClientfrom@tanstack/react-query) - “use client” — Add directive to files using Para hooks (Next.js only)
Diagnose Issues
para doctor --json in CI.
CLI Command Reference
Authentication
Configuration
PARA_ENVIRONMENT, PARA_ORG_ID, PARA_PROJECT_ID) > .pararc > global config (~/.config/para/config.json) > defaults (beta).
Organizations & Projects
API Keys
Key Configuration
Scaffold
Global Flags
All commands accept:-e beta|prod, --json, -q/--quiet, --no-input, --org <id>, --project <id>.
SDK Packages
| Package | Purpose |
|---|---|
@getpara/react-sdk | React hooks + ParaModal component |
@getpara/core-sdk | Framework-agnostic base SDK |
@getpara/server-sdk | Node.js server-side operations |
@getpara/viem-v2-integration | Viem wallet client signer |
@getpara/ethers-v6-integration | Ethers.js v6 signer |
@getpara/solana-web3js-v1-integration | Solana signer |
@getpara/evm-wallet-connectors | MetaMask, Coinbase, WalletConnect, etc. |
@getpara/solana-wallet-connectors | Phantom, Backpack, Solflare, etc. |
@getpara/cosmos-wallet-connectors | Keplr, Leap |
Webhook Events
user.created, wallet.created, transaction.signed, send.broadcasted, send.confirmed, send.failed, wallet.pregen_claimed, user.external_wallet_verified
API Environments
| Environment | API Key Prefix | Use |
|---|---|---|
beta | para_beta_* | Development and testing |
prod | para_prod_* | Production |