@valve-tech/gas-oracle 0.12.0 → 0.14.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 +21 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,27 @@ All notable changes to `@valve-tech/gas-oracle` are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
+ ## [0.14.0] — 2026-05-14
9
+
10
+ ### Notes
11
+
12
+ - Synchronized release — no changes to this package. Republished at
13
+ 0.14.0 alongside the rest of the toolkit; the substantive change
14
+ is in `@valve-tech/tx-tracker` (new default-on `statusPollEveryBlocks`
15
+ per-hash status poll via `eth_getTransactionByHash` + per-subscription
16
+ `probeTransaction` fallback). See `@valve-tech/tx-tracker`'s
17
+ CHANGELOG for details.
18
+
19
+ ## [0.13.0] — 2026-05-12
20
+
21
+ ### Notes
22
+
23
+ - Synchronized release — no changes to this package. Republished at
24
+ 0.13.0 alongside the rest of the toolkit; the substantive change
25
+ is in `@valve-tech/tx-tracker` (new `TrackOptions.probeMined`
26
+ consumer-supplied mined-detection probe). See
27
+ `@valve-tech/tx-tracker`'s CHANGELOG for details.
28
+
8
29
  ## [0.12.0] — 2026-05-11
9
30
 
10
31
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valve-tech/gas-oracle",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "description": "Multi-tier gas-fee oracle for EVM chains. Computes slow/standard/fast/instant tier recommendations from block-included tips, mempool pending tips, and base-fee trend, with a configurable downside-decay cap and a chain-aware EIP-1559 priority cutoff. viem-native — pass it a PublicClient and it does the rest. Ships viem-actions and viem-transport subpaths for drop-in client extension and transport-wrapping.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/valve-tech/evm-toolkit/tree/main/packages/gas-oracle#readme",
@@ -59,7 +59,7 @@
59
59
  "prepare": "yarn build"
60
60
  },
61
61
  "dependencies": {
62
- "@valve-tech/chain-source": "^0.12.0"
62
+ "@valve-tech/chain-source": "^0.14.0"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "viem": "^2.0.0"