@ethereansos/interfaces-core 0.4.91 → 0.4.92
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/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
@@ -34686,7 +34686,7 @@ var symbols = {
|
|
34686
34686
|
*/
|
34687
34687
|
|
34688
34688
|
function toEthereumSymbol(decimals) {
|
34689
|
-
var d = '1' + new Array(decimals + 1).join('0');
|
34689
|
+
var d = '1' + new Array(parseInt(decimals) + 1).join('0');
|
34690
34690
|
return (Object.entries(symbols).find(function (_ref) {
|
34691
34691
|
var _ref2 = _slicedToArray(_ref, 2);
|
34692
34692
|
_ref2[0];
|