Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: soft nonce implementation #6

Merged
merged 23 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix: remove outdated type
  • Loading branch information
ieow committed Feb 23, 2024
commit 8df32af61a96b9e9bddd62e19f6a625c6da7da5f
34 changes: 9 additions & 25 deletions package-lock.json

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

1 change: 0 additions & 1 deletion packages/common-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.2",
"@types/elliptic": "^6.4.15"
},
"bugs": {
Expand Down
1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"json-stable-stringify": "^1.0.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.2",
"@types/elliptic": "^6.4.15",
"@types/json-stable-stringify": "^1.0.34"
},
Expand Down
1 change: 0 additions & 1 deletion packages/private-keys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"@babel/runtime": "7.x"
},
"devDependencies": {
"@types/bn.js": "^5.1.2"
},
"dependencies": {
"@tkey-mpc/common-types": "^9.0.2",
Expand Down
1 change: 0 additions & 1 deletion packages/security-questions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"ethereum-cryptography": "^2.1.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.2"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
1 change: 0 additions & 1 deletion packages/seed-phrase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
"ethers": "^6.7.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.2"
},
"lint-staged": {
"!(*d).ts": [
Expand Down
1 change: 0 additions & 1 deletion packages/service-provider-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"elliptic": "^6.5.4"
},
"devDependencies": {
"@types/bn.js": "^5.1.2",
"@types/elliptic": "^6.4.15"
},
"bugs": {
Expand Down
1 change: 0 additions & 1 deletion packages/service-provider-torus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"elliptic": "^6.5.4"
},
"devDependencies": {
"@types/bn.js": "^5.1.2",
"@types/elliptic": "^6.4.15"
},
"bugs": {
Expand Down
1 change: 0 additions & 1 deletion packages/share-transfer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.2"
},
"bugs": {
"url": "https://github.com/tkey/tkey/issues"
Expand Down
1 change: 0 additions & 1 deletion packages/storage-layer-torus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"json-stable-stringify": "^1.0.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.2",
"@types/json-stable-stringify": "^1.0.34"
},
"bugs": {
Expand Down
5 changes: 1 addition & 4 deletions packages/web-storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,13 @@
},
"dependencies": {
"@tkey-mpc/common-types": "^9.0.2",
"@types/bn.js": "^5.1.1",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@tkey-mpc/core": "^9.0.2",
"@tkey-mpc/service-provider-base": "^9.0.2",
"@tkey-mpc/storage-layer-torus": "^9.0.2",
"@types/bn.js": "^5.1.2",
"@types/filesystem": "^0.0.33",
"bn.js": "^5.2.1"
"@types/filesystem": "^0.0.33"
},
"bugs": {
"url": "https://github.com/tkey/tkey/issues"
Expand Down
Loading