@valve-tech/chain-source 0.6.0 → 0.7.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 +15 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,21 @@ 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.7.0] — 2026-05-06
10
+
11
+ ### Notes
12
+
13
+ - Synchronized release — no consumer-visible changes to this package.
14
+ Bumped in lockstep with `@valve-tech/tx-tracker@0.7.0`, the
15
+ long-promised v0.3.x track ChainSource was built to feed (per
16
+ `docs/tx-tracker-spec.md` §3.1). chain-source itself stays
17
+ byte-identical with v0.6.0's dist; this release exists so
18
+ consumers running `npm view @valve-tech/chain-source versions`
19
+ see the toolkit-wide line is at v0.7.0.
20
+ - Internal-only: the workspace test suite is now at 100/100/100/100
21
+ coverage on this package (was 97/97/97/98). No new exports, no
22
+ behavior change.
23
+
9
24
  ## [0.6.0] — 2026-05-05
10
25
 
11
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/chain-source",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Canonical EVM chain-observation primitive: a unified push-or-poll source for new blocks, mempool snapshots, on-demand receipt + tx lookups, and capability disclosure (HTTP / WS / per-method gating). Used as the shared foundation by @valve-tech/gas-oracle and @valve-tech/tx-tracker; consumable directly by anyone building their own derived view on chain state. viem-native. 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/chain-source#readme",