From 7fd374e2e77649f837886dd95e95b5cb0979b261 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Mon, 20 Jul 2026 11:00:54 +0200 Subject: [PATCH] chore(fw): add `authenticity.json` for T3W1 - T3W1 uses a blacklist (list of revoked pubkeys) for device authenticity check. The list is empty so far. However, when the list is not available, it raises errors/warnings when authenticating using trezorctl. The added minimal json provides trezorctl with empty revoked list, which is enough to resolve the trezorctl's issues. --- firmware/t3w1/authenticity.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 firmware/t3w1/authenticity.json diff --git a/firmware/t3w1/authenticity.json b/firmware/t3w1/authenticity.json new file mode 100644 index 0000000..6721659 --- /dev/null +++ b/firmware/t3w1/authenticity.json @@ -0,0 +1,4 @@ +{ + "timestamp": "2026-07-20T12:00:00+00:00", + "revoked_pubkeys": [] +}