Skip to content
Closed
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
1 change: 0 additions & 1 deletion src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ export * from "./keyUtils";
export * from "./langrangeInterpolatePoly";
export * from "./metadataUtils";
export * from "./nodeUtils";
export * from "./tssPubKeyUtils";
2 changes: 1 addition & 1 deletion test/tssPubKey.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TORUS_SAPPHIRE_NETWORK } from "@toruslabs/constants";
import { NodeDetailManager } from "@toruslabs/fetch-node-details";
import { expect } from "chai";

import { GetOrSetTssDKGPubKey } from "../src";
import { GetOrSetTssDKGPubKey } from "./utils/tssPubKeyUtils";

describe("setTssKey", function () {
const TORUS_EXTENDED_VERIFIER_EMAIL = "[email protected]";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { JRPCResponse, KEY_TYPE } from "@toruslabs/constants";
import { generateJsonRPCObject, post } from "@toruslabs/http-helpers";
import log from "loglevel";

import { JRPC_METHODS } from "../constants";
import { GetORSetKeyResponse, KeyType } from "../interfaces";
import { Some } from "../some";
import { normalizeKeysResult, thresholdSame } from "./common";
import { JRPC_METHODS } from "../../src/constants";
import { normalizeKeysResult, thresholdSame } from "../../src/helpers/common";
import { GetORSetKeyResponse, KeyType } from "../../src/interfaces";
import { Some } from "../../src/some";

// for ex: [https://node-1.node.web3auth.io/sss/jrpc, https://node-2.node.web3auth.io/sss/jrpc ....]
export const GetOrSetTssDKGPubKey = async (params: {
Expand Down
Loading