Interface AIContext

Blockchain context for AI operations

interface AIContext {
    availableMethods: string[];
    currentSlot?: number;
    epochInfo?: any;
    networkStatus: "healthy" | "degraded" | "unhealthy";
}

Properties

availableMethods: string[]
currentSlot?: number
epochInfo?: any
networkStatus: "healthy" | "degraded" | "unhealthy"