TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2665 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.

919security candidates311second-pass queue2658AI analyses
332commits · 30 days
562commits · 60 days
1366commits · 180 days
2648commits · 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
476Strong · 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
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 2 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.

Security candidatedocs(legacy): unify 1.14.1 changelog entriesby Roman Zeyde · d7a0a765 · Mar 19, 2026 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

docs(legacy): unify 1.14.1 changelog entries

[no changelog]

(cherry picked from commit 8b2faf1498647f3bbe5f0fe2b633134471cc5e04)

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
boot or update pathdocumentation-only discount
AI analysis · Informational 15/100

This commit only reorganizes existing text in a changelog file. It moves one security-related bullet point from a standalone 'Security' section into another 'Security' section lower down, with no changes to actual firmware code or behavior. There is no functional change to review from a security perspective.

Lower-priorityci(core): report debuglink/normal artifact sizes separatelyby Roman Zeyde · 7865571f · Mar 18, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

ci(core): report debuglink/normal artifact sizes separately

[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
documentation-only discount
AI analysis · Informational 15/100

This commit changes a GitHub Actions CI workflow so that firmware artifact sizes are reported separately for 'normal' and 'debuglink' builds instead of being merged into one list. It is purely a reporting/visibility tweak in the build pipeline and does not touch any firmware code, cryptography, or device behavior.

Security candidatefeat(core): introduce DebugLink-based N4W1 emulatorby Roman Zeyde · 9cd47e15 · Mar 18, 2026 · 6 filesMessage 62 · AdequateInformational 21Details
Commit message · Roman Zeyde

feat(core): introduce DebugLink-based N4W1 emulator

[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
boot or update path
AI analysis · Informational 21/100

This commit adds a developer-only mock/emulator for a new hardware component called N4W1. It is gated behind debug builds (PYOPT='0') and only for the T3W1 device model. It does not change normal user-facing wallet behavior; it only provides a way for engineers to simulate the N4W1 chip during testing.

Security candidatefeat(common): introduce DebugLink-based N4W1 emulator messagesby Roman Zeyde · 584740c8 · Mar 18, 2026 · 10 filesMessage 62 · AdequateInformational 20Details
Commit message · Roman Zeyde

feat(common): introduce DebugLink-based N4W1 emulator messages

[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
boot or update path
AI analysis · Informational 20/100

This commit only adds new message definitions for a debug-only feature called N4W1 emulator. It does not change any firmware logic, cryptographic code, or user-facing behavior. The messages are marked as DebugLink traffic, which is intended for testing and emulator use, not for production devices. There is no direct security vulnerability visible in this change, but adding debug interfaces always slightly increases the attack surface if those interfaces are accidentally reachable in production.

Security candidatefix(eckhart): improve haptics in scrollable menuby obrusvit · 0d65b4a4 · Mar 18, 2026 · 4 filesMessage 80 · StrongInformational 15Details
Commit message · obrusvit

fix(eckhart): improve haptics in scrollable menu

- if the menu is scrollable (i.e. buttons don't fit on the page) the
haptics is postponed to the actual click (TouchEnd) rather than placing
the finger there (TouchStart)

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 commit is a user-experience polish change for the Trezor hardware wallet's touchscreen interface. It changes when the device vibrates (haptic feedback) in scrollable menus so that the vibration happens when the user lifts their finger and confirms a tap, rather than when they first touch the screen. This prevents confusing vibrations while the user is merely scrolling through a long menu. There is no security-relevant change here.

Security candidatechore(core/delizia): remove unused importsby Roman Zeyde · 11c17f35 · Mar 17, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core/delizia): remove unused imports

[no changelog]

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

This is a routine code cleanup commit that removes or conditionally compiles unused Rust imports in two user-interface files. It does not change program behavior, fix a bug, or alter any security-relevant logic.

Lower-priorityci(core): collect FW binaries' sizesby Roman Zeyde · 2a24b16d · Mar 17, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

ci(core): collect FW binaries' sizes

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit adds a new automated CI job that reports the sizes of built firmware binary files. It does not change any firmware code, crypto logic, or device behavior. There is no security-relevant change.

Lower-prioritychore(translations): sync Crowdin translations [no changelog]by Michal Kazda · 322887b6 · Mar 17, 2026 · 5 filesMessage 77 · AdequateInformational 15Details
Commit message · Michal Kazda

chore(translations): sync Crowdin translations
[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 synchronization of translated user-interface text strings for Trezor hardware wallets. It updates wording in Czech, German, Spanish, French, and Portuguese translation files. There are no code changes, no security fixes, and no functional behavior changes.

AI review queuedchore(translations): updated fixtures [no changelog]by Michal Kazda · 98f526da · Mar 17, 2026 · 3 filesMessage 77 · AdequateInformational 15Details
Commit message · Michal Kazda

chore(translations): updated fixtures
[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
signing or wallet pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit is a routine maintenance update for translation files and test snapshots. It changes one Spanish tutorial sentence to be clearer, updates the cryptographic signature metadata for the translation files, and refreshes many expected visual-test hashes. There is no code that runs on the device or handles secrets, and nothing in the commit suggests a security fix or vulnerability.

Security candidatechore(translations): strings for clear signingby Ioan Bizău · 575a0e34 · Mar 17, 2026 · 6 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(translations): strings for clear signing

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing boundarysigning or wallet path
AI analysis · Informational 15/100

This commit only adds two new user-facing text strings ('Confirm contract' and 'Intent') to the Trezor firmware's translation system. It does not change any code logic, security checks, or transaction handling. There is no indication this is a security fix or introduces a vulnerability.

Lower-prioritytest(core): test 2-of-2 groups of 16-of-16 sharesby Roman Zeyde · 92f0b105 · Mar 16, 2026 · 2 filesMessage 90 · StrongInformational 15Details
Commit message · Roman Zeyde

test(core): test 2-of-2 groups of 16-of-16 shares

Following https://github.com/trezor/trezor-firmware/pull/6571#discussion_r2913355921.

[no changelog]

90/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✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 15/100

This commit only adds a new automated test case for the Trezor hardware wallet's backup/recovery feature. It checks that a specific SLIP-39 advanced setup (2 groups of 16-of-16 shares) works correctly. There are no changes to the actual wallet firmware, user-facing behavior, or security-sensitive code.

Lower-priorityfix(core): keep reading when writes are blocked on THPby Roman Zeyde · 04b50804 · Mar 16, 2026 · 5 filesMessage 62 · AdequateModerate 57Details
Commit message · Roman Zeyde

fix(core): keep reading when writes are blocked on THP

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 · Moderate 57/100

This commit fixes a deadlock in the Trezor hardware wallet's USB communication protocol (THP). Previously, when sending data, the device would stop reading incoming USB messages while waiting to re-send data, which could cause both sides to get stuck. The fix makes the device keep reading incoming messages in parallel with retransmissions, so delayed acknowledgments no longer freeze communication.

Lower-priorityfix(core): correct device menu refresh mechanismby Roman Zeyde · 52823aab · Mar 15, 2026 · 2 filesMessage 57 · ThinInformational 17Details
Commit message · Roman Zeyde

fix(core): correct device menu refresh mechanism

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 17/100

This commit fixes a small logic ordering bug in the Trezor hardware wallet's on-device menu. Previously, the special 'RefreshMenu' action was checked only after the code tried to find a normal handler for the action. If 'RefreshMenu' had no handler, the device could raise a runtime error instead of refreshing the menu. The fix moves the refresh check before the handler lookup, so Bluetooth Low Energy (BLE) events that trigger a menu refresh work correctly. There is no direct evidence this is a security vulnerability; it appears to be a UI/functional bug.

AI review queuedfix(python): use `node.fingerprint` to support older FWby Roman Zeyde · 0c12c0f4 · Mar 13, 2026 · 3 filesMessage 85 · StrongInformational 19Details
Commit message · Roman Zeyde

fix(python): use `node.fingerprint` to support older FW

`PublicKey.root_fingerprint` support was added in:
```
* 5728f54b78 Pavol Rusnak: core: return root_fingerprint in PublicKey (5 years ago)
* 4d45a68fd0 Pavol Rusnak: legacy: return root_fingerprint in PublicKey (5 years ago)
```

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
parser or protocol pathsecond-pass: security-sensitive path
AI analysis · Informational 19/100

This is a small compatibility fix in the Trezor Python library. Older Trezor firmware versions did not return the wallet's 'root fingerprint' in one specific place, so the library was failing or warning users. The change makes the library read the same fingerprint from an older, always-available field instead. It is a bug fix for backward compatibility, not a security vulnerability patch.

Lower-priorityfix(core/rust): preserve most significant bit in Obj::small_intby Martin Milata · 601e7cf1 · Mar 13, 2026 · 1 fileMessage 62 · AdequateLow 42Details
Commit message · Martin Milata

fix(core/rust): preserve most significant bit in Obj::small_int

[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
AI analysis · Low 42/100

This commit fixes a low-level bug in how the Trezor firmware converts small integers into an internal MicroPython object representation. Previously, when converting a signed integer, the left-shift operation could discard the top (most significant) bit because it was done on a signed type before being cast to an unsigned type. The fix casts the value to an unsigned type first, preserving all bits. This is a correctness fix in the Rust/MicroPython bridge; it could affect any code path that passes integers to or from MicroPython, but the commit itself does not describe a specific security vulnerability or exploit.

Lower-priorityfix(l10n): updated English strings and new blank rules processed [no changelog]by Michal Kazda · db8d171b · Mar 13, 2026 · 2 filesMessage 77 · AdequateInformational 15Details
Commit message · Michal Kazda

fix(l10n): updated English strings and new blank rules processed
[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 only changes user-facing text strings and the rules that allow certain strings to be blank for specific Trezor device layouts. There is no code that handles secrets, cryptography, memory, network, or user authorization. It is a routine localization and UI-label update with no security relevance.

Lower-priorityfix(l10n): generated files and new fixtures [no changelog]by Michal Kazda · 6ef6b1fe · Mar 13, 2026 · 4 filesMessage 77 · AdequateInformational 15Details
Commit message · Michal Kazda

fix(l10n): generated files and new fixtures
[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 15/100

This commit is a routine regeneration of translation files and UI test fixtures. It updates on-screen text strings (for example changing 'Hidden wallet' to 'Passphrase wallet' and adjusting wording for some prompts), removes one unused translation key, and refreshes the expected UI screenshots used by automated tests. There is no code that handles secrets, cryptography, user input validation, or device behavior—only text labels and test expectations.

Lower-prioritybuild(core): remove `#error` from core/embed/upymod/qstrdefsport.hby Roman Zeyde · a8a177a2 · Mar 12, 2026 · 2 filesMessage 97 · StrongInformational 15Details
Commit message · Roman Zeyde

build(core): remove `#error` from core/embed/upymod/qstrdefsport.h

Otherwise, every build emits the following unhelpful message during `PreprocessQstr` step:
```
<stdin>:5279:2: error: #error This header should not be part of the build, its purpose is only to add missed Qstrings
```

[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 15/100

This commit simply turns a build-time compiler error message into a plain comment. The file is a generated helper used to add missing text labels (Qstrings) to the device's MicroPython frozen string pool. The change removes a noisy but harmless '#error' directive that was being printed during every build. There is no security relevance.

Lower-prioritychore: drop support for python 3.9by M1nd3r · 898a4aaa · Mar 11, 2026 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · M1nd3r

chore: drop support for python 3.9

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 simply raises the minimum supported Python version for the Trezor firmware build tooling from Python 3.9 to Python 3.10. It updates documentation, the project configuration file, and the dependency lock file to remove Python 3.9-specific package wheels. There is no change to the firmware code, device behavior, or security-sensitive logic.

Lower-prioritychore(vendor): update `ts-tvl` to allow update of `cryptography`by M1nd3r · bbc94cbe · Mar 11, 2026 · 1 fileMessage 77 · AdequateInformational 3Details
Commit message · M1nd3r

chore(vendor): update `ts-tvl` to allow update of `cryptography`

- Update `ts-tvl` to track commit c2bc800c31eab017a27750dccc96c1add906cb44 on branch `public`.

[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 3/100

This is a routine vendor dependency bump (updating a tracked submodule called ts-tvl) with no visible code changes, security claims, or incident details in the provided materials. There is nothing here that can be independently assessed as a security issue.

Lower-prioritychore: update cryptography and cffiby M1nd3r · ceae470d · Mar 11, 2026 · 1 fileMessage 72 · AdequateLow 34Details
Commit message · M1nd3r

chore: update cryptography and cffi

- cryptography 43.0.3 -> 46.0.5
- cffi 1.17.1 -> 2.0.0

[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 · Low 34/100

This commit updates two widely used Python helper libraries, 'cryptography' and 'cffi', in the project's dependency lock file. It is a routine maintenance change. The newer versions may fix security bugs in those libraries, but the commit itself does not describe any specific vulnerability, attack, or exploit. There is no direct evidence in the commit that Trezor devices or user funds are at risk.

AI review queuedfeat(tron): Add support for `VoteWitnessContract` - scaffoldingby PrisionMike · 713a3454 · Mar 10, 2026 · 20 filesMessage 62 · AdequateInformational 15Details
Commit message · PrisionMike

feat(tron): Add support for `VoteWitnessContract` - scaffolding

Tron Voting. Gen code.

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
signing or wallet pathsecond-pass: unusually broad changesecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit adds the initial protocol and code-generation scaffolding for a new Tron blockchain feature: voting for Super Representatives (called VoteWitnessContract). It defines the new message types in protobuf, regenerates the corresponding Python and Rust message bindings, adds translation strings, and includes test fixtures. It does not contain the actual firmware logic that would parse, validate, display, or sign these votes, so there is no directly exploitable security issue in this patch alone.

Security candidatefeat(tron): Add support for `VoteWitnessContract` - coreby PrisionMike · 52c33903 · Mar 10, 2026 · 9 filesMessage 85 · StrongInformational 22Details
Commit message · PrisionMike

feat(tron): Add support for `VoteWitnessContract` - core

- Main logic. Scaffolding in previous commit.
- Supports up to 9 candidates.
- Each layout needs some variation
- Figma design available.

[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 pathsigning or wallet path
AI analysis · Informational 22/100

This commit adds support for a new TRON blockchain operation called VoteWitnessContract to Trezor hardware wallets. It lets users vote for up to 9 TRON network validators (called Super Representatives) directly from the device, with on-screen confirmation before signing. There is no indication this fixes a security bug; it is a feature addition.

Lower-priorityfix(python): set_log_filter and optiga_set_sec_maxby obrusvit · 1281854f · Mar 9, 2026 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · obrusvit

fix(python): set_log_filter and optiga_set_sec_max

[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
AI analysis · Informational 18/100

This is a small bugfix in the Trezor Python command-line tool's debug-only commands. Two debug helpers were trying to reach the device's debug transport through an outdated path (session.client.protocol.transport) and were updated to the correct path (session.client.transport). These commands are only used in development/testing and do not affect normal wallet operations or end-user security.

Lower-prioritydocs: link to log filter grammar logicby obrusvit · e2cde0e7 · Mar 9, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · obrusvit

docs: link to log filter grammar logic

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit only updates a documentation file to turn a plain text reference into a clickable hyperlink. No code, logic, or security behavior changed.