-
Notifications
You must be signed in to change notification settings - Fork 88
Feature/crypto docs #995
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
Feature/crypto docs #995
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds comprehensive documentation on threshold cryptography support in Lit Protocol, detailing the various elliptic curves and signing schemes available.
- Introduces a new documentation page explaining Lit Protocol's threshold cryptography capabilities
- Documents nine supported elliptic curves with their corresponding algorithms, Rust crates, enum types, and example blockchain implementations
- Provides technical notes on the TSS implementations used (ECDSA, Schnorr, BLS)
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| docs/learning-lit/threshold-cryptography.mdx | New documentation page detailing supported elliptic curves, signing schemes, and threshold signature implementations |
| docs/docs.json | Adds the new threshold-cryptography page to the learning-lit section navigation |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| | RedDecaf377 | Schnorr (FROST) | [`decaf377`](https://crates.io/crates/decaf377) | `CurveType::RedDecaf377`; `SigningScheme::SchnorrRedDecaf377Blake2b512` | Penumbra (RedDSA) | | ||
| | BLS12-381 (G1/G2) | BLS (Basic, MsgAug, PoP) | [`blstrs-plus`](https://crates.io/crates/blstrs-plus), `blsful` | `CurveType::{BLS,BLS12381G1}`; `SigningScheme::{Bls12381,Bls12381G1ProofOfPossession}` | Ethereum consensus, Filecoin | | ||
|
|
||
| Notes |
Copilot
AI
Nov 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "Notes" section should be formatted as a proper markdown heading for consistency with the document structure. Consider changing to ## Notes to match the heading style used elsewhere in the document.
| Notes | |
| ## Notes |
…into feature/crypto-docs
add more crypto docs