@tezos-x/octez.connect-core 1.0.0 → 4.8.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/README.md +0 -2
- package/dist/cjs/constants.js +1 -1
- package/dist/cjs/package.json +2 -2
- package/dist/esm/constants.js +1 -1
- package/dist/esm/package.json +2 -2
- package/package.json +12 -13
package/README.md
CHANGED
|
@@ -7,5 +7,3 @@ This package is part of the `@tezos-x/octez.connect-sdk` project. [Read more](ht
|
|
|
7
7
|
This package contains internal methods that are used by both the dApp and wallet client.
|
|
8
8
|
|
|
9
9
|
Unless you need to import types from this package, you probably don't need to add it to your project.
|
|
10
|
-
|
|
11
|
-
Check our documentation for more information. [Documentation](https://octez-connect.tezos.com)
|
package/dist/cjs/constants.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.BACKEND_URL = exports.NOTIFICATION_ORACLE_URL = exports.BEACON_VERSION = exports.SDK_VERSION = void 0;
|
|
4
|
-
exports.SDK_VERSION = '
|
|
4
|
+
exports.SDK_VERSION = '4.8.2';
|
|
5
5
|
exports.BEACON_VERSION = '3';
|
|
6
6
|
exports.NOTIFICATION_ORACLE_URL = 'https://beacon-notification-oracle.dev.gke.papers.tech';
|
|
7
7
|
exports.BACKEND_URL = 'https://beacon-backend.prod.gke.papers.tech';
|
package/dist/cjs/package.json
CHANGED
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"url": "https://github.com/trilitech/octez.connect/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@tezos-x/octez.connect-types": "1.0.0",
|
|
38
|
+
"@tezos-x/octez.connect-utils": "1.0.0",
|
|
37
39
|
"@stablelib/ed25519": "^2.0.2",
|
|
38
40
|
"@stablelib/nacl": "^2.0.1",
|
|
39
41
|
"@stablelib/utf8": "^2.0.1",
|
|
40
42
|
"@stablelib/x25519-session": "^2.0.1",
|
|
41
|
-
"@tezos-x/octez.connect-types": "1.0.0",
|
|
42
|
-
"@tezos-x/octez.connect-utils": "1.0.0",
|
|
43
43
|
"broadcast-channel": "^7.1.0",
|
|
44
44
|
"bs58check": "4.0.0"
|
|
45
45
|
}
|
package/dist/esm/constants.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const SDK_VERSION = '
|
|
1
|
+
export const SDK_VERSION = '4.8.2';
|
|
2
2
|
export const BEACON_VERSION = '3';
|
|
3
3
|
export const NOTIFICATION_ORACLE_URL = 'https://beacon-notification-oracle.dev.gke.papers.tech';
|
|
4
4
|
export const BACKEND_URL = 'https://beacon-backend.prod.gke.papers.tech';
|
package/dist/esm/package.json
CHANGED
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"url": "https://github.com/trilitech/octez.connect/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@tezos-x/octez.connect-types": "1.0.0",
|
|
38
|
+
"@tezos-x/octez.connect-utils": "1.0.0",
|
|
37
39
|
"@stablelib/ed25519": "^2.0.2",
|
|
38
40
|
"@stablelib/nacl": "^2.0.1",
|
|
39
41
|
"@stablelib/utf8": "^2.0.1",
|
|
40
42
|
"@stablelib/x25519-session": "^2.0.1",
|
|
41
|
-
"@tezos-x/octez.connect-types": "1.0.0",
|
|
42
|
-
"@tezos-x/octez.connect-utils": "1.0.0",
|
|
43
43
|
"broadcast-channel": "^7.1.0",
|
|
44
44
|
"bs58check": "4.0.0"
|
|
45
45
|
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tezos-x/octez.connect-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.8.2",
|
|
4
4
|
"description": "This package contains internal methods that are used by both the dApp and wallet client.",
|
|
5
|
-
"author": "
|
|
6
|
-
"homepage": "https://octez-connect.tezos.com",
|
|
5
|
+
"author": "Andreas Gassmann <a.gassmann@papers.ch>",
|
|
7
6
|
"license": "ISC",
|
|
8
|
-
"main": "dist/cjs/
|
|
9
|
-
"module": "dist/esm/
|
|
10
|
-
"types": "dist/esm/
|
|
7
|
+
"main": "dist/cjs/index.js",
|
|
8
|
+
"module": "dist/esm/index.js",
|
|
9
|
+
"types": "dist/esm/index.d.ts",
|
|
11
10
|
"exports": {
|
|
12
|
-
"require": "./dist/cjs/
|
|
13
|
-
"import": "./dist/esm/
|
|
11
|
+
"require": "./dist/cjs/index.js",
|
|
12
|
+
"import": "./dist/esm/index.js"
|
|
14
13
|
},
|
|
15
14
|
"directories": {
|
|
16
15
|
"lib": "dist/esm",
|
|
@@ -24,24 +23,24 @@
|
|
|
24
23
|
},
|
|
25
24
|
"repository": {
|
|
26
25
|
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/trilitech/octez.connect.git"
|
|
26
|
+
"url": "git+https://github.com/trilitech/octez.connect-sdk.git"
|
|
28
27
|
},
|
|
29
28
|
"scripts": {
|
|
30
29
|
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
|
|
31
30
|
"test": "jest"
|
|
32
31
|
},
|
|
33
32
|
"bugs": {
|
|
34
|
-
"url": "https://github.com/trilitech/octez.connect/issues"
|
|
33
|
+
"url": "https://github.com/trilitech/octez.connect-sdk/issues"
|
|
35
34
|
},
|
|
36
35
|
"dependencies": {
|
|
37
36
|
"@stablelib/ed25519": "^2.0.2",
|
|
38
37
|
"@stablelib/nacl": "^2.0.1",
|
|
39
38
|
"@stablelib/utf8": "^2.0.1",
|
|
40
39
|
"@stablelib/x25519-session": "^2.0.1",
|
|
41
|
-
"@tezos-x/octez.connect-types": "
|
|
42
|
-
"@tezos-x/octez.connect-utils": "
|
|
40
|
+
"@tezos-x/octez.connect-types": "4.8.2",
|
|
41
|
+
"@tezos-x/octez.connect-utils": "4.8.2",
|
|
43
42
|
"broadcast-channel": "^7.1.0",
|
|
44
43
|
"bs58check": "4.0.0"
|
|
45
44
|
},
|
|
46
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "094c210f5e2e6a7f02522d42c3d5438d12cee6a6"
|
|
47
46
|
}
|