@exodus/ethereum-api 8.76.4 → 8.76.5

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.76.5](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.76.4...@exodus/ethereum-api@8.76.5) (2026-06-03)
7
+
8
+ **Note:** Version bump only for package @exodus/ethereum-api
9
+
10
+
11
+
12
+
13
+
6
14
  ## [8.76.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.76.3...@exodus/ethereum-api@8.76.4) (2026-06-02)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.76.4",
3
+ "version": "8.76.5",
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",
@@ -70,5 +70,5 @@
70
70
  "type": "git",
71
71
  "url": "git+https://github.com/ExodusMovement/assets.git"
72
72
  },
73
- "gitHead": "f0c007138096bf627e21fc9e757637394fe2a5b0"
73
+ "gitHead": "651f8346570d40e724109e3df1cd2a3e10323a6f"
74
74
  }
@@ -0,0 +1,23 @@
1
+ import { fetchival } from '@exodus/fetch'
2
+ import assert from 'minimalistic-assert'
3
+
4
+ export const DEFAULT_ASSESS_TRANSACTION_API_URL =
5
+ 'https://simulation.a.exodus.io/simulation/transaction/assessment'
6
+
7
+ export const createAssessTransaction = (
8
+ { apiUrl = DEFAULT_ASSESS_TRANSACTION_API_URL, headers, request = fetchival } = Object.create(
9
+ null
10
+ )
11
+ ) => {
12
+ assert(typeof apiUrl === 'string' && apiUrl.length > 0, 'apiUrl must be a non-empty string')
13
+
14
+ return async function assessTransaction({ payload }) {
15
+ return request(apiUrl, {
16
+ method: 'POST',
17
+ headers: {
18
+ ...headers,
19
+ 'Content-Type': 'application/json',
20
+ },
21
+ }).post(payload)
22
+ }
23
+ }
@@ -1,5 +1,4 @@
1
1
  import { memoizeLruCache } from '@exodus/asset-lib'
2
- import { makeSimulationAPICall } from '@exodus/web3-utils'
3
2
  import assert from 'minimalistic-assert'
4
3
  import ms from 'ms'
5
4
 
@@ -37,25 +36,25 @@ const isRecipientFinding = ({ finding, recipientAddress }) => {
37
36
  })
38
37
  }
39
38
 
