Plugin Integration Guide
This guide walks you through the process of creating a new plugin for the edwin SDK. edwin is a TypeScript library that serves as a bridge between AI agents and DeFi protocols, providing a unified interface for interacting with various blockchain networks and protocols.
Plugin Architecture Overview
The edwin SDK uses a plugin-based architecture to provide a modular and extensible system for protocol integrations. Each plugin:
Extends the
EdwinPlugin
base classProvides tools for specific protocols
Defines parameter schemas using Zod
Implements protocol-specific functionality in service classes
The main components of the plugin architecture are:
EdwinPlugin: Base class for all protocol plugins
EdwinTool: Interface for tools exposed by plugins
EdwinService: Base class for services that implement protocol interactions
Parameter Schemas: Zod schemas that define the input parameters for tools
Directory and File Structure
When creating a new plugin, you should follow this directory and file structure:
Creating a New Plugin
Step 1: Create the Plugin Directory
First, create a new directory for your plugin in the src/plugins
directory:
Step 2: Define Parameter Schemas
Create a parameters.ts
file to define the parameter schemas for your plugin's tools using Zod:
Step 3: Implement the Protocol Service
Create a service class that extends EdwinService
to implement the protocol-specific functionality:
Step 4: Create the Plugin Class
Create a plugin class that extends EdwinPlugin
to define the tools your plugin provides:
Step 5: Export the Plugin
Create an index.ts
file to export your plugin:
Then, update the main plugins index file to include your plugin:
Testing Your Plugin
Testing is a crucial part of plugin development. Create test files for your plugin in the tests
directory:
Writing Tests
Here's an example of how to write tests for your plugin:
Running Tests
To run tests for your plugin, use the following command:
For testing specific files:
Testing Best Practices
When implementing tests for DeFi protocol integrations:
Maintain two types of tests:
Mock tests that use test doubles for reliable CI/CD pipeline execution
Integration tests that use properly funded wallets to verify actual protocol interactions
Never replace or remove actual protocol implementations just to make tests pass. Tests should be fixed by:
Properly configuring test environments with required wallet keys and balances
Adding supplementary mocks where needed while preserving core implementation logic
Using test doubles only for external API calls and network interactions
Maintaining the integrity of protocol-specific business logic
Keep mock implementations strictly in test files and never add them to the SDK source files themselves, even when using environment-based conditionals.
Integrating with the edwin Client
To make your plugin accessible from the edwin client, update the src/client/edwin.ts
file:
Import your plugin:
Add your plugin to the
EdwinPlugins
interface:
Initialize your plugin in the constructor:
Best Practices
Error Handling: Always use proper error handling and logging in your plugin.
Type Safety: Use TypeScript types and Zod schemas for type safety.
Retry Mechanism: Use the
withRetry
utility for blockchain operations that might fail.Logging: Use the
edwinLogger
for consistent logging across the SDK.Parameter Validation: Validate all input parameters using Zod schemas.
Chain Support: Clearly define which chains your plugin supports.
Documentation: Add clear descriptions to your tools and parameters.
Testing: Write comprehensive tests for your plugin.
Troubleshooting
Common Issues
Plugin not loading: Ensure your plugin is properly exported and imported in the edwin client.
Parameter validation errors: Check your Zod schemas for correct validation rules.
Wallet connection issues: Verify that the wallet is properly initialized and connected.
Transaction failures: Use the
withRetry
utility and proper error handling.
Debugging Tips
Use
edwinLogger.debug()
for detailed logging during development.Check the transaction simulation before sending it to the blockchain.
Verify wallet balances and permissions before performing operations.
Test your plugin with mock implementations before using real blockchain interactions.
By following this guide, you should be able to create a new plugin for the edwin SDK that integrates seamlessly with the existing architecture. If you encounter any issues or have questions, please refer to the edwin SDK documentation, join the edwin Discord community for support and discussions, or open an issue on the GitHub repository.
Last updated