TZ
← All projectsTrezor

Trezor firmware

Firmware monorepo for Trezor One, Model T, and Safe devices.

BitcoinHardware walletsNormal
Repository coverage

2664 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

918security candidates311second-pass queue2657AI analyses
331commits · 30 days
591commits · 60 days
1366commits · 180 days
2651commits · 365 days
Backfill bands
Aug 5 → Feb 61298 seen115 candidatesComplete
Feb 6 → Jun 6775 seen58 candidatesComplete
Jun 6 → Jul 6217 seen13 candidatesComplete
Jul 6 → Aug 5360 seen54 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

66/100 average clarity
475Strong · 80–100
1321Adequate · 60–79
863Thin · 40–59
5Opaque · 0–39
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
tychovrahe292104292461
Roman Zeyde575179573271
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík23823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20671206071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 18 minutes ago

Low 27 AI analysisMessage 93 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(core): digest EIP-1559/EIP-7702 magic without RLP encoding

This commit is a small internal cleanup in Trezor's Ethereum signing code. It changes how two special 'magic' bytes (the transaction type markers for newer Ethereum transaction formats) are fed into the cryptographic hash. Previously the c…

Refactor of cryptographic hashing path for Ethereum transaction signingRemoval of implicit assumption that RLP encodes small integers as single bytesChange affects EIP-1559 and EIP-7702 transaction type markers
2362bc6fby Roman Zeyde+6−32 files
No security note in commit
Informational 15 AI analysisMessage 98 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): test RLP self-encoding bytestrings

This commit only adds a new unit test to the Trezor firmware codebase. It verifies that very short Ethereum RLP-encoded byte strings and small positive integers encode to themselves, which is a known property of the RLP specification. No p…

41538733by Roman Zeyde+16−01 file
No security note in commit
Informational 18 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core): remove sha1 from regular FW

This commit removes the SHA-1 hashing function from the regular Trezor firmware. SHA-1 is an old, weak hash algorithm that is no longer considered secure for sensitive uses. The change deletes the code that exposes SHA-1 to apps running on…

Removal of a deprecated cryptographic primitive (SHA-1) from the firmware API surfaceReduction of attack surface and prevention of future misuse of a collision-vulnerable hashNo direct vulnerability patch or memory-safety bug is present in the diff
16d15774by M1nd3r+0−2006 files
No security note in commit
Low 27 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): pass static public key to `noise_xxpsk3_*_init()`

This commit changes how a cryptographic library sets up secure connections. Previously, the code automatically calculated the public key from the private key. Now, the caller must provide the public key directly. This is a code-quality ref…

Cryptographic key handling changed: public key is now supplied rather than derivedPotential reduction of key-mismatch risk if caller provides correct public keyNew null-pointer check added for static_public_key
1b3128a4by Ondřej Vejpustek+20−92 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): change order of parameters

This commit simply reorders the arguments of an internal function called dh() and updates every place that calls it. The actual math and security behavior are unchanged; it is a code cleanup with no security effect.

33a119eeby Ondřej Vejpustek+15−151 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): prefix enums

This commit simply renames two groups of internal status labels (called enums) in the Trezor firmware's cryptographic code. The old names like WAITING_FOR_REQUEST1 were shared between two different parts of the code, so the developer gave …

f1c74046by Ondřej Vejpustek+26−222 files
No security note in commit
Low 37 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(crypto): prevent calling `memzero(NULL, ...)`

This commit fixes three places in the Trezor firmware's cryptographic code where a memory-clearing function could be called with a NULL pointer. In practice, passing NULL to memzero is harmless on Trezor's platform (it does nothing), but i…

NULL pointer passed to memory-zeroing helper in cryptographic codeUndefined behavior in C standard library contractDefensive hardening in Noise protocol implementation
0394e934by Ondřej Vejpustek+11−51 file
No security note in commit
Informational 18 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): return remote static key from `noise_xxpsk3_*_handle_*()`

This commit is a code cleanup (refactor) for the cryptographic handshake code used in Trezor devices. It changes how the other party's long-term public key is returned to the caller: instead of storing it inside an internal state structure…

