We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
JoinFill
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider, pubsub
Currently, the JoinFill implementation leads to highly verbose provider types.
We can improve this by using a tuple approach that removes layering and reduces verbosity.
e.g tuple Fillers<(GasFiller, NonceFiller, ChainIdFiller)>
Fillers<(GasFiller, NonceFiller, ChainIdFiller)>
We can achieve the above without perf cost as this approach doesn't use dynamic dispatch.
No response
The text was updated successfully, but these errors were encountered:
provider
Fillers
yash-atreya
Successfully merging a pull request may close this issue.
Component
provider, pubsub
Describe the feature you would like
Currently, the
JoinFill
implementation leads to highly verbose provider types.We can improve this by using a tuple approach that removes layering and reduces verbosity.
e.g tuple
Fillers<(GasFiller, NonceFiller, ChainIdFiller)>
We can achieve the above without perf cost as this approach doesn't use dynamic dispatch.
Additional context
No response
The text was updated successfully, but these errors were encountered: