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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0-beta.5] - 2026-04-29

### Added

- `scanAnnouncementsForUserUsingSubgraph` for streaming subgraph-backed announcement scans
- Watcher heartbeat and batch metadata for live polling observability
- Examples for streamed scans and composing historical scans with live watching

### Changed

- Use explicit `getContractEvents` polling for watched announcements so startup logs are not missed
- Align package repository metadata with trusted publishing requirements

### Fixed

- Honor `fromBlock` boundaries reliably in `watchAnnouncementsForUser`
- Stop heartbeat polling from starting when watcher setup fails

## [1.0.0-beta.4] - 2026-04-20

### Added
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@scopelift/stealth-address-sdk",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ScopeLift/stealth-address-sdk.git"
"url": "https://github.com/ScopeLift/stealth-address-sdk"
},
"files": [
"dist/config",
Expand Down
Loading