@exodus/bitcoin-api 2.3.1 → 2.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Exodus bitcoin-api",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -37,8 +37,8 @@
37
37
  "devDependencies": {
38
38
  "@exodus/bcash-meta": "^1.0.0",
39
39
  "@exodus/bip-schnorr": "0.6.6-fork-1",
40
- "@exodus/bitcoin-meta": "^1.0.0",
40
+ "@exodus/bitcoin-meta": "^1.0.1",
41
41
  "@noble/secp256k1": "~1.5.3"
42
42
  },
43
- "gitHead": "f8d65434ff4e35d66c1da37051f2dae30da419b7"
43
+ "gitHead": "5bc09581d58d29a80871f4fbb189ff2dcf389b96"
44
44
  }
@@ -424,6 +424,7 @@ export class BitcoinMonitorScanner {
424
424
 
425
425
  if (isSent) {
426
426
  txLogItem.feeAmount = currency.defaultUnit(txItem.fees || 0)
427
+ txLogItem.feeCoinName = assetName
427
428
  if (isSelfSent) {
428
429
  txLogItem.selfSend = true
429
430
  txLogItem.coinAmount = currency.ZERO
@@ -357,7 +357,9 @@ export const createAndBroadcastTXFactory = ({
357
357
  txId,
358
358
  confirmations: 0,
359
359
  coinAmount: selfSend ? currency.ZERO : totalAmount.abs().negate(),
360
+ coinName: assetName,
360
361
  feeAmount: fee,
362
+ feeCoinName: assetName,
361
363
  selfSend,
362
364
  data: {
363
365
  sent: selfSend ? [] : receivers,