@valve-tech/chain-source 0.3.1 → 0.4.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 +20 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,26 @@ 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.4.1] — 2026-05-04
|
|
10
|
+
|
|
11
|
+
### Notes
|
|
12
|
+
|
|
13
|
+
- Synchronized release — no changes to this package. Bumped in
|
|
14
|
+
lockstep with `@valve-tech/wallet-adapter@0.4.1` which fixes the
|
|
15
|
+
`workspace:^` leak in its published manifest. See that package's
|
|
16
|
+
changelog for details.
|
|
17
|
+
|
|
18
|
+
## [0.4.0] — 2026-05-04
|
|
19
|
+
|
|
20
|
+
### Notes
|
|
21
|
+
|
|
22
|
+
- Synchronized release — no changes to this package. Bumped in
|
|
23
|
+
lockstep with the rest of the toolkit, which adds two new packages
|
|
24
|
+
(`@valve-tech/viem-errors` and `@valve-tech/wallet-adapter`). The
|
|
25
|
+
v0.3.x ChainSource implementation track is unaffected by this
|
|
26
|
+
release and remains in flight under PR #12; it will land in a
|
|
27
|
+
subsequent version.
|
|
28
|
+
|
|
9
29
|
## [0.3.1] — 2026-05-04
|
|
10
30
|
|
|
11
31
|
> **First fully-synchronized release.** v0.3.0 was a partial publish:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valve-tech/chain-source",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
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",
|
|
@@ -41,9 +41,10 @@
|
|
|
41
41
|
"typecheck": "tsc -p . --noEmit",
|
|
42
42
|
"lint": "eslint src",
|
|
43
43
|
"test": "vitest run",
|
|
44
|
+
"test:coverage": "vitest run --coverage",
|
|
44
45
|
"prepare": "yarn build"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
48
|
"viem": "^2.0.0"
|
|
48
49
|
}
|
|
49
|
-
}
|
|
50
|
+
}
|