UNPKG

@venly/wallet-mcp

Version:

Production-ready MCP server enabling AI agents to perform Web3 wallet operations through Venly's blockchain infrastructure. Supports 14+ networks including Ethereum, Polygon, Arbitrum, and stablecoin operations.

16 lines 445 B
/** * Venly MCP Server - Mainnet * * Production blockchain networks server with user-specific authentication */ import { VenlyMCPServer } from './VenlyMCPServer.js'; /** * Mainnet Venly MCP Server * Handles production blockchain networks (Ethereum, Polygon, BSC, etc.) */ export class VenlyMCPServerMainnet extends VenlyMCPServer { constructor() { super('production'); } } //# sourceMappingURL=VenlyMCPServerMainnet.js.map