@valve-tech/tx-tracker 0.4.1 → 0.6.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 +24 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,30 @@ 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.6.0] — 2026-05-05
10
+
11
+ ### Notes
12
+
13
+ - Synchronized release — no functional changes to this package
14
+ (still a stub on npm). Bumped in lockstep with
15
+ `@valve-tech/chain-source@0.6.0` (block-stream dedup + head-probe
16
+ gating in the source tick) and `@valve-tech/gas-oracle@0.6.0`
17
+ (now consumes ChainSource via `source?: ChainSource`). The
18
+ tx-tracker implementation track lands in a future minor — this
19
+ version exists to keep the synced version line consistent across
20
+ the toolkit.
21
+
22
+ ## [0.5.0] — 2026-05-05
23
+
24
+ ### Notes
25
+
26
+ - Synchronized release — no changes to this package (still an
27
+ `export {}` stub). Bumped in lockstep with
28
+ `@valve-tech/wallet-adapter@0.5.0`, whose enriched `WriteHookParams`
29
+ / `WritePhaseEvent` shapes are the contract this package will fire
30
+ `onDropped` and `onReplaced` against once it ships. See the
31
+ wallet-adapter changelog for the migration details.
32
+
9
33
  ## [0.4.1] — 2026-05-04
10
34
 
11
35
  ### Notes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/tx-tracker",
3
- "version": "0.4.1",
3
+ "version": "0.6.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",