@valve-tech/tx-tracker 0.0.1 → 0.3.1
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.
- package/CHANGELOG.md +46 -0
- package/package.json +3 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@valve-tech/tx-tracker` are documented in
|
|
4
|
+
this file.
|
|
5
|
+
|
|
6
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
7
|
+
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
8
|
+
|
|
9
|
+
## [0.3.1] — 2026-05-04
|
|
10
|
+
|
|
11
|
+
> **First fully-synchronized release.** Part of the
|
|
12
|
+
> `valve-tech/evm-toolkit` v0.3.1 synchronized release line. All
|
|
13
|
+
> three packages in the toolkit (`@valve-tech/chain-source`,
|
|
14
|
+
> `@valve-tech/gas-oracle`, `@valve-tech/tx-tracker`) ship in
|
|
15
|
+
> lockstep from this version onwards under a single `vX.Y.Z` tag.
|
|
16
|
+
|
|
17
|
+
### Notes
|
|
18
|
+
|
|
19
|
+
- v0.3.1 contents are byte-identical to the planned v0.3.0 — still
|
|
20
|
+
a name reservation and minimal scaffold (the `index` exports
|
|
21
|
+
nothing). The actual per-tx state machine (the `TxEvent`
|
|
22
|
+
discriminated union, `TxTrackerStore` interface + in-memory
|
|
23
|
+
default, bulk-subscription matchers, reorg detector, three
|
|
24
|
+
consumption shapes) lands in subsequent 0.3.x releases per the
|
|
25
|
+
design contract in
|
|
26
|
+
[`docs/tx-tracker-spec.md`](https://github.com/valve-tech/evm-toolkit/blob/main/docs/tx-tracker-spec.md).
|
|
27
|
+
- v0.3.0 was tagged but did not publish to npm — the toolkit-wide
|
|
28
|
+
release workflow failed at the gas-oracle publish step (OIDC
|
|
29
|
+
trusted-publisher mismatch from the repo rename) and aborted
|
|
30
|
+
before reaching this package. The publisher record was fixed and
|
|
31
|
+
v0.3.1 re-releases all three packages.
|
|
32
|
+
- `viem ^2.0.0` is the only peer dependency. The dependency on
|
|
33
|
+
`@valve-tech/chain-source` will be declared once the implementation
|
|
34
|
+
actually imports it (subsequent 0.3.x release).
|
|
35
|
+
|
|
36
|
+
## [0.3.0] — 2026-05-04 — *unpublished; superseded by 0.3.1*
|
|
37
|
+
|
|
38
|
+
> Tagged but never published to npm — the toolkit's release workflow
|
|
39
|
+
> aborted before reaching this package's publish step (see Notes
|
|
40
|
+
> above). Superseded by v0.3.1 which carries identical content.
|
|
41
|
+
|
|
42
|
+
## [0.0.1] — 2026-05-04 — *initial name-reservation publish*
|
|
43
|
+
|
|
44
|
+
> Manually published from a maintainer's machine during the toolkit
|
|
45
|
+
> rename + first-publish setup. No content — `index` exports nothing.
|
|
46
|
+
> Superseded by the v0.3.x synchronized line.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valve-tech/tx-tracker",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
3
|
+
"version": "0.3.1",
|
|
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",
|
|
7
7
|
"repository": {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"dist",
|
|
37
37
|
"README.md",
|
|
38
|
+
"CHANGELOG.md",
|
|
38
39
|
"LICENSE"
|
|
39
40
|
],
|
|
40
41
|
"scripts": {
|
|
@@ -46,8 +47,5 @@
|
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"viem": "^2.0.0"
|
|
49
|
-
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"@valve-tech/chain-source": "workspace:^"
|
|
52
50
|
}
|
|
53
51
|
}
|