David Philipson
David Philipson
Subscription reconnections were only working for `newHeads` and `logs` subscriptions because of a missing case for the other types. Now all subscription types will reconnect when the connection drops.
newHeads were failing to backfill because of a misuse of the return value of `sendBatch`. Fix this up.
The convention of naming interfaces starting with `I`, e.g. `ILogger`, is an unpopular one in the TypeScript community. Some arguments against it are as follows: * This convention clashes with...