From 28285149b02952cd095e7d2462782f4f04eb6dc5 Mon Sep 17 00:00:00 2001 From: cryptopapi997 <38372048+cryptopapi997@users.noreply.github.com> Date: Sat, 28 Dec 2024 16:36:06 +0800 Subject: [PATCH] client: Make `solana_account_decoder` dep public (#3455) --- CHANGELOG.md | 1 + client/src/lib.rs | 1 + 2 files changed, 2 insertions(+) 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;