@exodus/ethereum-api 8.73.3 → 8.73.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 CHANGED
@@ -3,6 +3,14 @@
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.73.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.73.3...@exodus/ethereum-api@8.73.4) (2026-05-08)
7
+
8
+ **Note:** Version bump only for package @exodus/ethereum-api
9
+
10
+
11
+
12
+
13
+
6
14
  ## [8.73.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.73.2...@exodus/ethereum-api@8.73.3) (2026-05-06)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.73.3",
3
+ "version": "8.73.4",
4
4
  "description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Ethereum and EVM-based blockchains",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -67,5 +67,5 @@
67
67
  "type": "git",
68
68
  "url": "git+https://github.com/ExodusMovement/assets.git"
69
69
  },
70
- "gitHead": "fe7c27f31aa14bf777660af02300c92def4b4a8c"
70
+ "gitHead": "0f905031fd11e779f86c002f1ecc18d5ea3439c5"
71
71
  }
package/src/tx-create.js CHANGED
@@ -119,13 +119,11 @@ const resolveTxFactoryGasPrices = async ({
119
119
  tipGasPrice: providedTipGasPrice,
120
120
  txToReplace,
121
121
  nonce,
122
- walletAccount,
123
122
  }) => {
124
123
  assert(assetClientInterface, 'expected assetClientInterface')
125
124
  assert(baseAsset, 'expected baseAsset')
126
125
  assert(feeData, 'expected feeData')
127
126
  assert(Number.isInteger(nonce), 'expected integer nonce')
128
- assert(walletAccount, 'expected walletAccount')
129
127
 
130
128
  const {
131
129
  gasPrice: maybeGasPrice,
@@ -327,7 +325,6 @@ const createBumpUnsignedTx = async ({
327
325
  feeData,
328
326
  nonce,
329
327
  txToReplace: maybeTxToReplace,
330
- walletAccount,
331
328
  })
332
329
 
333
330
  return createUnsignedTxWithFees({
@@ -431,7 +428,6 @@ export const createTxFactory = ({ chainId, assetClientInterface, useAbsoluteNonc
431
428
  nonce,
432
429
  tipGasPrice: providedTipGasPrice,
433
430
  txToReplace: maybeTxToReplace,
434
- walletAccount,
435
431
  })
436
432
 
437
433
  if (nft) {