@valve-tech/wallet-adapter 0.7.0 → 0.9.2
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 +29 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,35 @@ 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.9.2] — 2026-05-08
|
|
10
|
+
|
|
11
|
+
Synchronized release — no changes to this package. Companion fix
|
|
12
|
+
to v0.9.1: the root `build` script now uses `--topological-dev`
|
|
13
|
+
so workspace `devDependencies` (added to `tx-flight-react` in
|
|
14
|
+
v0.9.1) actually drive build ordering. v0.9.2 is the first version
|
|
15
|
+
of the v0.9.x line to land on npm for this package.
|
|
16
|
+
|
|
17
|
+
## [0.9.1] — 2026-05-08
|
|
18
|
+
|
|
19
|
+
*Not published — the Release workflow's Build step failed for the
|
|
20
|
+
same reason as v0.9.0. Superseded by v0.9.2.* Synchronized release;
|
|
21
|
+
no changes to this package itself.
|
|
22
|
+
|
|
23
|
+
## [0.9.0] — 2026-05-08
|
|
24
|
+
|
|
25
|
+
Synchronized release — no changes to this package. Bumped in lockstep
|
|
26
|
+
with the rest of the toolkit, alongside the new
|
|
27
|
+
`@valve-tech/tx-flight-react` package. *Not published — the Release
|
|
28
|
+
workflow's build step failed before publish; superseded by v0.9.1.*
|
|
29
|
+
|
|
30
|
+
## [0.8.1] — 2026-05-07
|
|
31
|
+
|
|
32
|
+
Synchronized release — no changes to this package. Bumped in lockstep with the rest of the toolkit.
|
|
33
|
+
|
|
34
|
+
## [0.8.0] — 2026-05-06
|
|
35
|
+
|
|
36
|
+
Synced version bump; no functional changes.
|
|
37
|
+
|
|
9
38
|
## [0.7.0] — 2026-05-06
|
|
10
39
|
|
|
11
40
|
### Notes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valve-tech/wallet-adapter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Framework-agnostic vocabulary + runtime helpers for EVM dapp wallet integration. WalletAdapter interface (sign + send), WriteHookParams full lifecycle with rich TxContext payloads (chainId + original request) on every event so consumers don't side-channel; six named hooks (onAwaitingSignature, onTransactionHash, onConfirmed, onFailed, onDropped, onReplaced) plus complementary onPhase(event) discriminated-union shape derived from the WritePhaseSteps phase-map; sendTransactionWithHooks + awaitReceiptWithHooks helpers that fire the hooks at real boundaries (with awaitReceiptWithHooks fetching the containing block once on behalf of all downstream consumers); typed WalletRejectedError + ContractRevertedError for instanceof-discriminated catch; plus TX_STATUS / TX_FLOW / TrackedTx for tx-state UI. Lets SDKs and dapps share one contract instead of each redefining it. Part of the valve-tech/evm-toolkit synchronized release line.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/wallet-adapter#readme",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"prepare": "yarn build"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@valve-tech/viem-errors": "^0.
|
|
49
|
+
"@valve-tech/viem-errors": "^0.9.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"viem": "^2.0.0"
|