Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
539e82f
Add signers bump to 1.91
sergerad Feb 15, 2026
51542fa
Basic impl on current trait
sergerad Feb 16, 2026
1a78747
Add BlockSigner trait and update kms pub key logic
sergerad Feb 16, 2026
cf3d33d
Merge branch 'next' of github.com:0xMiden/miden-node into sergerad-si…
sergerad Feb 16, 2026
bcf8ee6
Changelog
sergerad Feb 16, 2026
8a510e2
Fix merge
sergerad Feb 17, 2026
008bb5c
Merge branch 'next' of github.com:0xMiden/miden-node into sergerad-si…
sergerad Feb 18, 2026
1ebd952
command and kms error
sergerad Feb 18, 2026
1dd7271
RM clones
sergerad Feb 18, 2026
daaf555
pub key der decode
sergerad Feb 18, 2026
05628b1
update bootstrap
sergerad Feb 18, 2026
6b85c15
e2e working needs cleanup
sergerad Feb 18, 2026
73d52fd
Cleanup
sergerad Feb 19, 2026
b7dfece
More cleanup
sergerad Feb 19, 2026
939ecce
Lint
sergerad Feb 19, 2026
5f493ca
key id env
sergerad Feb 19, 2026
fef2deb
Machete
sergerad Feb 19, 2026
20467c6
Dedupe
sergerad Feb 19, 2026
548eb0f
typo
sergerad Feb 19, 2026
8958797
Dockerfile
sergerad Feb 19, 2026
4e4239b
Update comment
sergerad Feb 19, 2026
f362668
Add validator signer enum
sergerad Feb 19, 2026
6d96d51
anyhow context
sergerad Feb 19, 2026
23aaf30
fix changelog
sergerad Feb 19, 2026
77dcb9d
RM block_on
sergerad Feb 19, 2026
38f34c3
Merge branch 'next' of github.com:0xMiden/miden-node into sergerad-si…
sergerad Feb 19, 2026
7b41038
chore: migrate to base 0904e2c61
mmagician Feb 19, 2026
77a4db7
fix: token supply at idx 0
mmagician Feb 19, 2026
fb7329d
fix: restore GenesisState generics for BlockSigner compatibility
cursoragent Feb 20, 2026
e70dfd5
refactor: use TokenMetadata instead of raw Word manipulation in genes…
cursoragent Feb 20, 2026
b145efd
style: fix rustfmt formatting
cursoragent Feb 20, 2026
e307582
Source not from
sergerad Feb 22, 2026
f3e0c55
Update hashing comment
sergerad Feb 22, 2026
3272750
reword
sergerad Feb 22, 2026
f284675
Fix flag
sergerad Feb 22, 2026
9a27006
Changelog
sergerad Feb 22, 2026
d35c8e4
RM more #[from]
sergerad Feb 22, 2026
647c3e5
Merge branch 'next' of github.com:0xMiden/miden-node into sergerad-si…
sergerad Feb 23, 2026
dfa4712
Use from_der
sergerad Feb 24, 2026
8f04063
Merge branch 'next' of github.com:0xMiden/miden-node into sergerad-si…
sergerad Feb 24, 2026
6e4126a
Improve comments and fix merge
sergerad Feb 24, 2026
2f35b35
Merge branch 'next' into mmagician-base-update
juan518munoz Feb 24, 2026
b4cac6b
chore: update lockfile
juan518munoz Feb 24, 2026
97132b5
Merge branch 'sergerad-signing-backend' into mmagician-base-update
juan518munoz Feb 24, 2026
dc4088c
Merge next
Mirko-von-Leipzig Feb 26, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- [BREAKING] Remove `SynState` and introduce `SyncChainMmr` ([#1591](https://github.com/0xMiden/miden-node/issues/1591)).
- Introduce `SyncChainMmr` RPC endpoint to sync chain MMR deltas within specified block ranges ([#1591](https://github.com/0xMiden/miden-node/issues/1591)).
- Fixed `TransactionHeader` serialization for row insertion on database & fixed transaction cursor on retrievals ([#1701](https://github.com/0xMiden/miden-node/issues/1701)).
- Added KMS signing support in validator ([#1677](https://github.com/0xMiden/miden-node/pull/1677)).

### Changes

Expand All @@ -24,7 +25,6 @@
- Improved tracing span fields ([#1650](https://github.com/0xMiden/miden-node/pull/1650))
- Replaced NTX Builder's in-memory state management with SQLite-backed persistence; account states, notes, and transaction effects are now stored in the database and inflight state is purged on startup ([#1662](https://github.com/0xMiden/miden-node/pull/1662)).
- [BREAKING] Reworked `miden-remote-prover`, removing the `worker`/`proxy` distinction and simplifying to a `worker` with a request queue ([#1688](https://github.com/0xMiden/miden-node/pull/1688)).
- Added KMS signing support in validator ([#1677](https://github.com/0xMiden/miden-node/pull/1677)).

## v0.13.7 (2026-02-25)

Expand Down
Loading
Loading