@exodus/ethereum-plugin 2.16.2 → 2.16.4
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 +22 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.16.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.16.3...@exodus/ethereum-plugin@2.16.4) (2025-10-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: improve transaction address resolution for gas estimation and encapsulate transaction property evaluation (#6636)
|
|
13
|
+
|
|
14
|
+
* fix: increase evm resistance to txLog race conditions (#6676)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [2.16.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.16.2...@exodus/ethereum-plugin@2.16.3) (2025-10-17)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
* fix: default toTxAddress to be the token address if not provided (#6729)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [2.16.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.16.1...@exodus/ethereum-plugin@2.16.2) (2025-10-02)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @exodus/ethereum-plugin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-plugin",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.4",
|
|
4
4
|
"description": "Ethereum plugin for Exodus SDK powered wallets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"author": "Exodus Movement, Inc.",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
15
|
+
"access": "public",
|
|
16
|
+
"provenance": false
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
19
|
"test": "run -T exodus-test --jest",
|
|
@@ -21,8 +22,8 @@
|
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@exodus/currency": "^6.0.1",
|
|
24
|
-
"@exodus/ethereum-api": "^8.53.
|
|
25
|
-
"@exodus/ethereum-lib": "^5.18.
|
|
25
|
+
"@exodus/ethereum-api": "^8.53.6",
|
|
26
|
+
"@exodus/ethereum-lib": "^5.18.2",
|
|
26
27
|
"@exodus/ethereum-meta": "^2.9.0",
|
|
27
28
|
"@exodus/ethereumjs": "^1.0.0",
|
|
28
29
|
"@exodus/simple-retry": "^0.0.6",
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"type": "git",
|
|
48
49
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "124fa7a939418684d2ae50d8db93ff73c59c4cdc"
|
|
51
52
|
}
|