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

Attempt MultiSign #143

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
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
Next Next commit
Missing IMport
  • Loading branch information
bh2smith committed Jan 15, 2025
commit 0a5b8be5aef7e1c9f373f1ee9a8e5aaddce9d6ba
4 changes: 2 additions & 2 deletions src/mpcContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "./utils/kdf";
import { TGAS } from "./chains/near";
import { MPCSignature, FunctionCallTransaction, SignArgs } from "./types";
import { signatureFromOutcome } from "./utils/signature";
import { signatureFromOutcome, transformSignature } from "./utils/signature";
import { Action, FunctionCall } from "near-api-js/lib/transaction";
import { FinalExecutionOutcome } from "near-api-js/lib/providers";

Expand Down Expand Up @@ -169,7 +169,7 @@ export class MpcContract implements IMpcContract {
],
};
}

async encodeMulti(
signArgs: SignArgs[],
gas?: bigint
Expand Down
Loading