@dfns/lib-taquito 0.7.11-rc.1 → 0.7.12
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/addHexPrefix.js +1 -2
- package/constant.d.ts +1 -1
- package/package.json +4 -7
- package/uint8ArraysEqual.js +1 -2
package/addHexPrefix.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.addHexPrefix =
|
|
3
|
+
exports.addHexPrefix = addHexPrefix;
|
|
4
4
|
function addHexPrefix(inputString) {
|
|
5
5
|
return inputString.startsWith('0x') ? inputString : '0x' + inputString;
|
|
6
6
|
}
|
|
7
|
-
exports.addHexPrefix = addHexPrefix;
|
package/constant.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const TxWatermark: Uint8Array
|
|
1
|
+
export declare const TxWatermark: Uint8Array<ArrayBuffer>;
|
package/package.json
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfns/lib-taquito",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@taquito/taquito": "^17.0.0"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@stablelib/blake2b": "1.0.1",
|
|
9
|
-
"@taquito/utils": "17.5.2"
|
|
10
|
-
"cross-fetch": "3.1.6",
|
|
11
|
-
"@dfns/sdk": "0.7.11-rc.1"
|
|
8
|
+
"@stablelib/blake2b": "^1.0.1",
|
|
9
|
+
"@taquito/utils": "17.5.2"
|
|
12
10
|
},
|
|
13
|
-
"types": "./index.d.ts",
|
|
14
11
|
"main": "./index.js",
|
|
15
12
|
"type": "commonjs"
|
|
16
|
-
}
|
|
13
|
+
}
|
package/uint8ArraysEqual.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uint8ArraysEqual =
|
|
3
|
+
exports.uint8ArraysEqual = uint8ArraysEqual;
|
|
4
4
|
function uint8ArraysEqual(arr1, arr2) {
|
|
5
5
|
if (!arr1 && !arr2) {
|
|
6
6
|
return true;
|
|
@@ -15,4 +15,3 @@ function uint8ArraysEqual(arr1, arr2) {
|
|
|
15
15
|
}
|
|
16
16
|
return true;
|
|
17
17
|
}
|
|
18
|
-
exports.uint8ArraysEqual = uint8ArraysEqual;
|