Skip to content
Open
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - 2026-03-24

### Added

- Support `bls12377g1` and `jubjub` curves

## [0.9.2] - 2026-02-20

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions ledgerwallet/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ def serialize_derivation_path(self, value):
curves |= params.CURVE_SLIP21
elif curve == "bls12381g1":
curves |= params.CURVE_BLS12381G1
elif curve == "bls12377g1":
curves |= params.CURVE_BLS12377G1
elif curve == "jubjub":
curves |= params.CURVE_JUBJUB
derivation_paths["curve"] = curves
elif derivation_entry == "paths":
derivation_paths["paths"] = value["paths"]
Expand Down
4 changes: 4 additions & 0 deletions ledgerwallet/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ def _encode(self, obj, context, path):
8 # not really a curve, but used to indicate the presence of SLIP-21 paths
)
CURVE_BLS12381G1 = 16
CURVE_BLS12377G1 = 32
CURVE_JUBJUB = 64

Curve = FlagsEnum(
Byte,
Expand All @@ -180,6 +182,8 @@ def _encode(self, obj, context, path):
ed25519=CURVE_ED25519,
slip21=CURVE_SLIP21,
bls12381g1=CURVE_BLS12381G1,
bls12377g1=CURVE_BLS12377G1,
jubjub=CURVE_JUBJUB,
)

DerivationPath = Prefixed(
Expand Down
Loading