@exodus/ethereum-api 8.10.0 → 8.10.1

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.10.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.10.0...@exodus/ethereum-api@8.10.1) (2024-07-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * use magnifier proxy_v2 to support large NFT txs ([#2788](https://github.com/ExodusMovement/assets/issues/2788)) ([fd80841](https://github.com/ExodusMovement/assets/commit/fd8084196dc2d4620cb5d5a6e6b4501d5bff2f7e))
12
+
13
+
14
+
6
15
  ## [8.10.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.9.4...@exodus/ethereum-api@8.10.0) (2024-07-16)
7
16
 
8
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.10.0",
3
+ "version": "8.10.1",
4
4
  "description": "Ethereum Api",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -66,5 +66,5 @@
66
66
  "type": "git",
67
67
  "url": "git+https://github.com/ExodusMovement/assets.git"
68
68
  },
69
- "gitHead": "00b2058d9dd0ed2c596a040a9df43a6ce0d77945"
69
+ "gitHead": "3695bc8e63b477dc0bb3760897c72bf518289b0a"
70
70
  }
@@ -164,7 +164,11 @@ export function create(defaultURL, ensAssetName) {
164
164
 
165
165
  async sendRawTransaction(data) {
166
166
  const hex = data.startsWith('0x') ? data : '0x' + data
167
- return requestWithRetry('proxy', { method: 'eth_sendRawTransaction', hex })
167
+ return requestWithRetry(
168
+ 'proxy',
169
+ { method: 'eth_sendRawTransaction', params: [hex] },
170
+ { version: 'v2', method: 'post' }
171
+ )
168
172
  },
169
173
 
170
174
  async estimateGas(data, tag = 'latest') {