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.
Build wallet-enabled AI agents by integrating Para’s wallet infrastructure with Eliza OS. Your agent will create and manage EVM wallets and send transactions across Ethereum-compatible chains.
Prerequisites
You need these components before starting:
Installation and Setup
Install the Para Plugin
Choose your preferred package manager to install the Para plugin : # npm
npm install @elizaos/plugin-para
# pnpm
pnpm add @elizaos/plugin-para
# yarn
yarn add @elizaos/plugin-para
# bun
bun add @elizaos/plugin-para
Configure Environment
Create or update your .env file with Para credentials: # Para Configuration
PARA_API_KEY=your-para-api-key
PARA_ENV=production
# Optional: Chain-specific RPC URLs
ETH_RPC_URL=https://mainnet.infura.io/v3/your-key
POLYGON_RPC_URL=https://polygon-rpc.com
Register the Plugin
Register the Para plugin in your Eliza character configuration: // character.config.ts
import { paraPlugin } from '@elizaos/plugin-para' ;
export const characterConfig = {
name: "ParaAgent" ,
description: "An AI agent with wallet management capabilities" ,
plugins: [ paraPlugin ],
settings: {
secrets: {
PARA_API_KEY: process . env . PARA_API_KEY ,
PARA_ENV: process . env . PARA_ENV || 'production'
}
}
};
Initialize Your Agent
Create your agent with Para capabilities: // index.ts
import { ElizaOS } from '@elizaos/core' ;
import { characterConfig } from './character.config' ;
async function main () {
const agent = new ElizaOS ({
character: characterConfig ,
runtime: {
// Additional runtime configuration
logLevel: 'info' ,
persistState: true
}
});
await agent . start ();
console . log ( '🤖 Para-enabled agent is running!' );
}
main (). catch ( console . error );
Next Steps
Eliza + Para Documentation Add more features to your Eliza + Para integration
Eliza OS Docs Learn more about building AI agents with Eliza
Automated Migration with MCP Intermediate · 15 min · AI-powered migration tooling
Thirdweb Integration Advanced · 40 min · Smart accounts and gas sponsorship
Chrome Extension Integration Advanced · 45 min · Browser extensions with Para wallets