@elizaos/plugin-avalanche
Version:
Avalanche blockchain plugin for ElizaOS - enables DeFi operations, token transfers, YAK swaps, and yield strategies
16 lines (13 loc) • 408 B
TypeScript
import { Plugin } from '@elizaos/core';
declare const PROVIDER_CONFIG: {
TOKEN_ADDRESSES: Record<string, `0x${string}`>;
STRATEGY_ADDRESSES: Record<string, `0x${string}`>;
YAK_SWAP_CONFIG: {
router: string;
};
TOKEN_MILL_CONFIG: {
factory: string;
};
};
declare const avalanchePlugin: Plugin;
export { PROVIDER_CONFIG, avalanchePlugin, avalanchePlugin as default };