Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0e614ba
feat: implement mint command
Keinberger Dec 9, 2025
f5ce756
chore: update changelog
Keinberger Dec 10, 2025
c72de74
feat: implement new miden-faucet-operator binary
Keinberger Dec 11, 2025
ede1df1
chore(Makefile): update Makefile to include miden-faucet-operator bin…
Keinberger Dec 12, 2025
06f1dd9
docs: update README to include correct client start command
Keinberger Dec 12, 2025
b26a008
feat: rename faucet to faucet-operator and faucet-operator to faucet-…
Keinberger Dec 12, 2025
5324f7c
chore(CHANGELOG): amend statement
Keinberger Dec 15, 2025
8b0a2c4
chore: rename miden-faucet.service file
Keinberger Dec 15, 2025
735310e
fix(docs): correct naming for miden-faucet binaries
Keinberger Dec 15, 2025
9d81d0d
docs: use correct api bind flag
Keinberger Dec 16, 2025
c04b641
feat: implement common response types across operator and client bina…
Keinberger Dec 16, 2025
799ce95
docs: add README for miden-faucet-client binary
Keinberger Dec 16, 2025
6213ac8
chore: linting
Keinberger Dec 16, 2025
f5029ac
fix: prevent tests from being run on miden-faucet binary alias
Keinberger Dec 16, 2025
94e7328
chore: export raw request parameters from miden-faucet-operator
Keinberger Dec 17, 2025
4a8c51c
chore: implement native miden_pow_rate_limiter package in faucet-client
Keinberger Dec 17, 2025
c7352b9
chore(faucet-client): rename account flag to target, quantity to amount
Keinberger Dec 18, 2025
49e14b3
chore(action.yml): amend action workflow according to binary separation
Keinberger Dec 18, 2025
04487c5
chore(publish-debian.yml): amend workflow for binary separation
Keinberger Dec 22, 2025
4fee953
chore(faucet): revert binary rename from miden-faucet-operator to mid…
Keinberger Jan 16, 2026
3874b6e
Update CHANGELOG.md
Keinberger Jan 16, 2026
b5b483c
Update bin/faucet-client/src/main.rs
Keinberger Jan 16, 2026
2c1c2bd
Update docs/src/getting-started/installation.md
Keinberger Jan 16, 2026
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.12.5 (TBD)

- [BREAKING] Renamed the faucet CLI to `miden-faucet-operator`, added a new `miden-faucet-client` binary with the `mint` command ([#195](https://github.com/0xMiden/miden-faucet/pull/195)).

## 0.12.4 (2025-12-04)

- Added version to the metadata endpoint ([#169](https://github.com/0xMiden/miden-faucet/pull/169)).
Expand Down Expand Up @@ -76,7 +80,7 @@
- Redesigned the home frontend ([#20](https://github.com/0xMiden/miden-faucet/pull/20)).
- Redesigned the tokens request flows ([#25](https://github.com/0xMiden/miden-faucet/pull/25)).
- Added faucet supply amounts to the metadata ([#30](https://github.com/0xMiden/miden-faucet/pull/30)).
- Added supply exceeded check ([#31](https://github.com/0xMiden/miden-faucet/pull/31)).
- Added supply exceeded check ([#31](https://github.com/0xMiden/miden-faucet/pull/31)).
- Use HTTP 429 status code for rate limited error ([#51](https://github.com/0xMiden/miden-faucet/pull/51)).
- Replace amount options validation for maximum claimable amount ([#52](https://github.com/0xMiden/miden-faucet/pull/52)).
- Added `mdbook` documentation ([#61](https://github.com/0xMiden/miden-faucet/pull/61)).
Expand Down
178 changes: 160 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["bin/faucet", "crates/faucet"]
members = ["bin/faucet", "bin/faucet-client", "crates/faucet"]

resolver = "2"

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ check: ## Check all targets and features for errors without code generation
.PHONY: install-faucet
install-faucet: ## Installs faucet
${BUILD_PROTO} cargo install --path bin/faucet --locked
${BUILD_PROTO} cargo install --path bin/faucet-client --locked

.PHONY: check-tools
check-tools: ## Checks if development tools are installed
Expand Down
Loading