diff --git a/CHANGELOG.md b/CHANGELOG.md index e60fb48c8..db98afded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The minor version will be incremented upon a breaking change and the patch versi - client: Add option to pass in mock rpc client when using anchor_client ([#3053](https://github.com/coral-xyz/anchor/pull/3053)). - lang: Get discriminator length dynamically ([#3101](https://github.com/coral-xyz/anchor/pull/3101)). - lang: Add non-8-byte discriminator support in `declare_program!` ([#3103](https://github.com/coral-xyz/anchor/pull/3103)). +- client: Make `ThreadSafeSigner` trait public ([#3107](https://github.com/coral-xyz/anchor/pull/3107)). ### Fixes diff --git a/client/src/lib.rs b/client/src/lib.rs index 6a5e8eb64..59d21e699 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -101,6 +101,8 @@ use tokio::{ pub use anchor_lang; pub use cluster::Cluster; +#[cfg(feature = "async")] +pub use nonblocking::ThreadSafeSigner; pub use solana_client; pub use solana_sdk;