@onekeyfe/hd-core 0.1.24 → 0.1.25
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/data/config.d.ts +1 -1
- package/dist/data/config.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/src/data/config.ts +1 -1
package/dist/data/config.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const DEFAULT_DOMAIN
|
|
1
|
+
export declare const DEFAULT_DOMAIN: string;
|
|
2
2
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/data/config.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/data/config.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,QAAoD,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -10275,7 +10275,7 @@ const UI_REQUEST = {
|
|
|
10275
10275
|
NOT_USE_ONEKEY_DEVICE: 'ui-device_please_use_onekey_device',
|
|
10276
10276
|
};
|
|
10277
10277
|
|
|
10278
|
-
const DEFAULT_DOMAIN = `https://jssdk.onekey.so/`;
|
|
10278
|
+
const DEFAULT_DOMAIN = `https://jssdk.onekey.so/${process.env.VERSION}/`;
|
|
10279
10279
|
|
|
10280
10280
|
const DEFAULT_PRIORITY = 2;
|
|
10281
10281
|
const initialSettings = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onekeyfe/hd-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "OneKey",
|
|
6
6
|
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"url": "https://github.com/OneKeyHQ/hardware-js-sdk/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@onekeyfe/hd-shared": "^0.1.
|
|
29
|
-
"@onekeyfe/hd-transport": "^0.1.
|
|
28
|
+
"@onekeyfe/hd-shared": "^0.1.25",
|
|
29
|
+
"@onekeyfe/hd-transport": "^0.1.25",
|
|
30
30
|
"axios": "^0.27.2",
|
|
31
31
|
"bignumber.js": "^9.0.2",
|
|
32
32
|
"js-sha256": "^0.9.0",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@types/parse-uri": "^1.0.0",
|
|
38
38
|
"@types/semver": "^7.3.9"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "2e8f7aecfd69191596348a5591abba1bf61a20b2"
|
|
41
41
|
}
|
package/src/data/config.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const DEFAULT_DOMAIN = `https://jssdk.onekey.so/`;
|
|
1
|
+
export const DEFAULT_DOMAIN = `https://jssdk.onekey.so/${process.env.VERSION}/`;
|