Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.14.5 (2026-04-10)

- Removed `issuance` field from the network monitor's faucet `GetMetadataResponse` ([#1918](https://github.com/0xMiden/node/pull/1918)).
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remember to update Cargo.toml version to 0.14.5 also. I tend to forget, need some automation to catch it maybe.


## v0.14.4 (2026-04-08)

- Added missing `AuthControlled::allow_all()` mint policy component to genesis faucet accounts ([#1903](https://github.com/0xMiden/node/pull/1903)).
Expand Down
4 changes: 0 additions & 4 deletions bin/network-monitor/assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -554,10 +554,6 @@ function updateDisplay() {
<span class="metric-label">Version:</span>
<span class="metric-value">${details.FaucetTest.faucet_metadata.version || '-'}</span>
</div>
<div class="metric-row">
<span class="metric-label">Current Issuance:</span>
<span class="metric-value">${details.FaucetTest.faucet_metadata.issuance.toLocaleString()}</span>
</div>
<div class="metric-row">
<span class="metric-label">Max Supply:</span>
<span class="metric-value">${details.FaucetTest.faucet_metadata.max_supply.toLocaleString()}</span>
Expand Down
1 change: 0 additions & 1 deletion bin/network-monitor/src/faucet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ struct GetTokensResponse {
pub struct GetMetadataResponse {
version: String,
id: String,
issuance: u64,
max_supply: u64,
decimals: u8,
explorer_url: Option<String>,
Expand Down
Loading