Skip to content

Commit

Permalink
update default MPC Contract
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Jul 27, 2024
1 parent 0920b7a commit ee8c098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mpcContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { TGAS, ONE_YOCTO } from "./chains/near";
import { MPCSignature, FunctionCallTransaction, SignArgs } from "./types/types";

const DEFAULT_MPC_CONTRACT = "v2.multichain-mpc.testnet";
const DEFAULT_MPC_CONTRACT = "v1.signer-prod.testnet";

/// Near Contract Type for change methods
export interface ChangeMethodArgs<T> {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe("End To End", () => {
).rejects.toThrow();
});

it("signMessage", async () => {
it.only("signMessage", async () => {
await expect(adapter.signMessage("NearEth")).resolves.not.toThrow();
});

Expand Down

0 comments on commit ee8c098

Please sign in to comment.