Cross-chain interoperability and liquidity plugin for ElizaOS agents via the deBridge protocol.
The deBridge plugin enables ElizaOS agents to perform seamless cross-chain operations, including asset swaps, liquidity bridging, complex transaction hooks, and agent-to-agent payments. Powered by deBridge's Liquidity Network Protocol (DLN), it allows agents to interact confidently across multiple blockchains with complete transaction lifecycle management.
pnpm install @elizaos/plugin-debridge
- CROSS_CHAIN_SWAP: Swap tokens between different blockchains
- LIMIT_ORDER: Create cross-chain swaps with minimum output guarantees
- EXECUTE_DEBRIDGE_HOOK: Attach on-chain actions to cross-chain transactions
- CANCEL_ORDER: Cancel active cross-chain orders
- AGENT_TO_AGENT_PAYMENT: Transfer tokens between agents across chains
- Ethereum and EVM-compatible chains (Polygon, Arbitrum, BNB Chain, etc.)
- Solana
- All chains supported by deBridge protocol
- Extensible architecture for adding new chains
- Real-time transaction status monitoring
- Persistent transaction history
- Detailed error tracking and recovery
- Comprehensive memory integration
- Asset distribution hooks
- Blockchain abstraction (auto-staking, auto-deposit)
- Cross-chain protocol interactions
- Custom transaction triggers
- Natural language extraction of transaction parameters
- Automatic evaluation of transaction intentions
- Context-aware transaction history recall
- Risk assessment and explanation
The plugin is built around five core components:
- Actions: Execute cross-chain operations
- Evaluators: Extract and process transaction information
- Providers: Supply contextual blockchain data
- Services: Manage blockchain connections and monitoring
- Memory Integration: Store transaction history and status
┌─────────────────────────────────────────┐
│ Eliza Agent │
└───────────────┬─────────────────────────┘
│
┌───────────────▼─────────────────────────┐
│ deBridge Plugin │
├─────────────────────────────────────────┤
│ ┌─────────┐ ┌──────────┐ ┌──────────┐ │
│ │ Actions │ │Evaluators│ │Providers │ │
│ └─────┬───┘ └────┬─────┘ └────┬─────┘ │
│ │ │ │ │
│ └────┬──────┴─────────────┘ │
│ │ │
│ ┌───────▼────────┐ │
│ │ Services │ │
│ └───────┬────────┘ │
└────────────┼────────────────────────────┘
│
┌────────────▼────────────────────────────┐
│ Blockchain Networks │
└─────────────────────────────────────────┘
// Import the plugin
import { deBridgePlugin } from "@elizaos/plugin-debridge";
// Add to agent runtime
const runtime = new AgentRuntime({
// ...other config
plugins: [deBridgePlugin]
});
// Trigger a cross-chain swap
await runtime.processAction("CROSS_CHAIN_SWAP", {
content: { text: "Swap 100 USDC from Ethereum to Solana" },
userId: "user123",
roomId: "room456"
});
await runtime.processAction("LIMIT_ORDER", {
content: { text: "Create a limit order to swap 1000 USDC on Polygon and get at least 0.33 ETH on Ethereum" },
userId: "user123",
roomId: "room456"
});
await runtime.processAction("EXECUTE_DEBRIDGE_HOOK", {
content: { text: "Swap 500 USDC from Ethereum to Arbitrum and automatically stake it on Aave" },
userId: "user123",
roomId: "room456"
});
await runtime.processAction("AGENT_TO_AGENT_PAYMENT", {
content: { text: "Pay 50 USDC to TradingAgent on Polygon" },
userId: "user123",
roomId: "room456"
});
Configuration is managed through the agent's character file:
{
"name": "CrossChainAgent",
"plugins": ["debridge-plugin"],
"settings": {
"secrets": {
"ETH_PRIVATE_KEY": "your-private-key",
"SOLANA_PRIVATE_KEY": "your-solana-private-key",
"ETH_RPC_URL": "https://mainnet.infura.io/v3/your-api-key",
"SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com",
"POLYGON_RPC_URL": "https://polygon-rpc.com"
}
}
}
For full functionality, set up the following environment variables or add them to your character's settings:
Variable | Description | Required |
---|---|---|
ETH_PRIVATE_KEY |
Ethereum private key | Yes, for ETH chains |
SOLANA_PRIVATE_KEY |
Solana private key | Yes, for Solana |
ETH_RPC_URL |
Ethereum RPC endpoint | Yes, for Ethereum |
SOLANA_RPC_URL |
Solana RPC endpoint | Yes, for Solana |
POLYGON_RPC_URL |
Polygon RPC endpoint | For Polygon |
ARBITRUM_RPC_URL |
Arbitrum RPC endpoint | For Arbitrum |
BNBCHAIN_RPC_URL |
BNB Chain RPC endpoint | For BNB Chain |
Action | Description | Parameters |
---|---|---|
CROSS_CHAIN_SWAP |
Execute a basic cross-chain swap | sourceChain, destChain, tokenIn, tokenOut, amount, recipient |
LIMIT_ORDER |
Create a limit order with minimum output | sourceChain, destChain, tokenIn, tokenOut, amountIn, minAmountOut, recipient |
EXECUTE_DEBRIDGE_HOOK |
Execute a transaction with a hook | sourceChain, destChain, tokenIn, tokenOut, amount, recipient, hookType, hookParams |
AGENT_TO_AGENT_PAYMENT |
Transfer tokens between agents | sourceChain, destChain, tokenSymbol, amount, recipientAgent |
CANCEL_ORDER |
Cancel an active order | orderId |
Evaluator | Description |
---|---|
TRANSACTION_EVALUATOR |
Extracts cross-chain transaction intent from messages |
ORDER_STATUS_EVALUATOR |
Tracks and updates order status information |
Provider | Description |
---|---|
deBridgeStatusProvider |
Provides information about active cross-chain transactions |
Service | Description |
---|---|
BlockchainService |
Manages blockchain connections and interactions |
DeBridgeMonitorService |
Monitors transaction status and updates |
The plugin integrates with Eliza's memory system for complete transaction lifecycle management:
- Transaction Records: Stored under the "transactions" type
- Error Tracking: Stored under the "errors" type
- Transaction Intent: Extracted and stored via evaluators
- Status Updates: Tracked through memory updates
-
Transaction Stuck Pending
- Verify blockchain RPC endpoints are operational
- Check if transaction meets minimum requirements (e.g., gas, fees)
- Confirm blockchain networks are not congested
-
Order Creation Fails
- Verify private keys are correctly configured
- Check token approval settings
- Ensure sufficient balance for fees
-
Hook Execution Errors
- Validate hook data format is correct
- Verify hook parameters match destination chain requirements
- Check for compatibility with target contracts
The plugin provides several diagnostic capabilities:
// Check service initialization
const blockchainService = runtime.getService<BlockchainService>(ServiceType.BLOCKCHAIN);
console.log(blockchainService.isInitialized());
// View active transactions
const transactions = await runtime.messageManager.getMemories({
roomId: "room456",
unique: true,
tableName: "transactions"
});
console.log(transactions);
// Check order status
const orderId = "0x1234abcd";
const status = await blockchainService.checkOrderStatus("ethereum", orderId);
console.log(status);
-
Private Key Management
- Store private keys securely in environment variables or encrypted storage
- Never expose keys in logs or client-side code
- Consider using key management services for production
-
Transaction Validation
- Always validate transaction parameters before execution
- Set appropriate limits for transaction amounts
- Verify recipient addresses carefully
-
Chain Selection
- Validate that chains are supported before initiating transactions
- Check for chain-specific requirements or limitations
- Be aware of finality differences between chains
The plugin can be extended to work with dePort for enhanced cross-chain liquidity:
import { dePortPlugin } from "@elizaos/plugin-deport";
const runtime = new AgentRuntime({
// ...other config
plugins: [deBridgePlugin, dePortPlugin]
});
-
Enhanced Chain Support
- Adding support for additional chains as deBridge expands
- Optimized chain-specific transaction handling
- Improved cross-chain rate calculation
-
Advanced Hook Templates
- Pre-built hooks for common DeFi operations
- User-defined hook templates
- Multi-step transaction hooks
-
Risk Management
- Transaction simulation before execution
- Gas estimation improvements
- Slippage protection mechanisms
-
Integration Enhancements
- Direct integration with dePort API
- Support for cross-chain NFT operations
- Integration with additional protocols
-
Advanced UX
- Transaction visualization components
- Cross-chain portfolio tracking
- Enhanced transaction history management
Contributions are welcome! Please see the CONTRIBUTING.md file for more information.
Special thanks to:
- The Story Protocol to (open a Hackthon)[https://x.com/StoryProtocol/status/1894054655325319484]
- The deBridge team for their protocol and documentation
- The Eliza Core development team
- The Eliza community for their contributions and feedback
MIT