@valve-tech/chain-source 0.0.1 → 0.3.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 +35 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,35 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@valve-tech/chain-source` 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.0] — 2026-05-04
10
+
11
+ > **First release.** Part of the `valve-tech/evm-toolkit` v0.3.0
12
+ > synchronized release line. All three packages in the toolkit
13
+ > (`@valve-tech/chain-source`, `@valve-tech/gas-oracle`,
14
+ > `@valve-tech/tx-tracker`) ship in lockstep from this version
15
+ > onwards under a single `vX.Y.Z` tag.
16
+
17
+ ### Added
18
+
19
+ - `@valve-tech/chain-source` published. **This release is a name
20
+ reservation and minimal scaffold** — the package's `index` exports
21
+ nothing yet; the actual implementation of the `ChainSource`
22
+ primitive (capability probing, push-or-poll fan-out for blocks
23
+ and mempool, on-demand `getReceipt` / `getTransaction`,
24
+ multi-subscriber lifecycle gating) lands in subsequent 0.3.x
25
+ releases per the design contract in
26
+ [`docs/tx-tracker-spec.md`](https://github.com/valve-tech/evm-toolkit/blob/main/docs/tx-tracker-spec.md).
27
+
28
+ ### Notes
29
+
30
+ - The version starts at `0.3.0` rather than `0.1.0` because the
31
+ toolkit converted to synchronized versioning at this release — all
32
+ three packages share the same version going forward. This package
33
+ has no published predecessor on npm; consumers can treat `0.3.0`
34
+ as the initial release.
35
+ - `viem ^2.0.0` is the only peer dependency. No runtime deps.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valve-tech/chain-source",
3
- "version": "0.0.1",
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. Implementation lands in v0.1.0this 0.0.1 stub claims the npm name.",
3
+ "version": "0.3.0",
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",
7
7
  "repository": {
@@ -33,6 +33,7 @@
33
33
  "files": [
34
34
  "dist",
35
35
  "README.md",
36
+ "CHANGELOG.md",
36
37
  "LICENSE"
37
38
  ],
38
39
  "scripts": {