40
- const pickFindingForRecipient = ({ findings, recipientAddress }) => {
41
- if (!Array.isArray(findings) || !recipientAddress) return GENERIC_RISK_REASON
42
- const finding = findings.find((candidate) =>
43
- isRecipientFinding({ finding: candidate, recipientAddress })
44
- )
45
- return finding?.title || GENERIC_RISK_REASON
39
+ const findRecipientFinding = ({ findings, recipientAddress }) => {
40
+ if (!Array.isArray(findings) || !recipientAddress) return
41
+ return findings.find((candidate) => isRecipientFinding({ finding: candidate, recipientAddress }))
46
42
  }
47
43
 
48
44
  const parseAssessment = ({ body, recipientAddress }) => {
49
45
  if (!body?.success) return { action: 'NONE' }
50
46
  if (body.data?.recommendation !== 'deny') return { action: 'NONE' }
47
+ const finding = findRecipientFinding({ findings: body.data?.findings, recipientAddress })
48
+ if (!finding) return { action: 'NONE' }
49
+
51
50
  return {
52
51
  action: 'WARN',
53
- reason: pickFindingForRecipient({ findings: body.data?.findings, recipientAddress }),
52
+ reason: finding.title || GENERIC_RISK_REASON,
54
53
  }
55
54
  }
56
55
 
57
- // Rejects after `timeoutMs`. The underlying request keeps running because
58
- // `makeSimulationAPICall` doesn't accept an AbortSignal.
56
+ // Rejects after `timeoutMs`. The underlying request keeps running because the
57
+ // API helper doesn't accept an AbortSignal.
59
58
  const withTimeout = async (promise, timeoutMs) => {
60
59
  let timeoutId
61
60
  const timeoutPromise = new Promise((_resolve, reject) => {
@@ -71,14 +70,9 @@ const withTimeout = async (promise, timeoutMs) => {
71
70
  const noopLogger = { warn: () => {} }
72
71
 
73
72
  export const createCheckTx = (
74
- {
75
- apiUrl,
76
- timeout = DEFAULT_TIMEOUT_MS,
77
- makeApiCall = makeSimulationAPICall,
78
- logger = noopLogger,
79
- } = Object.create(null)
73
+ { timeout = DEFAULT_TIMEOUT_MS, makeApiCall, logger = noopLogger } = Object.create(null)
80
74
  ) => {
81
- assert(apiUrl, 'apiUrl is required')
75
+ assert(typeof makeApiCall === 'function', 'makeApiCall is required')
82
76
 
83
77
  const warn = typeof logger?.warn === 'function' ? logger.warn.bind(logger) : noopLogger.warn
84
78
 
@@ -90,13 +84,7 @@ export const createCheckTx = (
90
84
  if (input !== undefined) transaction.input = input
91
85
  if (hash !== undefined) transaction.hash = hash
92
86
 
93
- const body = await withTimeout(
94
- makeApiCall({
95
- url: apiUrl,
96
- payload: { serviceProvider: 'hypernative', transaction },
97
- }),
98
- timeout
99
- )
87
+ const body = await withTimeout(makeApiCall({ payload: { transaction } }), timeout)
100
88
 
101
89
  if (!body) throw new Error('checkTx: empty response')
102
90
  return parseAssessment({ body, recipientAddress: toAddress })
@@ -1,3 +1,4 @@
1
+ import { createConsoleLogger } from '@exodus/asset-lib'
1
2
  import { ASSET_FAMILY, connectAssetsList } from '@exodus/assets'
2
3
  import bip44Constants from '@exodus/bip44-constants/by-ticker.js'
3
4
  import {
@@ -21,6 +22,7 @@ import lodash from 'lodash'
21
22
  import assert from 'minimalistic-assert'
22
23
 
23
24
  import { addressHasHistoryFactory } from './address-has-history.js'
25
+ import { createAssessTransaction } from './check-tx/create-assess-transaction.js'
24
26
  import { createCheckTx } from './check-tx/index.js'
25
27
  import {
26
28
  createGetBlackListStatus,
@@ -78,9 +80,9 @@ export const createAssetFactory = ({
78
80
  useAbsoluteBalanceAndNonce = false,
79
81
  delisted = false,
80
82
  privacyRpcUrl: defaultPrivacyRpcUrl,
81
- riskAssessment: defaultRiskAssessment,
82
83
  wsGatewayUri: defaultWsGatewayUri,
83
84
  eip7702Supported,
85
+ transactionAssessment: defaultTransactionAssessment,
84
86
  }) => {
85
87
  assert(assetsList, 'assetsList is required')
86
88
  assert(providedFeeData || feeDataConfig, 'feeData or feeDataConfig is required')
@@ -104,7 +106,7 @@ export const createAssetFactory = ({
104
106
  nfts: defaultNfts,
105
107
  customTokens: defaultCustomTokens,
106
108
  privacyRpcUrl: defaultPrivacyRpcUrl,
107
- riskAssessment: defaultRiskAssessment,
109
+ transactionAssessment: defaultTransactionAssessment,
108
110
  }
109
111
  return (
110
112
  {
@@ -125,7 +127,7 @@ export const createAssetFactory = ({
125
127
  supportsCustomFees,
126
128
  useAbsoluteBalanceAndNonce: overrideUseAbsoluteBalanceAndNonce,
127
129
  privacyRpcUrl,
128
- riskAssessment,
130
+ transactionAssessment,
129
131
  } = configWithOverrides
130
132
 
131
133
  const asset = assets[base.name]
@@ -294,16 +296,18 @@ export const createAssetFactory = ({
294
296
 
295
297
  const securityChecks = createSecurityChecks({ eip7702Supported })
296
298
 
299
+ const web3 = createWeb3API({ asset })
300
+
297
301
  let checkTx
298
- if (riskAssessment?.apiUrl) {
302
+ let sendValidations = []
303
+ if (transactionAssessment?.enabled) {
299
304
  checkTx = createCheckTx({
300
- apiUrl: riskAssessment.apiUrl,
301
- logger: riskAssessment.logger,
305
+ makeApiCall: createAssessTransaction({ apiUrl: transactionAssessment.apiUrl }),
306
+ logger: createConsoleLogger('@exodus/ethereum-api:check-tx'),
302
307
  })
308
+ sendValidations = createSendValidations({ assetClientInterface, checkTx })
303
309
  }
304
310
 
305
- const sendValidations = checkTx ? createSendValidations({ assetClientInterface, checkTx }) : []
306
-
307
311
  const moveFunds = moveFundsFactory({
308
312
  baseAssetName: asset.name,
309
313
  assetClientInterface,
@@ -365,7 +369,7 @@ export const createAssetFactory = ({
365
369
  }),
366
370
  }),
367
371
  validateAssetId: address.validate,
368
- web3: createWeb3API({ asset }),
372
+ web3,
369
373
  }
370
374
 
371
375
  const fullAsset = {
@@ -39,14 +39,13 @@ export const createSendValidations = ({ assetClientInterface, checkTx }) => {
39
39
  })
40
40
  if (!fromAddress) return
41
41
 
42
- // Match Hypernative's documented native-send payload shape.
42
+ // Native send: empty calldata, no signed tx hash to pass yet.
43
43
  const result = await checkTx({
44
44
  chain: asset.chainId,
45
45
  fromAddress,
46
46
  toAddress: destinationAddress,
47
47
  value: sendAmount.toBaseString({ unit: false }),
48
48
  input: '0x',
49
- hash: '0x1',
50
49
  })
51
50
 
52
51
  if (result?.action !== 'WARN') return