Type Alias Transport<TType, TRpcAttributes, TEIP1193RequestFn>

Transport<TType, TRpcAttributes, TEIP1193RequestFn>: (<TChain>({ chain, }: {
    chain?: TChain;
    pollingInterval?: ClientConfig["pollingInterval"];
    retryCount?: TransportConfig["retryCount"];
    timeout?: TransportConfig["timeout"];
}) => {
    config: TransportConfig<TType>;
    request: TEIP1193RequestFn;
    value?: TRpcAttributes;
})

Type Parameters