@metamask/gas-fee-controller 26.0.2 → 26.0.3
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 +10 -1
- package/dist/GasFeeController.d.cts +2 -2
- package/dist/GasFeeController.d.mts +2 -2
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [26.0.3]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/network-controller` from `^29.0.0` to `^30.0.0` ([#7996](https://github.com/MetaMask/core/pull/7996))
|
|
15
|
+
- Bump `@metamask/polling-controller` from `^16.0.2` to `^16.0.3` ([#7996](https://github.com/MetaMask/core/pull/7996))
|
|
16
|
+
- Bump `@metamask/controller-utils` from `^11.18.0` to `^11.19.0` ([#7995](https://github.com/MetaMask/core/pull/7995))
|
|
17
|
+
|
|
10
18
|
## [26.0.2]
|
|
11
19
|
|
|
12
20
|
### Changed
|
|
@@ -488,7 +496,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
488
496
|
|
|
489
497
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
490
498
|
|
|
491
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.
|
|
499
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.3...HEAD
|
|
500
|
+
[26.0.3]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.2...@metamask/gas-fee-controller@26.0.3
|
|
492
501
|
[26.0.2]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.1...@metamask/gas-fee-controller@26.0.2
|
|
493
502
|
[26.0.1]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@26.0.0...@metamask/gas-fee-controller@26.0.1
|
|
494
503
|
[26.0.0]: https://github.com/MetaMask/core/compare/@metamask/gas-fee-controller@25.0.0...@metamask/gas-fee-controller@26.0.0
|
|
@@ -157,8 +157,8 @@ type GasFeePollingInput = {
|
|
|
157
157
|
networkClientId: NetworkClientId;
|
|
158
158
|
};
|
|
159
159
|
declare const GasFeeController_base: (abstract new (...args: any[]) => {
|
|
160
|
-
readonly "__#
|
|
161
|
-
"__#
|
|
160
|
+
readonly "__#15@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
161
|
+
"__#15@#intervalLength": number | undefined;
|
|
162
162
|
setIntervalLength(intervalLength: number): void;
|
|
163
163
|
getIntervalLength(): number | undefined;
|
|
164
164
|
_startPolling(input: GasFeePollingInput): void;
|
|
@@ -157,8 +157,8 @@ type GasFeePollingInput = {
|
|
|
157
157
|
networkClientId: NetworkClientId;
|
|
158
158
|
};
|
|
159
159
|
declare const GasFeeController_base: (abstract new (...args: any[]) => {
|
|
160
|
-
readonly "__#
|
|
161
|
-
"__#
|
|
160
|
+
readonly "__#15@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
161
|
+
"__#15@#intervalLength": number | undefined;
|
|
162
162
|
setIntervalLength(intervalLength: number): void;
|
|
163
163
|
getIntervalLength(): number | undefined;
|
|
164
164
|
_startPolling(input: GasFeePollingInput): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/gas-fee-controller",
|
|
3
|
-
"version": "26.0.
|
|
3
|
+
"version": "26.0.3",
|
|
4
4
|
"description": "Periodically calculates gas fee estimates based on various gas limits as well as other data displayed on transaction confirm screens",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@metamask/base-controller": "^9.0.0",
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
52
|
+
"@metamask/controller-utils": "^11.19.0",
|
|
53
53
|
"@metamask/eth-query": "^4.0.0",
|
|
54
54
|
"@metamask/ethjs-unit": "^0.3.0",
|
|
55
|
-
"@metamask/network-controller": "^
|
|
56
|
-
"@metamask/polling-controller": "^16.0.
|
|
55
|
+
"@metamask/network-controller": "^30.0.0",
|
|
56
|
+
"@metamask/polling-controller": "^16.0.3",
|
|
57
57
|
"@metamask/utils": "^11.9.0",
|
|
58
58
|
"@types/bn.js": "^5.1.5",
|
|
59
59
|
"@types/uuid": "^8.3.0",
|
|
@@ -64,15 +64,14 @@
|
|
|
64
64
|
"@babel/runtime": "^7.23.9",
|
|
65
65
|
"@metamask/auto-changelog": "^3.4.4",
|
|
66
66
|
"@ts-bridge/cli": "^0.6.4",
|
|
67
|
-
"@types/jest": "^
|
|
67
|
+
"@types/jest": "^29.5.14",
|
|
68
68
|
"@types/jest-when": "^2.7.3",
|
|
69
69
|
"deepmerge": "^4.2.2",
|
|
70
|
-
"jest": "^
|
|
70
|
+
"jest": "^29.7.0",
|
|
71
71
|
"jest-when": "^3.4.2",
|
|
72
72
|
"nock": "^13.3.1",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"typedoc": "^0.24.8",
|
|
73
|
+
"ts-jest": "^29.2.5",
|
|
74
|
+
"typedoc": "^0.25.13",
|
|
76
75
|
"typedoc-plugin-missing-exports": "^2.0.0",
|
|
77
76
|
"typescript": "~5.3.3"
|
|
78
77
|
},
|