@valve-tech/chain-source 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 +57 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
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.1] — 2026-05-04
|
|
10
|
+
|
|
11
|
+
> **First fully-synchronized release.** v0.3.0 was a partial publish:
|
|
12
|
+
> `@valve-tech/chain-source@0.3.0` made it onto npm, but the
|
|
13
|
+
> simultaneous `@valve-tech/gas-oracle@0.3.0` publish failed with an
|
|
14
|
+
> OIDC trusted-publisher mismatch (the gas-oracle record was pinned
|
|
15
|
+
> to the pre-rename `valve-tech/gas-oracle` repo, not the renamed
|
|
16
|
+
> `valve-tech/evm-toolkit`). The trusted-publisher record was fixed
|
|
17
|
+
> and v0.3.1 re-publishes all three packages at the same version to
|
|
18
|
+
> restore synced state.
|
|
19
|
+
|
|
20
|
+
### Notes
|
|
21
|
+
|
|
22
|
+
- No functional change vs. v0.3.0. This package's contents are
|
|
23
|
+
byte-identical (still an `export {}` stub for the v0.3.x
|
|
24
|
+
implementation roadmap).
|
|
25
|
+
- Use v0.3.1 over v0.3.0 — they're identical in this package, but
|
|
26
|
+
v0.3.1 is the version where every toolkit package ships at the
|
|
27
|
+
same number.
|
|
28
|
+
|
|
29
|
+
## [0.3.0] — 2026-05-04 — *partially published; superseded by 0.3.1*
|
|
30
|
+
|
|
31
|
+
> Published successfully here, but the simultaneous publishes for
|
|
32
|
+
> `@valve-tech/gas-oracle` and `@valve-tech/tx-tracker` did not land
|
|
33
|
+
> (npm OIDC trusted-publisher mismatch on gas-oracle, which then
|
|
34
|
+
> aborted the workflow before tx-tracker). All three packages were
|
|
35
|
+
> re-released as v0.3.1 to restore synced state.
|
|
36
|
+
>
|
|
37
|
+
> The v0.3.0 tarball remains on npm and is byte-identical to v0.3.1
|
|
38
|
+
> for this package.
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- `@valve-tech/chain-source` published. **This release is a name
|
|
43
|
+
reservation and minimal scaffold** — the package's `index` exports
|
|
44
|
+
nothing yet; the actual implementation of the `ChainSource`
|
|
45
|
+
primitive (capability probing, push-or-poll fan-out for blocks
|
|
46
|
+
and mempool, on-demand `getReceipt` / `getTransaction`,
|
|
47
|
+
multi-subscriber lifecycle gating) lands in subsequent 0.3.x
|
|
48
|
+
releases per the design contract in
|
|
49
|
+
[`docs/tx-tracker-spec.md`](https://github.com/valve-tech/evm-toolkit/blob/main/docs/tx-tracker-spec.md).
|
|
50
|
+
|
|
51
|
+
### Notes
|
|
52
|
+
|
|
53
|
+
- First release of this package. No published predecessor on npm.
|
|
54
|
+
- The version starts at `0.3.0` rather than `0.1.0` because the
|
|
55
|
+
toolkit converted to synchronized versioning at this release — all
|
|
56
|
+
three packages share the same version going forward.
|
|
57
|
+
- `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.
|
|
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.
|
|
3
|
+
"version": "0.3.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. 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": {
|