Skip to content

Commit 92a9bea

Browse files
committed
fix: refactor remote signer
1 parent 0d3e204 commit 92a9bea

File tree

9 files changed

+48
-583
lines changed

9 files changed

+48
-583
lines changed

package-lock.json

Lines changed: 38 additions & 121 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
},
4545
"dependencies": {
4646
"@tkey/common-types": "^15.1.0",
47-
"@tkey/core": "^15.1.0",
47+
"@tkey/core": "^15.2.0-alpha.0",
4848
"@tkey/share-serialization": "^15.1.0",
4949
"@tkey/storage-layer-torus": "^15.1.0",
50-
"@tkey/tss": "^15.1.0",
50+
"@tkey/tss": "file:../tkey/packages/tss",
5151
"@toruslabs/constants": "^14.0.0",
5252
"@toruslabs/customauth": "^20.3.0",
5353
"@toruslabs/elliptic-wrapper": "^0.1.0",

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ export * from "./constants";
22
export * from "./helper";
33
export * from "./interfaces";
44
export * from "./mpcCoreKit";
5-
export * from "./remoteFactorServices";
65
export * from "./utils";
76
export { factorKeyCurve } from "@tkey/tss";

src/interfaces.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { KeyType, Point as TkeyPoint, ShareDescriptionMap } from "@tkey/common-types";
2-
import { TKeyTSS } from "@tkey/tss";
2+
import { IRemoteClientState, TKeyTSS } from "@tkey/tss";
33
import type {
44
AGGREGATE_VERIFIER_TYPE,
55
ExtraParams,
@@ -15,7 +15,6 @@ import type { tssLib as TssFrostLib } from "@toruslabs/tss-frost-lib";
1515
import BN from "bn.js";
1616

1717
import { FactorKeyTypeShareDescription, TssShareType, USER_PATH, WEB3AUTH_NETWORK } from "./constants";
18-
import { IRemoteClientState } from "./remoteFactorServices/remoteSignInterfaces";
1918

2019
export type CoreKitMode = UX_MODE_TYPE | "nodejs" | "react-native";
2120

0 commit comments

Comments
 (0)