@exodus/ethereum-api 2.13.0 → 2.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "2.13.0",
3
+ "version": "2.13.1",
4
4
  "description": "Ethereum Api",
5
5
  "main": "src/index.js",
6
6
  "author": "Exodus Movement, Inc.",
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@exodus/asset-lib": "^3.5.4",
14
14
  "@exodus/crypto": "^1.0.0-rc.0",
15
- "@exodus/ethereum-lib": "^2.13.4",
15
+ "@exodus/ethereum-lib": "^2.13.5",
16
16
  "@exodus/ethereumjs-util": "^7.1.0-exodus.6",
17
17
  "@exodus/simple-retry": "^0.0.6",
18
18
  "fetchival": "0.3.3",
@@ -28,5 +28,5 @@
28
28
  "@exodus/assets-base": "^8.0.136",
29
29
  "@exodus/models": "^8.7.2"
30
30
  },
31
- "gitHead": "4fddf195ead826e4f407841a06e00c794cc41952"
31
+ "gitHead": "7d9f726b6115d756d5fbed46664d466972c0f314"
32
32
  }
@@ -0,0 +1,38 @@
1
+ import { isRpcBalanceAsset } from '@exodus/ethereum-lib'
2
+
3
+ const fixBalance = ({ txLog, balance }) => {
4
+ for (const tx of txLog) {
5
+ // TODO: pending can only be less than a few minutes old, we can only search the latest txs to improve performance
6
+ if (tx.sent && tx.pending && !tx.error) {
7
+ // coinAmount is negative for sent tx
8
+ balance = balance.sub(tx.coinAmount.abs())
9
+ if (tx.coinAmount.unitType.equals(tx.feeAmount.unitType)) {
10
+ balance = balance.sub(tx.feeAmount)
11
+ }
12
+ }
13
+ }
14
+ return balance
15
+ }
16
+
17
+ /**
18
+ * Api method to return the balance based on either account state balances or tx history.
19
+ *
20
+ * @param asset the asset to get the balances
21
+ * @param txLog the txLog when the balance is transaction based
22
+ * @param accountState the account state when the balance is loaded from RPC
23
+ * @returns {{balance}|null} an object with the balance or null if the balance is unknown/zero
24
+ */
25
+ export const getBalances = ({ asset, txLog, accountState }) => {
26
+ if (isRpcBalanceAsset(asset)) {
27
+ const balance =
28
+ asset.baseAsset.name === asset.name
29
+ ? accountState?.balance
30
+ : accountState?.tokenBalances?.[asset.name]
31
+ return balance && !balance.isZero ? { balance: fixBalance({ txLog, balance }) } : null
32
+ }
33
+ return txLog.size
34
+ ? {
35
+ balance: txLog.getMutations().slice(-1)[0].balance,
36
+ }
37
+ : null
38
+ }
package/src/index.js CHANGED
@@ -6,3 +6,4 @@ export * from './fee-monitor'
6
6
  export * from './gas-estimation'
7
7
  export * from './exodus-eth-server'
8
8
  export * from './tx-log'
9
+ export * from './get-balances'
@@ -224,9 +224,8 @@ export class EthereumMonitor extends BaseMonitor {
224
224
  .filter((token) => isRpcBalanceAsset(token) && token.contract.address)
225
225
  .map(async (token) => {
226
226
  const { confirmed } = await server.balanceOf(ourWalletAddress, token.contract.address)
227
- const value = confirmed[token.contract.address]
228
- const balance = token.currency.baseUnit(value || 0)
229
- return { [token.name]: balance }
227
+ const value = token.currency.baseUnit(confirmed[token.contract.address] || 0)
228
+ return value.isZero ? {} : { [token.name]: value }
230
229
  })
231
230
  ))
232
231
  )