@xchainjs/xchain-util
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -0,1 +1,7 @@ | ||
# v.0.2.5 (2021-03-04) | ||
### Breaking change | ||
- Update `formatAssetAmountCurrency` to remove bracket. | ||
# v.0.2.4 (2021-03-01) | ||
@@ -2,0 +8,0 @@ |
@@ -528,3 +528,3 @@ import BigNumber from 'bignumber.js'; | ||
return AssetCurrencySymbol.USD + " " + amountFormatted; | ||
return amountFormatted + " (" + ticker + ")"; | ||
return amountFormatted + " " + ticker; | ||
} | ||
@@ -531,0 +531,0 @@ return "$ " + amountFormatted; |
@@ -531,3 +531,3 @@ 'use strict'; | ||
return exports.AssetCurrencySymbol.USD + " " + amountFormatted; | ||
return amountFormatted + " (" + ticker + ")"; | ||
return amountFormatted + " " + ticker; | ||
} | ||
@@ -534,0 +534,0 @@ return "$ " + amountFormatted; |
{ | ||
"name": "@xchainjs/xchain-util", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "Helper utilities for XChain clients", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
111008