diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f64ede985..634ef077c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ * [FIX][cli] `miden-client import` now rejects invocations without a file path instead of silently succeeding ([#2450](https://github.com/0xMiden/rust-sdk/pull/2450)). +### Enhancements + +* [rust] Re-exported `NetworkNotePricer` from `miden_client`, allowing downstream users to avoid a direct `miden-tx` dependency ([#2517](https://github.com/0xMiden/rust-sdk/issues/2517)). + ## 0.16.0 (2026-09-07) ### Breaking Changes diff --git a/crates/rust-client/src/lib.rs b/crates/rust-client/src/lib.rs index ffa3e1b552..41efd84a8e 100644 --- a/crates/rust-client/src/lib.rs +++ b/crates/rust-client/src/lib.rs @@ -344,7 +344,7 @@ pub use miden_protocol::{ Word, ZERO, }; -pub use miden_tx::ExecutionOptions; +pub use miden_tx::{ExecutionOptions, NetworkNotePricer}; #[cfg(feature = "tonic")] pub use remote_prover::RemoteTransactionProver;