@exodus/ethereum-api 8.53.1 → 8.53.2

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,16 @@
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.53.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.53.1...@exodus/ethereum-api@8.53.2) (2025-10-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: change Polygon staking delegate default to not wait for confirmation (#6595)
13
+
14
+
15
+
6
16
  ## [8.53.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.53.0...@exodus/ethereum-api@8.53.1) (2025-09-30)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.53.1",
3
+ "version": "8.53.2",
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",
@@ -66,5 +66,5 @@
66
66
  "type": "git",
67
67
  "url": "git+https://github.com/ExodusMovement/assets.git"
68
68
  },
69
- "gitHead": "1793a11e058eff9b73525b29961ba044caa0d918"
69
+ "gitHead": "890149adb5b7fe3119024435d31ea3bce79d155c"
70
70
  }
@@ -68,7 +68,7 @@ export function createPolygonStakingService({
68
68
  return address.toLowerCase()
69
69
  }
70
70
 
71
- async function delegate({ walletAccount, amount, feeData, waitForConfirmation = true } = {}) {
71
+ async function delegate({ walletAccount, amount, feeData, waitForConfirmation = false } = {}) {
72
72
  const [delegatorAddress, { asset, stakingApi }] = await Promise.all([
73
73
  getDelegatorAddress({ walletAccount }),
74
74
  createStakingApi(),