We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
EthereumWallet
Since alloy-rs/alloy#2120, We can pass the signer directly into the ProviderBuilder without the need for encapsulating it in an EthereumWallet.
ProviderBuilder
Replace all instances of EthereumWallet being passed to ProviderBuilder via .wallet(..) with just the signer being passed .wallet(signer).
.wallet(..)
.wallet(signer)
The text was updated successfully, but these errors were encountered:
#56 should be done as followup to demonstrate the benefits of using EthereumWallet over just a signer.
Sorry, something went wrong.
No branches or pull requests
Since alloy-rs/alloy#2120, We can pass the signer directly into the
ProviderBuilder
without the need for encapsulating it in anEthereumWallet
.Replace all instances of
EthereumWallet
being passed toProviderBuilder
via.wallet(..)
with just the signer being passed.wallet(signer)
.The text was updated successfully, but these errors were encountered: