Skip to content

Commit

Permalink
Update chapter1/bls-multisig/README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Oct 31, 2024
1 parent 1f32b18 commit c3f7745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter1/bls-multisig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ alloy::sol! {

This will generate bindings for `BLSMultisig` and `BLS`, allowing us to reuse the same G1/G2 structures in Rust code.

Now, let's define helpers for converting between our contract's structures and `blst` types. `blst` provides serialization methods for both G1 and G2 points which are a bit different from the format defined in [EIP-2537](https://eips.ethereum.org/EIPS/eip-2537). Converting between the two requires some bit of manipulation.
Now, let's define helpers for converting between our contract's structures and `blst` types. `blst` provides serialization methods for both G1 and G2 points which are a bit different from the format defined in [EIP-2537](https://eips.ethereum.org/EIPS/eip-2537). Converting between the two requires some bit manipulation.
```rust
use blst::min_pk::{PublicKey, Signature};

Expand Down

0 comments on commit c3f7745

Please sign in to comment.