@exodus/ethereum-api 8.15.0 → 8.16.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
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
+ ## [8.16.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.15.0...@exodus/ethereum-api@8.16.0) (2024-08-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * allow addEthereumChain custom fee data ([#3293](https://github.com/ExodusMovement/assets/issues/3293)) ([824b585](https://github.com/ExodusMovement/assets/commit/824b585c8101b8c5bb50e236f18d33e5e5cadc90))
12
+
13
+
14
+
6
15
  ## [8.15.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.14.0...@exodus/ethereum-api@8.15.0) (2024-08-27)
7
16
 
8
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.15.0",
3
+ "version": "8.16.0",
4
4
  "description": "Ethereum Api",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -32,7 +32,6 @@
32
32
  "@exodus/ethereumholesky-meta": "^1.0.3",
33
33
  "@exodus/ethereumjs-util": "^7.1.0-exodus.7",
34
34
  "@exodus/fetch": "^1.3.0",
35
- "@exodus/key-utils": "^3.1.0",
36
35
  "@exodus/models": "^11.0.0",
37
36
  "@exodus/simple-retry": "^0.0.6",
38
37
  "@exodus/solidity-contract": "^1.1.3",
@@ -65,5 +64,5 @@
65
64
  "type": "git",
66
65
  "url": "git+https://github.com/ExodusMovement/assets.git"
67
66
  },
68
- "gitHead": "0ab4b1325214507e17398f71cfeb7e37c19c6c15"
67
+ "gitHead": "acd3513f5e5defeb1a1e181a4655f431e1b1289f"
69
68
  }
@@ -160,6 +160,7 @@ export const fromAddEthereumChainParameterToFactoryParams = (params) => {
160
160
  isTestnet: params.isTestnet,
161
161
  ...params.plugin, // extra plugin configuration
162
162
  },
163
+ feeData: params.feeData,
163
164
  baseFeePerGas: params.baseFeePerGas,
164
165
  gasPrice: params.gasPrice,
165
166
  eip1559Enabled: params.eip1559Enabled,