@valve-tech/wallet-adapter 0.5.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 +23 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -6,6 +6,29 @@ 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 changes to this package. Bumped in
14
+ lockstep with `@valve-tech/tx-tracker@0.7.0` (the first real
15
+ implementation release of the per-tx state machine that
16
+ wallet-adapter's `WriteHookParams` contract — `onTransactionHash`,
17
+ `onDropped`, `onReplaced` — is designed to fire against).
18
+ Consumers wiring tx-tracker into wallet-adapter writes will now
19
+ see real `seen-in-block` / `replaced-by` / `unseen-for-N-blocks`
20
+ events instead of stub no-ops.
21
+
22
+ ## [0.6.0] — 2026-05-05
23
+
24
+ ### Notes
25
+
26
+ - Synchronized release — no changes to this package. Bumped in
27
+ lockstep with `@valve-tech/chain-source@0.6.0` (block-stream
28
+ dedup + head-probe gating in the source tick) and
29
+ `@valve-tech/gas-oracle@0.6.0` (now consumes ChainSource via
30
+ `source?: ChainSource`).
31
+
9
32
  ## [0.5.0] — 2026-05-05
10
33
 
11
34
  ### Changed — BREAKING
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/wallet-adapter",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
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.5.0"
49
+ "@valve-tech/viem-errors": "^0.7.0"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "viem": "^2.0.0"