solana-resilience-kit - v1.0.0
    Preparing search index...

    Interface ResilientRpcConfig

    interface ResilientRpcConfig {
        endpoints: ResilientEndpoint[];
        freshnessAware?: boolean;
        healthMonitor?: HealthMonitor;
        hedge?: number;
        maxAttempts?: number;
        metrics?: Metrics;
        rateLimiter?: CreditRateLimiter;
    }
    Index

    Properties

    endpoints: ResilientEndpoint[]
    freshnessAware?: boolean

    Route to the freshest healthy node first (default true).

    healthMonitor?: HealthMonitor
    hedge?: number

    Send the same read to N endpoints and take the first response (default 1).

    maxAttempts?: number

    Max endpoint attempts per logical request (default = endpoints.length).

    metrics?: Metrics
    rateLimiter?: CreditRateLimiter