Type alias GetPollOptions<transport>
GetPollOptions<transport>: (GetTransportConfig<transport>["type"] extends "webSocket" ? { batch?: undefined; poll?: false; pollingInterval?: undefined; } : never) | { batch?: boolean; poll?: true; pollingInterval?: number; } Type declaration
Optional batch?: boolean
Optional poll?: true
Optional pollingInterval?: number
Whether or not the transaction hashes should be batched on each invocation.