Removal of long-term public key storage from internal handshake stateCaller-supplied output buffer for remote static public key reduces internal secret retentionError-path memzero of returned key material on failure
3ead1aa6by Ondřej Vejpustek+79−423 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ProjectProfile to ProjectConfig

This commit is a simple rename from 'ProjectProfile' to 'ProjectConfig' in two Rust source files. It only changes variable names, struct names, and error messages. There is no change to program logic, security behavior, or how data is hand…

581b37bcby cepetr+18−182 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce ResolvedBuildArgs

This commit is a straightforward internal code refactor in Trezor's build tooling. It introduces a new ResolvedBuildArgs structure that centralizes default values for command-line build options before they are used. There is no change to u…

c24d1be8by cepetr+99−295 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): make build args tristate

This commit is a straightforward internal refactor of the Trezor firmware build tool's command-line argument handling. It changes many on/off flags from plain booleans to optional booleans so they can explicitly be set to true, false, or l…

271e249aby cepetr+57−561 file
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce build options

This commit is a straightforward internal code reorganization in Trezor's build tooling. It moves build-option definitions from one Rust source file to a new module and adds the ability to load those options from a configuration file. Ther…

75085e2aby cepetr+275−2007 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce build presets

This commit is a developer tooling change for the Trezor firmware build system. It introduces 'build presets'—named configuration bundles stored in TOML files—so developers can select common build settings with a single command-line flag i…

eefe8f7fby cepetr+397−419 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): upgrade manifest.yaml for tf-tools 0.3.0

This commit is a routine update to a build-system manifest file used by Trezor's internal tooling. It reorganizes and re-labels feature flags (for example, moving options between 'Features', 'Debugging', and 'Signing' groups and simplifyin…

57b28b89by cepetr+86−1351 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(core): add tf-tools 0.3.1+ configuration file

This commit adds a single configuration file for a Trezor developer tool (a VS Code extension). It only points the tool to existing folders in the repository and contains no executable code, no secrets, and no changes to firmware behavior.…

e554f618by cepetr+8−01 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

This commit is a simple internal code cleanup: it renames a Rust data structure called ResolvedBuild to ResolvedBuildFeatures and updates the places that use it. There are no functional changes, no security fixes, and no changes to how the…

aaa2780bby cepetr+5−52 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(core): fix up clippy warnings in storage.rs

This is a tiny code cleanup commit that replaces two calls to `ptr::null()` with Rust's `unwrap_or_default()` to silence automated Clippy lint warnings. It does not change what value is produced (still a null pointer when no salt is provid…

62354461by cepetr+2−21 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): simplify dependencies

This commit is a straightforward internal code cleanup in Trezor's build tooling. It moves a data structure and two helper methods from one Rust source file to another and updates callers accordingly. There is no change to user-facing beha…

6268349fby cepetr+9−193 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

docs: add xtask documentation

This commit only adds documentation. It updates the table of contents and adds a new markdown page plus a diagram explaining the project's 'xtask' build helper. No code, build scripts, or firmware logic was changed, so it cannot introduce …

4879dababy cepetr+296−03 files
No security note in commit
Informational 17 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce project-toml build-options

This commit is a build-system refactoring for Trezor firmware. It moves the mapping of command-line build options to Rust/cargo features out of hard-coded Rust logic and into per-project TOML files. It also adds a small change so debug bui…

Build-option mapping now lives in project.toml files, increasing the attack surface for supply-chain/build-configuration tamperingMakefile change automatically enables debug-link for PYOPT=0 debug buildsValidation added to reject storage_insecure_testing_mode in production builds
d44de007by cepetr+681−40817 files
No security note in commit
Repository ledger

Explore captured commits

Expand any commit for its author, full message, clarity score, changed files, triage signals, analysis, and source link.

Lower-prioritychore(l10n): update and run blanker script [no changelog]by Michal Kazda · 4fc92b8e · Apr 10, 2026 · 3 filesMessage 77 · AdequateInformational 15Details
Commit message · Michal Kazda

