Interface RpcTransportBaseOptions

interface RpcTransportBaseOptions {
    address: string | string[];
    backoff: ((tries: number) => number);
    currentAddress: string;
    failoverThreshold: number;
    options: any;
    timeout: number;
}

Hierarchy (view full)

Properties

address: string | string[]
backoff: ((tries: number) => number)
currentAddress: string
failoverThreshold: number
options: any
timeout: number