@valve-tech/tx-tracker 0.9.3 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ this file.
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/).
8
8
 
9
+ ## [0.10.0] — 2026-05-08
10
+
11
+ Synchronized release — no changes to this package. Republished at
12
+ 0.10.0 alongside the rest of the toolkit. The minor bump (rather
13
+ than patch) reflects the addition of a new sibling package,
14
+ `@valve-tech/trueblocks-sdk`, to the synced release line.
15
+
9
16
  ## [0.9.3] — 2026-05-08
10
17
 
11
18
  Synchronized release — no changes to this package. Republished at
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/tx-tracker",
3
- "version": "0.9.3",
3
+ "version": "0.10.0",
4
4
  "description": "Per-tx state machine for EVM chains: emits neutral observations (`seen-in-mempool`, `seen-in-block`, `replaced-by`, `vanished-from-block`, `unseen-for-N-blocks`, etc.) so wallet UIs, indexers, and relays can write their own interpretations on top. Three consumption shapes (callback, async iterator, snapshot) over one push-based core. Per-method capability detection — works on HTTP, WS, both, or neither. Part of the valve-tech/evm-toolkit synchronized release line — implementation lands in subsequent 0.3.x releases per docs/tx-tracker-spec.md.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/tx-tracker#readme",
@@ -49,7 +49,7 @@
49
49
  "prepare": "yarn build"
50
50
  },
51
51
  "dependencies": {
52
- "@valve-tech/chain-source": "^0.9.3"
52
+ "@valve-tech/chain-source": "^0.10.0"
53
53
  },
54
54
  "peerDependencies": {
55
55
  "viem": "^2.0.0"