@exodus/ethereum-api 2.12.0 → 2.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "description": "Ethereum Api",
5
5
  "main": "src/index.js",
6
6
  "author": "Exodus Movement, Inc.",
@@ -11,6 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@exodus/asset-lib": "^3.5.4",
14
+ "@exodus/crypto": "^1.0.0-rc.0",
14
15
  "@exodus/ethereum-lib": "^2.13.4",
15
16
  "@exodus/ethereumjs-util": "^7.1.0-exodus.6",
16
17
  "@exodus/simple-retry": "^0.0.6",
@@ -27,5 +28,5 @@
27
28
  "@exodus/assets-base": "^8.0.136",
28
29
  "@exodus/models": "^8.7.2"
29
30
  },
30
- "gitHead": "de5323b963812c9da9e7554664b5b562605a52bd"
31
+ "gitHead": "4fddf195ead826e4f407841a06e00c794cc41952"
31
32
  }
@@ -6,6 +6,7 @@ import createWebSocket from './ws'
6
6
  import { retry } from '@exodus/simple-retry'
7
7
  import { simpleErc20 } from '@exodus/solidity-contract'
8
8
  import { bufferToHex } from '@exodus/ethereumjs-util'
9
+ import { randomUUID } from '@exodus/crypto/randomUUID'
9
10
 
10
11
  const RETRY_DELAYS = ['10s']
11
12
 
@@ -18,10 +19,10 @@ export function create(defaultURL) {
18
19
  return url.format(obj)
19
20
  })
20
21
 
21
- async function request(module, params = {}, version = 'v1') {
22
+ async function request(module, params = {}, { version = 'v1', method = 'get' } = {}) {
22
23
  const url = urlJoin(version === 'v1' ? API_URL : API_URL.replace('v1', version), module)
23
24
  try {
24
- return await fetchival(url, { timeout: ms('15s') }).get(params)
25
+ return await fetchival(url, { timeout: ms('15s') })[method](params)
25
26
  } catch (err) {
26
27
  let nerr = err
27
28
  if (err.response && err.response.status === 500) {
@@ -106,7 +107,7 @@ export function create(defaultURL) {
106
107
  address,
107
108
  ...opts,
108
109
  },
109
- 'v2'
110
+ { version: 'v2' }
110
111
  )
111
112
  },
112
113
 
@@ -229,5 +230,13 @@ export function create(defaultURL) {
229
230
  method: 'net_version',
230
231
  })
231
232
  },
233
+
234
+ async proxyToCoinNode(requestData) {
235
+ if (!requestData.jsonrpc) requestData.jsonrpc = '2.0'
236
+ if (!requestData.id) requestData.id = randomUUID()
237
+ if (!requestData.params) requestData.params = []
238
+
239
+ return request('proxy', requestData, { version: 'v2', method: 'post' })
240
+ },
232
241
  }
233
242
  }