diff --git a/CHANGELOG.md b/CHANGELOG.md index 95859c0c25..3a6b442d36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ The minor version will be incremented upon a breaking change and the patch versi ### Features +- client: Make `solana_account_decoder` dep public in anchor client ([#3455](https://github.com/coral-xyz/anchor/pull/3455)). - ts: Add optional `options.blockhash` to `Provider.sendAndConfirm` ([#3070](https://github.com/coral-xyz/anchor/pull/3070)). - ts: Add optional `commitment` parameter to `Program.addEventListener` ([#3052](https://github.com/coral-xyz/anchor/pull/3052)). - cli, idl: Pass `cargo` args to IDL generation when building program or IDL ([#3059](https://github.com/coral-xyz/anchor/pull/3059)). diff --git a/client/src/lib.rs b/client/src/lib.rs index 35f5849e98..d28ce43a88 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -112,6 +112,7 @@ pub use anchor_lang; pub use cluster::Cluster; #[cfg(feature = "async")] pub use nonblocking::ThreadSafeSigner; +pub use solana_account_decoder; pub use solana_client; pub use solana_sdk;