@meshsdk/core-cst 1.7.19 → 1.7.21
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
|
@@ -1360,7 +1360,7 @@ var fillPool = (bytes) => {
|
|
|
1360
1360
|
poolOffset += bytes;
|
|
1361
1361
|
};
|
|
1362
1362
|
var random = (bytes) => {
|
|
1363
|
-
fillPool(bytes
|
|
1363
|
+
fillPool(bytes |= 0);
|
|
1364
1364
|
return pool.subarray(poolOffset - bytes, poolOffset);
|
|
1365
1365
|
};
|
|
1366
1366
|
var customRandom = (alphabet, defaultSize, getRandom) => {
|
package/dist/index.js
CHANGED
|
@@ -1200,7 +1200,7 @@ var fillPool = (bytes) => {
|
|
|
1200
1200
|
poolOffset += bytes;
|
|
1201
1201
|
};
|
|
1202
1202
|
var random = (bytes) => {
|
|
1203
|
-
fillPool(bytes
|
|
1203
|
+
fillPool(bytes |= 0);
|
|
1204
1204
|
return pool.subarray(poolOffset - bytes, poolOffset);
|
|
1205
1205
|
};
|
|
1206
1206
|
var customRandom = (alphabet, defaultSize, getRandom) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/core-cst",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "1.7.21",
|
|
4
|
+
"description": "Types and utilities functions between Mesh and cardano-js-sdk",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"browser": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@harmoniclabs/cbor": "1.3.0",
|
|
43
43
|
"@harmoniclabs/plutus-data": "1.2.4",
|
|
44
44
|
"@harmoniclabs/uplc": "1.2.4",
|
|
45
|
-
"@meshsdk/common": "1.7.
|
|
45
|
+
"@meshsdk/common": "1.7.21",
|
|
46
46
|
"@stricahq/bip32ed25519": "^1.1.0",
|
|
47
47
|
"@stricahq/cbors": "^1.0.3",
|
|
48
48
|
"pbkdf2": "^3.1.2"
|