chore(l10n): update and run blanker script
[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
translation-only discount
AI analysis · Informational 15/100

This commit is a routine localization update. It regenerates translation files so that some on-screen text strings are left blank for certain device models or languages while keeping them present for others. There is no code behavior change, no bug fix, and no security relevance.

Lower-prioritydocs: remove SECURITY.md to fall back to the organization defaultby Jan Komarek · f45b057b · Apr 9, 2026 · 2 filesMessage 67 · AdequateInformational 15Details
Commit message · Jan Komarek

docs: remove SECURITY.md to fall back to the organization default

67/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Names security-relevant behavior explicitly! No meaningful explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit simply removes the repository's own SECURITY.md file and updates the README to point users to the organization's default security policy on GitHub instead. It is a documentation-only change with no code modifications and no direct security impact on the firmware or device.

Lower-priorityfix(tests): skip test on "THP" instead of on "eckhart"by M1nd3r · f09d834b · Apr 9, 2026 · 1 fileMessage 95 · StrongInformational 11Details
Commit message · M1nd3r

fix(tests): skip test on "THP" instead of on "eckhart"

- Skipped `test_apply_homescreen_jpeg_single_message` on all devices with THP, as the message is too big for the protocol.

[no changelog]

95/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Mentions testing or verification
AI analysis · Informational 11/100

This commit only changes a test file. It adjusts which hardware models and protocol versions skip a test that sends a large JPEG homescreen image in a single message. The change is not a fix to product firmware and does not address a security vulnerability.

Security candidatechore(eckhart, ui): make warning style for footer optionalby PrisionMike · 066d5921 · Apr 9, 2026 · 14 filesMessage 85 · StrongInformational 19Details
Commit message · PrisionMike

chore(eckhart, ui): make warning style for footer optional

- Warning_footer is not "footer" + "is_footer_warning"
- Changes had to be propagated across other layouts for commonality.

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
cryptography-sensitive pathboot or update path
AI analysis · Informational 19/100

This is a routine user-interface refactor for the Trezor hardware wallet firmware. It renames a parameter from 'warning_footer' to 'footer' and allows the footer text to be shown either as a warning (red/alert style) or as a normal informational hint. The change touches many UI test snapshots because screen layouts changed slightly, but there is no evidence of a security vulnerability or fix.

Security candidatefix(eckhart, ui): consistent cancel layoutby PrisionMike · 69f7d0eb · Apr 9, 2026 · 6 filesMessage 80 · StrongInformational 15Details
Commit message · PrisionMike

fix(eckhart, ui): consistent cancel layout

Eckhart should not have cancel option as a 'x' on the action bar but should instead be an option in the menu, like Delizia.

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
boot or update path
AI analysis · Informational 15/100

This is a user-interface consistency patch for the Trezor hardware wallet's 'Eckhart' design. It moves the 'cancel' option from a small 'X' button on the action bar into a menu, matching how the newer 'Delizia' design already works. There is no security bug being fixed here; it is purely a layout and navigation change.

Lower-prioritychore(l10n): remove unused strings [no changelog]by Michal Kazda · 131162f1 · Apr 9, 2026 · 4 filesMessage 72 · AdequateInformational 15Details
Commit message · Michal Kazda

chore(l10n): remove unused strings
[no changelog]

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit is a routine cleanup of unused text strings in the Trezor firmware's translation system. It removes labels like 'Enter', 'Sending from account:', and 'Good to know' from generated translation files because they are no longer used anywhere in the user interface. There is no change to security logic, cryptography, or device behavior.

Lower-prioritychore(deps): bump `pyright` to version `1.1.408`by M1nd3r · 6e20287b · Apr 9, 2026 · 8 filesMessage 80 · StrongInformational 15Details
Commit message · M1nd3r

chore(deps): bump `pyright` to version `1.1.408`

Updated pyright: 1.1.404 -> 1.1.408
(changelog: https://github.com/microsoft/pyright/releases)
[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 15/100

This commit removes the project's custom Nix-based packaging for the Pyright type-checking tool and stops using that custom package in the developer shell. It is a build/development tooling cleanup, not a security fix or vulnerability. There are no changes to the Trezor firmware code that runs on devices or to user-facing applications.

Lower-prioritychore(build): update `shell.nix`by M1nd3r · 48933368 · Apr 9, 2026 · 1 fileMessage 80 · StrongInformational 15Details
Commit message · M1nd3r

chore(build): update `shell.nix`

- update of tarballs for `nixpkgs` and `rustOverlay` for more recent ones
- inlcudes update of `uv` to version `0.10.10` (from `0.7.14`) which fixes an issue with alternating revision number when updating `uv.lock` file (PRs from dependabot have `revision = 3`, PRs made by other contributors using the older `uv` have `revision = 2`)
- note that `nixpkgs.llvmPackages_17` are no longer availble in the new `nixpkgs`

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
automated dependency-update discount
AI analysis · Informational 15/100

This is a routine build-environment maintenance update. It refreshes the versions of two Nix package collections used by Trezor's developer shell and updates the `uv` Python packaging tool from 0.7.14 to 0.10.10. The change does not touch the firmware code, wallet logic, cryptography, or any user-facing security feature. There is no indication of a security vulnerability being fixed.

Security candidatefix(style): update C-style to be compliant with clang-format 21.1.8by M1nd3r · 8bdfe004 · Apr 9, 2026 · 67 filesMessage 77 · AdequateInformational 15Details
Commit message · M1nd3r

fix(style): update C-style to be compliant with clang-format 21.1.8

- previous clang-format version was 17.0.6

[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
cryptography-sensitive pathseed or entropy pathboot or update path
AI analysis · Informational 15/100

This commit is purely a code-style cleanup. It updates the project's C source files so they match the formatting rules of a newer version of the clang-format tool (version 21.1.8 instead of 17.0.6). The changes are limited to whitespace, line breaks, comment placement, and how macros and attributes are laid out. No program logic, security checks, or behavior were changed.

Lower-prioritychore(common): remove `RecoveryDevice.backup_method` protobuf defaultby Roman Zeyde · fb9ee5e4 · Apr 9, 2026 · 4 filesMessage 77 · AdequateInformational 14Details
Commit message · Roman Zeyde

chore(common): remove `RecoveryDevice.backup_method` protobuf default

The user will be prompted to choose the method if it's unset on T3W1.

[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 14/100

This commit removes a default value for the backup_method setting used during wallet recovery on Trezor devices. Previously, if a recovery app did not explicitly choose a backup method, the device would default to 'Display' (showing shares on screen). After this change, the device will ask the user to choose instead. This is a small user-experience and behavior change, not a fix for a known security vulnerability.

Lower-prioritychore: propagate `BackupMethod` from `trezorctl` to recovery handlerby Roman Zeyde · 8f1d4baf · Apr 9, 2026 · 4 filesMessage 97 · StrongInformational 18Details
Commit message · Roman Zeyde

chore: propagate `BackupMethod` from `trezorctl` to recovery handler

Currently supports only display-based method.
It will be used by the host in order to skip the choice layout, if the method is already known.

[no changelog]

97/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode
AI analysis · Informational 18/100

This commit adds a way for the Trezor host software (trezorctl) to tell the device which backup/recovery method to use during wallet recovery. Right now only the existing display-based method is actually supported; the new parameter is mainly plumbing so the host can skip an extra user-choice screen in future versions. There is no obvious security bug in the change itself.

AI review queuedchore(deps): bump cryptography from 46.0.6 to 46.0.7by dependabot[bot] · e073774b · Apr 9, 2026 · 1 fileMessage 93 · StrongInformational 16Details
Commit message · dependabot[bot]

chore(deps): bump cryptography from 46.0.6 to 46.0.7

Bumps [cryptography](https://github.com/pyca/cryptography) from 46.0.6 to 46.0.7.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/46.0.6...46.0.7)

---
updated-dependencies:
- dependency-name: cryptography
dependency-version: 46.0.7
dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

93/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
Why it was queued
automated dependency-update discountsecond-pass: broader security terminology
AI analysis · Informational 16/100

This is an automated dependency update by Dependabot that bumps the Python 'cryptography' library from version 46.0.6 to 46.0.7 in the project's lock file. The change only updates recorded download URLs and cryptographic hashes for the new version. There is no indication in the commit itself that this fixes a known security vulnerability, and no security advisory was supplied. It is best treated as a routine maintenance patch.

Lower-priorityfix(core): separate `0x` prefix when showing Ethereum addressby Roman Zeyde · 403c0df4 · Apr 9, 2026 · 4 filesMessage 62 · AdequateInformational 22Details
Commit message · Roman Zeyde

fix(core): separate `0x` prefix when showing Ethereum address

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 22/100

This commit changes how Ethereum addresses are visually displayed on Trezor devices. When the optional 'chunkify' feature is enabled, the '0x' prefix is now shown as a separate chunk from the rest of the address, making it easier for users to read and verify addresses. There is no direct security vulnerability being fixed here; it is a user-interface improvement that may slightly reduce the chance of user verification mistakes.

Lower-priorityfix(core): show label prefix during BLE pairingby Roman Zeyde · 6651be11 · Apr 9, 2026 · 4 filesMessage 88 · StrongInformational 17Details
Commit message · Roman Zeyde

fix(core): show label prefix during BLE pairing

Following https://satoshilabs.slack.com/archives/CL1D61PQF/p1775643967434449?thread_ts=1775632146.486079&cid=CL1D61PQF.

[no changelog]

88/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 17/100

This commit fixes a small user-interface bug in Trezor's Bluetooth pairing flow. Previously, if the device name was too long for the Bluetooth advertising packet, the user saw the full name on the Trezor screen while the truncated name was actually broadcast. Now the code returns the truncated name and displays that same shortened name to the user, so what they see matches what nearby devices see.

AI review queuedchore(tests,ethereum): add test fixtures for vault deposits.by PrisionMike · 625e6bad · Apr 8, 2026 · 3 filesMessage 72 · AdequateInformational 15Details
Commit message · PrisionMike

chore(tests,ethereum): add test fixtures for vault deposits.

[no changelog]

72/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit only adds new test cases for Ethereum vault deposits. It does not change any production firmware code, so it cannot introduce a security vulnerability in the device itself. The new tests check both valid deposits and cases that should be rejected, such as sending native ETH along with a deposit or a malformed transaction.

Security candidatefeat(ethereum): Add support for vault depositby PrisionMike · 84510ddc · Apr 8, 2026 · 12 filesMessage 82 · StrongInformational 12Details
Commit message · PrisionMike

feat(ethereum): Add support for vault deposit

- Added Vault deposit flow.
- Tests WIP.
- changelog will be added after all 4 vault flows are done.

[no changelog]

82/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
Why it was queued
cryptography-sensitive pathsigning or wallet path
AI analysis · Informational 12/100

This commit adds a new user-facing feature to Trezor hardware wallets: clear signing support for ERC-4626 'vault deposit' transactions on Ethereum. It introduces code that recognizes a specific smart-contract function call, shows the user a friendly confirmation screen with the vault name and deposit amount, and only proceeds if safety checks pass. There is no indication in the commit that this fixes a security bug; it appears to be a normal feature addition.

Security candidatechore(layout): make `verb_info` optional in `confirm_with_info`by PrisionMike · 202dd3e7 · Apr 8, 2026 · 8 filesMessage 62 · AdequateInformational 15Details
Commit message · PrisionMike

chore(layout): make `verb_info` optional in `confirm_with_info`

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
cryptography-sensitive pathboot or update path
AI analysis · Informational 15/100

This is a routine user-interface cleanup change. It makes one button label parameter optional across several Trezor device layouts and updates the Python helper that calls it. There is no security-relevant behavior change: the same screens are shown, only the internal plumbing for deciding whether to display an extra 'info' button is simplified.

Security candidatedocs: add thp documentationby M1nd3r · b12a0109 · Apr 8, 2026 · 14 filesMessage 47 · ThinInformational 15Details
Commit message · M1nd3r

docs: add thp documentation

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathauthentication pathparser or protocol pathdocumentation-only discount
AI analysis · Informational 15/100

This commit is purely a documentation update for the Trezor firmware repository. It reorganizes existing documentation, adds new documentation for the Trezor-Host Protocol (THP), and moves Bitcoin signing and protocol v1 docs to new locations. No executable code, firmware logic, or security-sensitive behavior was changed.

Lower-prioritystyle(common): fix typo in protobuf commentsby M1nd3r · 4a253c7d · Apr 8, 2026 · 1 fileMessage 45 · ThinInformational 15Details
Commit message · M1nd3r

style(common): fix typo in protobuf comments

[no changelog]

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI analysis · Informational 15/100

This commit fixes a single grammar typo in a code comment. The word 'host' was changed to 'the host' in a protobuf message description. No code behavior, security logic, or functionality was changed.

Lower-prioritychore: add description to protobuf messagesby M1nd3r · 236cb059 · Apr 8, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · M1nd3r

chore: add description to protobuf messages

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only adds a human-readable comment to a protobuf message definition. It does not change any code behavior, protocol logic, or security properties.

Lower-priorityfix(core): correct `ble_enter_pairing_mode()` cleanupby Roman Zeyde · da6a5fc8 · Apr 8, 2026 · 1 fileMessage 62 · AdequateLow 42Details
Commit message · Roman Zeyde

fix(core): correct `ble_enter_pairing_mode()` cleanup

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Low 42/100

This commit fixes a subtle cleanup bug in the Bluetooth pairing function on Trezor hardware wallets. Before the fix, if a caller supplied an advertising name that was too long, the function returned early without unlocking an important system lock (irq_lock). Leaving that lock held could freeze or crash the device. The fix moves the length check before the lock is taken, so the bad-input path no longer skips the unlock.

Lower-priorityfix(core): truncate BLE name before invoking `ble_enter_pairing_mode()`by Roman Zeyde · 1345ef6e · Apr 8, 2026 · 2 filesMessage 77 · AdequateLow 34Details
Commit message · Roman Zeyde

fix(core): truncate BLE name before invoking `ble_enter_pairing_mode()`

Also, truncate when calling `switch_on()`.

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Low 34/100

This commit fixes a bug in the Trezor hardware wallet's Bluetooth handling. Previously, the device name sent to the Bluetooth chip when entering pairing mode or switching Bluetooth on was not truncated to the maximum allowed length. This could cause the Bluetooth stack to receive an oversized name, potentially leading to unstable behavior, pairing failures, or memory corruption in the Bluetooth firmware. The fix ensures the name is shortened to the advertised-name limit before being passed along.

Security candidatefeat(core): allow blanking `select_word()` itemsby Roman Zeyde · 1b880451 · Apr 8, 2026 · 1 fileMessage 80 · StrongInformational 18Details
Commit message · Roman Zeyde

feat(core): allow blanking `select_word()` items

Will be used to allow choosing 2 options (instead of 3).
In that case, the 2nd separator should not be rendered.

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
boot or update path
AI analysis · Informational 18/100

This commit is a small UI layout change for the Trezor hardware wallet. It lets a screen that normally shows three word choices display only two choices by leaving one slot blank and hiding the separator line next to it. There is no indication this fixes a security bug; it appears to be a feature tweak for a future user interface.

Security candidatetest(core): test backup cancellation during `ResetDevice`by Roman Zeyde · c72a83e8 · Apr 7, 2026 · 3 filesMessage 87 · StrongInformational 15Details
Commit message · Roman Zeyde

test(core): test backup cancellation during `ResetDevice`

Previously, backup cancellation was tested only during `BackupDevice`.

[no changelog]

87/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
Why it was queued
cryptography-sensitive path
AI analysis · Informational 15/100

This commit only adds new automated tests that simulate a user cancelling the backup step during device setup (ResetDevice). It does not change the actual Trezor firmware code, wallet logic, or fix any bug. It is a testing improvement with no direct security impact on shipped devices.

Lower-prioritychore(core): update UI fixturesby Roman Zeyde · 01731b76 · Apr 7, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core): update UI fixtures

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only updates the expected visual-output fingerprints used by the device's automated UI tests. It does not change any firmware, application, or security code. The test names were adjusted because the corresponding test code was likely refactored to add a 'normal' versus 'try_to_cancel' parameter. There is no user-facing or security-relevant change.