anchor
anchor copied to clipboard
impl signer now includes deref impl signer
Now that Signer
is implemented for all Deref<Target = impl Signer>
within solana-sdk
, we can remove this from the client without introducing breaking changes. This simplifies the code and allows rust-analyzer
to better infer types.
@cavemanloverboy is attempting to deploy a commit to the coral-xyz Team on Vercel.
A member of the Team first needs to authorize it.
Now that
Signer
is implemented for allDeref<Target = impl Signer>
withinsolana-sdk
, we can remove this from the client without introducing breaking changes.Unfortunately not because solana-labs/solana#32181 requires
^1.17
but we still support1.16
.Also, nonblocking client needs to be updated too.
updated nonblocking
client, and removed unused Deref
import. I guess we can wait until 1.17 ships?
updated
nonblocking
client, and removed unusedDeref
import. I guess we can wait until 1.17 ships?
Yes, I think it's better to wait until 1.17
adoption before we make it the minimum version.
updated
nonblocking
client, and removed unusedDeref
import. I guess we can wait until 1.17 ships?Yes, I think it's better to wait until
1.17
adoption before we make it the minimum version.
🫡
this may be ready to go soon
bump