Avalanche SDK Client
    Preparing search index...

    Type Alias AvalancheTransportConfig<transport, rpcSchema, raw>

    AvalancheTransportConfig:
        | { config?: HttpTransportConfig<rpcSchema, raw>; type: "http"; url?: string }
        | { config?: WebSocketTransportConfig; type: "ws"; url?: string }
        | { config?: CustomTransportConfig; provider: any; type: "custom" }
        | { config?: IpcTransportConfig; path: string; type: "ipc" }
        | { config?: FallbackTransportConfig; transports: transport[]; type: "fallback" }

    Type Parameters

    • transport extends Transport
    • rpcSchema extends RpcSchema | undefined = undefined
    • raw extends boolean = false