@meshsdk/transaction 1.9.0-beta.67 → 1.9.0-beta.69
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -633,7 +633,7 @@ function clone(configObject) {
|
|
|
633
633
|
for (; len < i; str += "0", len++) ;
|
|
634
634
|
str = toExponential(str, e);
|
|
635
635
|
} else {
|
|
636
|
-
i -= ne;
|
|
636
|
+
i -= ne + (id === 2 && e > ne);
|
|
637
637
|
str = toFixedPoint(str, e, "0");
|
|
638
638
|
if (e + 1 > len) {
|
|
639
639
|
if (--i > 0) for (str += "."; i--; str += "0") ;
|
package/dist/index.js
CHANGED
|
@@ -586,7 +586,7 @@ function clone(configObject) {
|
|
|
586
586
|
for (; len < i; str += "0", len++) ;
|
|
587
587
|
str = toExponential(str, e);
|
|
588
588
|
} else {
|
|
589
|
-
i -= ne;
|
|
589
|
+
i -= ne + (id === 2 && e > ne);
|
|
590
590
|
str = toFixedPoint(str, e, "0");
|
|
591
591
|
if (e + 1 > len) {
|
|
592
592
|
if (--i > 0) for (str += "."; i--; str += "0") ;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/transaction",
|
|
3
|
-
"version": "1.9.0-beta.
|
|
3
|
+
"version": "1.9.0-beta.69",
|
|
4
4
|
"description": "Transactions - https://meshjs.dev/apis/transaction",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"browser": "./dist/index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"typescript": "^5.3.3"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@meshsdk/common": "1.9.0-beta.
|
|
39
|
-
"@meshsdk/core-cst": "1.9.0-beta.
|
|
38
|
+
"@meshsdk/common": "1.9.0-beta.69",
|
|
39
|
+
"@meshsdk/core-cst": "1.9.0-beta.69",
|
|
40
40
|
"@cardano-sdk/core": "^0.45.5",
|
|
41
41
|
"@cardano-sdk/util": "^0.15.5",
|
|
42
42
|
"@cardano-sdk/input-selection": "^0.13.33",
|