Skip to content

Commit

Permalink
update doc: typescript/cryptography/multisig.mdx (#18090)
Browse files Browse the repository at this point in the history
## Description 

update doc `typescript/cryptography/multisig.mdx` to correct parameter
name
## Test plan 

How did you test the new or updated feature?

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:

---------

Co-authored-by: stefan-mysten <135084671+stefan-mysten@users.noreply.github.com>
Co-authored-by: howtosui <jasonrzx@gmail.com>
  • Loading branch information
3 people authored Jun 6, 2024
1 parent d4effb2 commit ab2f456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/docs/pages/typescript/cryptography/multisig.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const signer = multiSigPublicKey.getSigner(kp1);

const message = new TextEncoder().encode('hello world');
const { signature } = await signer.signPersonalMessage(message);
const isValid = await multiSigPublicKey.verifyPersonalMessage(message, combinedSignature);
const isValid = await multiSigPublicKey.verifyPersonalMessage(message, signature);
```

## Multisig with zkLogin
Expand Down

0 comments on commit ab2f456

Please sign in to comment.