You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try_from_signer implementation in SigningClient expects a concrete Signer trait object (which Rust does not support directly), you might need to adjust the function to accept a Box or &dyn Signer.
I've created a wallet using ethers::Wallet which gives me a wallet of type Wallet, I'm unable to pass this wallet as a signer to the try_from_signer function. It gives me an error that Wallet does not satisfy the Signer trait, even though the methods the Signer trait asks for exist in the Wallet.
Maybe the implementation of try_from_signer needs a fix.
The text was updated successfully, but these errors were encountered:
try_from_signer implementation in SigningClient expects a concrete Signer trait object (which Rust does not support directly), you might need to adjust the function to accept a Box or &dyn Signer.
I've created a wallet using ethers::Wallet which gives me a wallet of type Wallet, I'm unable to pass this wallet as a signer to the try_from_signer function. It gives me an error that Wallet does not satisfy the Signer trait, even though the methods the Signer trait asks for exist in the Wallet.
Maybe the implementation of try_from_signer needs a fix.
The text was updated successfully, but these errors were encountered: