@dfns/lib-taquito 0.4.3-alpha.1 → 0.4.3-alpha.2
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/index.js +1 -1
- package/package.json +12 -1
package/index.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DfnsWallet = void 0;
|
|
4
4
|
const sdk_1 = require("@dfns/sdk");
|
|
5
|
+
const blake2b_1 = require("@stablelib/blake2b");
|
|
5
6
|
const utils_1 = require("@taquito/utils");
|
|
6
7
|
const constant_1 = require("./constant");
|
|
7
|
-
const blake2b_1 = require("@stablelib/blake2b");
|
|
8
8
|
const uint8ArraysEqual_1 = require("./uint8ArraysEqual");
|
|
9
9
|
const addHexPrefix_1 = require("./addHexPrefix");
|
|
10
10
|
const assertSigned = (res) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfns/lib-taquito",
|
|
3
|
-
"version": "0.4.3-alpha.
|
|
3
|
+
"version": "0.4.3-alpha.2",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@taquito/taquito": "^17.0.0",
|
|
6
|
+
"@dfns/sdk": "0.4.3-alpha.2"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@stablelib/blake2b": "1.0.1",
|
|
10
|
+
"@taquito/utils": "17.5.2",
|
|
11
|
+
"buffer": "6.0.3",
|
|
12
|
+
"cross-fetch": "3.1.6",
|
|
13
|
+
"uuid": "9.0.0"
|
|
14
|
+
},
|
|
4
15
|
"main": "./index.js",
|
|
5
16
|
"type": "commonjs"
|
|
6
17
|
}
|