UNPKG

linea-mcp

Version:

A Model Context Protocol server for interacting with the Linea blockchain

8 lines (7 loc) 232 B
import { z } from 'zod'; /** * Schema for verifying if an address is a verified human (PoH-like functionality) */ export const VerifyHumanSchema = z.object({ address: z.string().describe('The address to verify as human'), });