Skip to content

Commit 134e646

Browse files
update readme with ed25519 Musig2 functionality
1 parent 4194f21 commit 134e646

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following work has been half-funded by the Ethereum Fundation grant number F
4747
* ed25519 solidity (libSCL_RIP6565.sol )
4848
* Formal Verification is hosted on [Formal Land](https://github.com/formal-land/coq-of-solidity/tree/guillaume-claret%40experiments-verification-mulmuladdX_fullgen_b4/coq/CoqOfSolidity/contracts/scl/mulmuladdX_fullgen_b4) repo.
4949
* libMPC
50-
- SCL_Musig2.mjs
50+
- SCL_Musig2.mjs over secp256K1 and ed25519.
5151

5252
SCL is build by the same team of the previous FCL.
5353

src/libMPC/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The SmoothMPCLib consists in two parts:
2626
|--------:|---------|:--:|:----|:----|
2727
| Onchain Verifier | OK | main | | libSCL_BIP327.sol |
2828
| Musig2-secp256k1 | OK | main | | bip327.mjs/SCL_Musig2.mjs |
29-
| Musig2-ed25519 | TBD | - | | |
29+
| Musig2-ed25519 | OK | main | | SCL_Musig2.mjs|
3030
| Atomic Swaps | In progress | - | | SCL_atomic_swaps.mjs |
3131
| Frost| TBD | - | | |
3232
|
@@ -58,10 +58,10 @@ We use BIP327 with no tweak.
5858
Prior to any use, an object of type SCL_Musig2 must be initialized with one of the supported curve.
5959

6060
```
61-
const curve = 'secp256k1';
61+
const curve = 'secp256k1';
6262
const signer = new SCL_Musig2(curve);
6363
```
64-
64+
curve can also be configured to 'ed25519'.
6565

6666
### Key generation and aggregation
6767

0 commit comments

Comments
 (0)