Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/connect-examples/electron-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hardware-example",
"productName": "HardwareExample",
"executableName": "onekey-hardware-example",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"description": "End-to-end encrypted workspaces for teams",
"main": "dist/index.js",
Expand All @@ -22,7 +22,7 @@
"ts:check": "yarn tsc --noEmit"
},
"dependencies": {
"@onekeyfe/hd-transport-electron": "1.1.28",
"@onekeyfe/hd-transport-electron": "1.1.29",
"@stoprocent/noble": "2.3.16",
"debug": "4.3.4",
"electron-is-dev": "^3.0.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/connect-examples/expo-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "expo-example",
"version": "1.1.28",
"version": "1.1.29",
"scripts": {
"start": "cross-env CONNECT_SRC=https://localhost:8087/ yarn expo start --dev-client",
"android": "yarn expo run:android",
Expand All @@ -19,10 +19,10 @@
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.3.3",
"@noble/secp256k1": "^1.7.1",
"@onekeyfe/hd-ble-sdk": "1.1.28",
"@onekeyfe/hd-common-connect-sdk": "1.1.28",
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-web-sdk": "1.1.28",
"@onekeyfe/hd-ble-sdk": "1.1.29",
"@onekeyfe/hd-common-connect-sdk": "1.1.29",
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-web-sdk": "1.1.29",
"@onekeyfe/react-native-ble-utils": "^0.1.3",
"@polkadot/util-crypto": "13.1.1",
"@react-native-async-storage/async-storage": "1.21.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/connect-examples/expo-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onekey-hardware-playground",
"version": "1.1.28",
"version": "1.1.29",
"private": true,
"sideEffects": [
"app/utils/shim.js",
Expand All @@ -17,9 +17,9 @@
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"@onekeyfe/hd-common-connect-sdk": "1.1.28",
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-common-connect-sdk": "1.1.29",
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-core",
"version": "1.1.28",
"version": "1.1.29",
"description": "Core processes and APIs for communicating with OneKey hardware devices.",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
Expand All @@ -25,8 +25,8 @@
"url": "https://github.com/OneKeyHQ/hardware-js-sdk/issues"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"axios": "1.15.2",
"bignumber.js": "^9.0.2",
"bytebuffer": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/api/cardano/CardanoSignMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class CardanoSignMessage extends BaseMethod<CardanoSignMessagePar
init() {
this.checkDeviceId = true;
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
this.allowUsePreInitialize = true;
this.allowUsePreInitialize = false;

const { payload } = this;
validateParams(payload, [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/api/cardano/CardanoSignTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class CardanoSignTransaction extends BaseMethod<any> {
init() {
this.checkDeviceId = true;
this.allowDeviceMode = [...this.allowDeviceMode, UI_REQUEST.NOT_INITIALIZE];
this.allowUsePreInitialize = true;
this.allowUsePreInitialize = false;

this.hasBundle = !!this.payload?.bundle;

Expand Down
8 changes: 4 additions & 4 deletions packages/hd-ble-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-ble-sdk",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "ISC",
Expand All @@ -20,8 +20,8 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport-react-native": "1.1.28"
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport-react-native": "1.1.29"
}
}
10 changes: 5 additions & 5 deletions packages/hd-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hardware-cli",
"version": "1.1.28",
"version": "1.1.29",
"description": "OneKey hardware wallet CLI for testing device communication",
"author": "OneKey",
"license": "Apache-2.0",
Expand Down Expand Up @@ -30,10 +30,10 @@
"test": "jest"
},
"dependencies": {
"@onekeyfe/hd-common-connect-sdk": "1.1.28",
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport-usb": "1.1.28",
"@onekeyfe/hd-common-connect-sdk": "1.1.29",
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport-usb": "1.1.29",
"commander": "^12.0.0"
}
}
16 changes: 8 additions & 8 deletions packages/hd-common-connect-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-common-connect-sdk",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "ISC",
Expand All @@ -20,12 +20,12 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport-emulator": "1.1.28",
"@onekeyfe/hd-transport-http": "1.1.28",
"@onekeyfe/hd-transport-lowlevel": "1.1.28",
"@onekeyfe/hd-transport-usb": "1.1.28",
"@onekeyfe/hd-transport-web-device": "1.1.28"
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport-emulator": "1.1.29",
"@onekeyfe/hd-transport-http": "1.1.29",
"@onekeyfe/hd-transport-lowlevel": "1.1.29",
"@onekeyfe/hd-transport-usb": "1.1.29",
"@onekeyfe/hd-transport-web-device": "1.1.29"
}
}
8 changes: 4 additions & 4 deletions packages/hd-transport-electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-electron",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "MIT",
Expand All @@ -25,9 +25,9 @@
"electron-log": ">=4.0.0"
},
"dependencies": {
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"@stoprocent/noble": "2.3.16",
"p-retry": "^4.6.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/hd-transport-emulator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-emulator",
"version": "1.1.28",
"version": "1.1.29",
"description": "hardware emulator transport",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
Expand All @@ -24,8 +24,8 @@
"url": "https://github.com/OneKeyHQ/hardware-js-sdk/issues"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"axios": "1.15.2",
"secure-json-parse": "^4.0.0"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/hd-transport-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-http",
"version": "1.1.28",
"version": "1.1.29",
"description": "hardware http transport",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
Expand All @@ -24,8 +24,8 @@
"url": "https://github.com/OneKeyHQ/hardware-js-sdk/issues"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"axios": "1.15.2",
"secure-json-parse": "^4.0.0"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/hd-transport-lowlevel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-lowlevel",
"version": "1.1.28",
"version": "1.1.29",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -19,7 +19,7 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28"
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29"
}
}
8 changes: 4 additions & 4 deletions packages/hd-transport-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-react-native",
"version": "1.1.28",
"version": "1.1.29",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -19,9 +19,9 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"@onekeyfe/react-native-ble-utils": "^0.1.4",
"react-native-ble-plx": "3.5.1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/hd-transport-usb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-usb",
"version": "1.1.28",
"version": "1.1.29",
"description": "OneKey hardware wallet direct USB transport plugin (libusb)",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "MIT",
Expand All @@ -20,8 +20,8 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29",
"bytebuffer": "^5.0.1",
"usb": "^2.14.0"
}
Expand Down
8 changes: 4 additions & 4 deletions packages/hd-transport-web-device/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport-web-device",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "MIT",
Expand All @@ -20,11 +20,11 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport": "1.1.28"
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport": "1.1.29"
},
"devDependencies": {
"@onekeyfe/hd-transport-electron": "1.1.28",
"@onekeyfe/hd-transport-electron": "1.1.29",
"@types/w3c-web-usb": "^1.0.6",
"@types/web-bluetooth": "^0.0.17"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/hd-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-transport",
"version": "1.1.28",
"version": "1.1.29",
"description": "Transport layer abstractions and utilities for OneKey hardware SDK.",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
Expand Down
10 changes: 5 additions & 5 deletions packages/hd-web-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hd-web-sdk",
"version": "1.1.28",
"version": "1.1.29",
"author": "OneKey",
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
"license": "ISC",
Expand All @@ -21,10 +21,10 @@
},
"dependencies": {
"@onekeyfe/cross-inpage-provider-core": "2.2.67",
"@onekeyfe/hd-core": "1.1.28",
"@onekeyfe/hd-shared": "1.1.28",
"@onekeyfe/hd-transport-http": "1.1.28",
"@onekeyfe/hd-transport-web-device": "1.1.28"
"@onekeyfe/hd-core": "1.1.29",
"@onekeyfe/hd-shared": "1.1.29",
"@onekeyfe/hd-transport-http": "1.1.29",
"@onekeyfe/hd-transport-web-device": "1.1.29"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/hwk-adapter-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hwk-adapter-core",
"version": "1.1.28",
"version": "1.1.29",
"description": "Shared types and utilities for OneKey hardware wallet kit",
"author": "OneKey",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/hwk-ledger-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hwk-ledger-adapter",
"version": "1.1.28",
"version": "1.1.29",
"description": "Ledger hardware wallet adapter for OneKey",
"author": "OneKey",
"license": "MIT",
Expand Down Expand Up @@ -50,7 +50,7 @@
"@ledgerhq/device-signer-kit-solana": "^1.7.0",
"@ledgerhq/hw-app-trx": "^6.34.1",
"@ledgerhq/hw-transport": "^6.34.1",
"@onekeyfe/hwk-adapter-core": "1.1.28",
"@onekeyfe/hwk-adapter-core": "1.1.29",
"bitcoinjs-lib": "npm:@onekeyfe/bitcoinjs-lib@7.0.1"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/hwk-ledger-connector-ble/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onekeyfe/hwk-ledger-connector-ble",
"version": "1.1.28",
"version": "1.1.29",
"description": "IConnector implementation for Ledger hardware wallets via React Native BLE",
"author": "OneKey",
"license": "MIT",
Expand Down Expand Up @@ -51,8 +51,8 @@
"@ledgerhq/device-signer-kit-ethereum": "^1.9.0",
"@ledgerhq/device-signer-kit-solana": "^1.7.0",
"@ledgerhq/device-transport-kit-react-native-ble": "^1.0.0",
"@onekeyfe/hwk-adapter-core": "1.1.28",
"@onekeyfe/hwk-ledger-adapter": "1.1.28"
"@onekeyfe/hwk-adapter-core": "1.1.29",
"@onekeyfe/hwk-ledger-adapter": "1.1.29"
},
"peerDependencies": {
"react-native": "*"
Expand Down
Loading
Loading