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

chore: fix semantic expression of BLS cryptography #3927

Merged
merged 2 commits into from
Mar 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/src/content/docs/architecture/cometbls.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These improvements will decrease proving times even further, leading to faster b

Boneh–Lynn–Shacham (BLS) signatures form the foundation of CometBLS.
They are cheaper to verify for both regular IBC and zero-knowledge proof (zkp) based IBC.
With BLS signatures, we can aggregate the public keys and the signatures, and verify the aggregated signature with the aggregated private key.
With BLS signatures, we can aggregate the public keys and the signatures, and verify the aggregated signature with the aggregated public key.
This has a few advantages:

- Transaction size decreases compared to ECDSA verification. We do not need to transfer all signatures, just the aggregate.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/concepts/bls-signatures.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: BLS Signatures

Boneh–Lynn–Shacham (BLS) signatures form the foundation of [CometBLS](/architecture/cometbls).
They are cheaper to verify for both regular [IBC](/concepts/ibc) and zero-knowledge proof (ZKP) based IBC.
With BLS signatures, we can aggregate the public keys and the signatures and verify the aggregated signature with the aggregated private key.
With BLS signatures, we can aggregate the public keys and the signatures and verify the aggregated signature with the aggregated public key.
BLS signature aggregation has a few advantages:

- Transaction size decreases compared to ECDSA verification. We do not need to transfer all signatures, just the aggregate.
Expand Down
Loading