Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b6a26a7
feat: improve block selection in `stacks-inspect`
brice-stacks Nov 17, 2025
1d9260b
fix: clippy warnings
brice-stacks Dec 2, 2025
d461655
refactor: cleanup block selection query
brice-stacks Dec 2, 2025
2d50158
fix: panic when duplicate block is found during replay
brice-stacks Dec 2, 2025
e51f898
refactor: remove unnecessary `mut` in `StacksChainState::get_parent_h…
brice-stacks Dec 2, 2025
aa76fe4
chore: fix formatting
brice-stacks Dec 2, 2025
1410c4a
fix(stacks-inspect): `last` option and remove `first` option
brice-stacks Dec 5, 2025
6fd437d
chore: remove unnecessary fields from queries
brice-stacks Dec 5, 2025
48db5d0
feat: store `StacksBlockId` directly instead of `String`
brice-stacks Dec 5, 2025
35f883e
Merge branch 'develop' into feat/stacks-inspect-improvements
brice-stacks Dec 9, 2025
e67c961
Merge branch 'develop' into feat/stacks-inspect-improvements
brice-stacks Dec 12, 2025
9203886
fix: remove `index-range` option from `stacks-inspect`
brice-stacks Dec 12, 2025
9a6e03d
Revert "fix: remove `index-range` option from `stacks-inspect`"
brice-stacks Dec 17, 2025
a8d10bd
chore(stacks-inspect): make <end> exclusive
brice-stacks Dec 17, 2025
d80430c
fix: split `naka-index-range` and `index-range`
brice-stacks Dec 18, 2025
5438293
feat: return count for `index-range` and `naka-index-range`
brice-stacks Dec 18, 2025
9afaaf3
refactor: make `replay_block` return a `Result`
brice-stacks Dec 18, 2025
5d35d61
Merge branch 'develop' into feat/stacks-inspect-improvements
brice-stacks Dec 19, 2025
9487007
feat: update block validation script
brice-stacks Dec 19, 2025
279c6f0
chore: script and output improvements
brice-stacks Dec 19, 2025
88c5d79
Merge branch 'develop' into feat/stacks-inspect-improvements
wileyj Jan 6, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
- Added `result_hex` and `post_condition_aborted` to the block replay RPC endpoint
- Added `--epoch <epoch_number>` flag to `clarity-cli` commands to specify the epoch context for evaluation.
- In the `/v3/transaction/{txid}` RPC endpoint, added `block_height` and `is_canonical` to the response.
- Improved block validation in `stacks-inspect`.

### Changed

- Removed `validate-naka-block` option in `stacks-inspect`, merging it with `validate-block` so that users do not need to differentiate between the two.

### Fixed

Expand Down
Loading