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
2 changes: 1 addition & 1 deletion .github/workflows/backward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
npm run pack:lerna

- name: Clone comp tests
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: tkey/backward-compatibility-tests
path: backward-compatibility-tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildMocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
npm run pack:lerna

- name: Clone comp tests
uses: actions/checkout@master
uses: actions/checkout@v6
with:
repository: tkey/backward-compatibility-tests
path: ./backward-compatibility-tests
Expand All @@ -59,7 +59,7 @@ jobs:
cd ./backward-compatibility-tests
npm run build-mocks

- uses: EndBug/add-and-commit@v7
- uses: EndBug/add-and-commit@v9
with:
author_name: Auto
branch: master
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "17.2.0",
"version": "17.2.1",
"packages": ["packages/*"],
"npmClient": "npm"
}
54 changes: 45 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tkey/default",
"version": "17.2.0",
"version": "17.2.1",
"description": "TKey default library",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
Expand Down Expand Up @@ -39,14 +39,14 @@
"@tkey/core": "^17.2.0",
"@tkey/service-provider-base": "^17.2.0",
"@tkey/service-provider-torus": "^17.2.0",
"@tkey/share-serialization": "^17.2.0",
"@tkey/share-serialization": "^17.2.1",
"@tkey/share-transfer": "^17.2.0",
"@tkey/storage-layer-torus": "^17.2.0"
},
"devDependencies": {
"@tkey/private-keys": "^17.2.0",
"@tkey/security-questions": "^17.2.0",
"@tkey/seed-phrase": "^17.2.0",
"@tkey/seed-phrase": "^17.2.1",
"@toruslabs/eccrypto": "^7.0.0",
"@toruslabs/http-helpers": "^9.0.0",
"viem": "^2.47.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/seed-phrase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tkey/seed-phrase",
"version": "17.2.0",
"version": "17.2.1",
"description": "TKey Seed Phrase Module",
"author": "Torus Labs",
"homepage": "https://github.com/tkey/tkey#readme",
Expand Down Expand Up @@ -41,8 +41,8 @@
"@babel/runtime": "7.x"
},
"dependencies": {
"@scure/bip32": "^1.7.0",
"@scure/bip39": "^1.6.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@tkey/common-types": "^17.2.0",
"@toruslabs/metadata-helpers": "^8.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/seed-phrase/src/MetamaskSeedPhraseFormat.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HDKey } from "@scure/bip32";
import { entropyToMnemonic, mnemonicToSeedSync, validateMnemonic } from "@scure/bip39";
import { wordlist } from "@scure/bip39/wordlists/english";
import { wordlist } from "@scure/bip39/wordlists/english.js";
import {
generateAddressFromPublicKey,
generateID,
Expand Down
6 changes: 3 additions & 3 deletions packages/share-serialization/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tkey/share-serialization",
"version": "17.2.0",
"version": "17.2.1",
"description": "TKey share serialization module",
"author": "Torus Labs",
"homepage": "https://github.com/tkey/tkey#readme",
Expand Down Expand Up @@ -46,9 +46,9 @@
"vitest": "4.1.0"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"@tkey/common-types": "^17.2.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"ethereum-cryptography": "^3.2.0"
"@toruslabs/metadata-helpers": "^8.2.0"
},
"bugs": {
"url": "https://github.com/tkey/tkey/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/share-serialization/src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { sha256 } from "@noble/hashes/sha2.js";
import { bytesToHex, hexToBytes } from "@toruslabs/metadata-helpers";
import { sha256 } from "ethereum-cryptography/sha256";

import ShareSerializationError from "./errors";

Expand Down