mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 12:00:59 +00:00
Merge branch 'release/23.09'
This commit is contained in:
commit
fca82273cf
@ -1 +1 @@
|
|||||||
2023-04-03T13:44:24+00:00
|
2023-09-06T12:08:21+00:00
|
||||||
|
@ -21,6 +21,9 @@ from coin_info import Coin, CoinBuckets, Coins, CoinsInfo, FidoApps, SupportInfo
|
|||||||
DEFINITIONS_TIMESTAMP_PATH = (
|
DEFINITIONS_TIMESTAMP_PATH = (
|
||||||
coin_info.DEFS_DIR / "ethereum" / "released-definitions-timestamp.txt"
|
coin_info.DEFS_DIR / "ethereum" / "released-definitions-timestamp.txt"
|
||||||
)
|
)
|
||||||
|
DEFINITIONS_LATEST_URL = (
|
||||||
|
"https://raw.githubusercontent.com/trezor/definitions/main/definitions-latest.json"
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import termcolor
|
import termcolor
|
||||||
@ -912,5 +915,24 @@ def render(
|
|||||||
do_render(file, dst)
|
do_render(file, dst)
|
||||||
|
|
||||||
|
|
||||||
|
@cli.command()
|
||||||
|
# fmt: off
|
||||||
|
@click.option("-v", "--verbose", is_flag=True, help="Print timestamp and merkle root")
|
||||||
|
# fmt: on
|
||||||
|
def new_definitions(verbose: bool) -> None:
|
||||||
|
"""Update timestamp of external coin definitions."""
|
||||||
|
assert requests is not None
|
||||||
|
eth_defs = requests.get(DEFINITIONS_LATEST_URL).json()
|
||||||
|
eth_defs_date = eth_defs["metadata"]["datetime"]
|
||||||
|
if verbose:
|
||||||
|
click.echo(
|
||||||
|
f"Latest definitions from {eth_defs_date}: {eth_defs['metadata']['merkle_root']}"
|
||||||
|
)
|
||||||
|
eth_defs_date = datetime.datetime.fromisoformat(eth_defs_date)
|
||||||
|
DEFINITIONS_TIMESTAMP_PATH.write_text(
|
||||||
|
eth_defs_date.isoformat(timespec="seconds") + "\n"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
cli()
|
cli()
|
||||||
|
@ -7,6 +7,7 @@ trap "rm -r $CHECK_OUTPUT" EXIT
|
|||||||
|
|
||||||
$HERE/cointool.py check > $CHECK_OUTPUT/pre.txt
|
$HERE/cointool.py check > $CHECK_OUTPUT/pre.txt
|
||||||
|
|
||||||
|
$HERE/cointool.py new-definitions -v
|
||||||
$HERE/support.py release
|
$HERE/support.py release
|
||||||
|
|
||||||
$HERE/cointool.py check > $CHECK_OUTPUT/post.txt
|
$HERE/cointool.py check > $CHECK_OUTPUT/post.txt
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Changed design of the path warning screen (model T only).
|
|
@ -1 +0,0 @@
|
|||||||
Update to MicroPython 1.19.1.
|
|
@ -1 +0,0 @@
|
|||||||
Implement UI for Model R
|
|
@ -1 +0,0 @@
|
|||||||
Introduce multiple account warning to BTC send flow.
|
|
@ -1 +0,0 @@
|
|||||||
Introduce multisig warning to BTC receive flow.
|
|
@ -1 +0,0 @@
|
|||||||
Fixed gamma correction settings for Model T
|
|
@ -1 +0,0 @@
|
|||||||
Changed grey_dark and green colors in TT UI
|
|
@ -1 +0,0 @@
|
|||||||
Added support for STM32F429I-DISC1 board
|
|
@ -1 +0,0 @@
|
|||||||
QR code display when exporting XPUBs.
|
|
@ -1 +0,0 @@
|
|||||||
Added hw model field to all vendor headers.
|
|
@ -1,2 +0,0 @@
|
|||||||
Added firmware update without interaction.
|
|
||||||
Split builds of different parts to use simple util.s assembler, while FW+bootloader use interconnected ones.
|
|
@ -1 +0,0 @@
|
|||||||
MUE support
|
|
@ -1 +0,0 @@
|
|||||||
Fix more info button on shamir recovery screen.
|
|
@ -1 +0,0 @@
|
|||||||
Add support for address chunkification in Receive and Sign flow.
|
|
@ -1 +0,0 @@
|
|||||||
Implement device authentication for Model R.
|
|
@ -1 +0,0 @@
|
|||||||
Use Optiga as a source of randomness in seed generation for Model R.
|
|
@ -1 +0,0 @@
|
|||||||
Integrate Optiga into PIN verification for Model R.
|
|
@ -4,6 +4,38 @@ 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/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [2.6.2] (internal release)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [T2B1] Integrate Optiga into PIN verification. [#3296]
|
||||||
|
|
||||||
|
|
||||||
|
## [2.6.1] (internal release)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [T2B1] Implement UI. [#2610]
|
||||||
|
- QR code display when exporting XPUBs. [#3047]
|
||||||
|
- Added hw model field to all vendor headers. [#3048]
|
||||||
|
- Added firmware update without interaction. [#3205]
|
||||||
|
- Split builds of different parts to use simple util.s assembler, while FW+bootloader use interconnected ones. [#3205]
|
||||||
|
- Add support for address chunkification in Receive and Sign flow. [#3237]
|
||||||
|
- [T2B1] Implement device authentication. [#3255]
|
||||||
|
- [T2B1] Use Optiga as a source of randomness in seed generation. [#3256]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- [T2T1] Changed design of the path warning screen. [#2161]
|
||||||
|
- Update to MicroPython 1.19.1. [#2341]
|
||||||
|
- Introduce multisig warning to BTC receive flow. [#2937]
|
||||||
|
- Introduce multiple account warning to BTC send flow. [#2937]
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- MUE coin support. [#3216]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [T2T1] Fixed gamma correction settings for. [#2955]
|
||||||
|
- [T2T1] Fix more info button on shamir recovery screen. [#3218]
|
||||||
|
|
||||||
|
|
||||||
## [2.6.0] (19th April 2023)
|
## [2.6.0] (19th April 2023)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -701,6 +733,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
[#2144]: https://github.com/trezor/trezor-firmware/pull/2144
|
[#2144]: https://github.com/trezor/trezor-firmware/pull/2144
|
||||||
[#2151]: https://github.com/trezor/trezor-firmware/pull/2151
|
[#2151]: https://github.com/trezor/trezor-firmware/pull/2151
|
||||||
[#2152]: https://github.com/trezor/trezor-firmware/pull/2152
|
[#2152]: https://github.com/trezor/trezor-firmware/pull/2152
|
||||||
|
[#2161]: https://github.com/trezor/trezor-firmware/pull/2161
|
||||||
[#2166]: https://github.com/trezor/trezor-firmware/pull/2166
|
[#2166]: https://github.com/trezor/trezor-firmware/pull/2166
|
||||||
[#2167]: https://github.com/trezor/trezor-firmware/pull/2167
|
[#2167]: https://github.com/trezor/trezor-firmware/pull/2167
|
||||||
[#2181]: https://github.com/trezor/trezor-firmware/pull/2181
|
[#2181]: https://github.com/trezor/trezor-firmware/pull/2181
|
||||||
@ -718,6 +751,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
[#2300]: https://github.com/trezor/trezor-firmware/pull/2300
|
[#2300]: https://github.com/trezor/trezor-firmware/pull/2300
|
||||||
[#2313]: https://github.com/trezor/trezor-firmware/pull/2313
|
[#2313]: https://github.com/trezor/trezor-firmware/pull/2313
|
||||||
[#2324]: https://github.com/trezor/trezor-firmware/pull/2324
|
[#2324]: https://github.com/trezor/trezor-firmware/pull/2324
|
||||||
|
[#2341]: https://github.com/trezor/trezor-firmware/pull/2341
|
||||||
[#2354]: https://github.com/trezor/trezor-firmware/pull/2354
|
[#2354]: https://github.com/trezor/trezor-firmware/pull/2354
|
||||||
[#2355]: https://github.com/trezor/trezor-firmware/pull/2355
|
[#2355]: https://github.com/trezor/trezor-firmware/pull/2355
|
||||||
[#2366]: https://github.com/trezor/trezor-firmware/pull/2366
|
[#2366]: https://github.com/trezor/trezor-firmware/pull/2366
|
||||||
@ -741,6 +775,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
[#2577]: https://github.com/trezor/trezor-firmware/pull/2577
|
[#2577]: https://github.com/trezor/trezor-firmware/pull/2577
|
||||||
[#2587]: https://github.com/trezor/trezor-firmware/pull/2587
|
[#2587]: https://github.com/trezor/trezor-firmware/pull/2587
|
||||||
[#2595]: https://github.com/trezor/trezor-firmware/pull/2595
|
[#2595]: https://github.com/trezor/trezor-firmware/pull/2595
|
||||||
|
[#2610]: https://github.com/trezor/trezor-firmware/pull/2610
|
||||||
[#2611]: https://github.com/trezor/trezor-firmware/pull/2611
|
[#2611]: https://github.com/trezor/trezor-firmware/pull/2611
|
||||||
[#2623]: https://github.com/trezor/trezor-firmware/pull/2623
|
[#2623]: https://github.com/trezor/trezor-firmware/pull/2623
|
||||||
[#2651]: https://github.com/trezor/trezor-firmware/pull/2651
|
[#2651]: https://github.com/trezor/trezor-firmware/pull/2651
|
||||||
@ -752,3 +787,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
[#2834]: https://github.com/trezor/trezor-firmware/pull/2834
|
[#2834]: https://github.com/trezor/trezor-firmware/pull/2834
|
||||||
[#2841]: https://github.com/trezor/trezor-firmware/pull/2841
|
[#2841]: https://github.com/trezor/trezor-firmware/pull/2841
|
||||||
[#2899]: https://github.com/trezor/trezor-firmware/pull/2899
|
[#2899]: https://github.com/trezor/trezor-firmware/pull/2899
|
||||||
|
[#2937]: https://github.com/trezor/trezor-firmware/pull/2937
|
||||||
|
[#2955]: https://github.com/trezor/trezor-firmware/pull/2955
|
||||||
|
[#2989]: https://github.com/trezor/trezor-firmware/pull/2989
|
||||||
|
[#3047]: https://github.com/trezor/trezor-firmware/pull/3047
|
||||||
|
[#3048]: https://github.com/trezor/trezor-firmware/pull/3048
|
||||||
|
[#3205]: https://github.com/trezor/trezor-firmware/pull/3205
|
||||||
|
[#3216]: https://github.com/trezor/trezor-firmware/pull/3216
|
||||||
|
[#3218]: https://github.com/trezor/trezor-firmware/pull/3218
|
||||||
|
[#3237]: https://github.com/trezor/trezor-firmware/pull/3237
|
||||||
|
[#3255]: https://github.com/trezor/trezor-firmware/pull/3255
|
||||||
|
[#3256]: https://github.com/trezor/trezor-firmware/pull/3256
|
||||||
|
[#3296]: https://github.com/trezor/trezor-firmware/pull/3296
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.4 KiB |
@ -281,6 +281,9 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_0(mod_trezorutils_bootloader_locked_obj,
|
|||||||
STATIC mp_obj_str_t mod_trezorutils_revision_obj = {
|
STATIC mp_obj_str_t mod_trezorutils_revision_obj = {
|
||||||
{&mp_type_bytes}, 0, sizeof(SCM_REVISION) - 1, (const byte *)SCM_REVISION};
|
{&mp_type_bytes}, 0, sizeof(SCM_REVISION) - 1, (const byte *)SCM_REVISION};
|
||||||
|
|
||||||
|
STATIC mp_obj_str_t mod_trezorutils_model_name_obj = {
|
||||||
|
{&mp_type_str}, 0, sizeof(MODEL_NAME) - 1, (const byte *)MODEL_NAME};
|
||||||
|
|
||||||
STATIC mp_obj_str_t mod_trezorutils_full_name_obj = {
|
STATIC mp_obj_str_t mod_trezorutils_full_name_obj = {
|
||||||
{&mp_type_str},
|
{&mp_type_str},
|
||||||
0,
|
0,
|
||||||
@ -352,7 +355,7 @@ STATIC const mp_rom_map_elem_t mp_module_trezorutils_globals_table[] = {
|
|||||||
#else
|
#else
|
||||||
{MP_ROM_QSTR(MP_QSTR_USE_OPTIGA), mp_const_false},
|
{MP_ROM_QSTR(MP_QSTR_USE_OPTIGA), mp_const_false},
|
||||||
#endif
|
#endif
|
||||||
{MP_ROM_QSTR(MP_QSTR_MODEL), MP_ROM_QSTR(MODEL_NAME_QSTR)},
|
{MP_ROM_QSTR(MP_QSTR_MODEL), MP_ROM_PTR(&mod_trezorutils_model_name_obj)},
|
||||||
{MP_ROM_QSTR(MP_QSTR_MODEL_FULL_NAME),
|
{MP_ROM_QSTR(MP_QSTR_MODEL_FULL_NAME),
|
||||||
MP_ROM_PTR(&mod_trezorutils_full_name_obj)},
|
MP_ROM_PTR(&mod_trezorutils_full_name_obj)},
|
||||||
{MP_ROM_QSTR(MP_QSTR_INTERNAL_MODEL),
|
{MP_ROM_QSTR(MP_QSTR_INTERNAL_MODEL),
|
||||||
|
@ -65,9 +65,12 @@ static secbool known_bootloader(const uint8_t *hash, int len) {
|
|||||||
// bootloader_T1B1.bin version <unknown>
|
// bootloader_T1B1.bin version <unknown>
|
||||||
#define BOOTLOADER_T1B1_00 {0xc1, 0x01, 0xd3, 0x8a, 0x00, 0x5e, 0x4f, 0x5f, 0x87, 0x1f, 0x49, 0x78, 0x24, 0x9c, 0xf9, 0x82, 0xd1, 0x91, 0x4b, 0xa6, 0x90, 0x03, 0x9c, 0x50, 0x49, 0x61, 0x10, 0x4f, 0xee, 0xe7, 0x1d, 0x7b}
|
#define BOOTLOADER_T1B1_00 {0xc1, 0x01, 0xd3, 0x8a, 0x00, 0x5e, 0x4f, 0x5f, 0x87, 0x1f, 0x49, 0x78, 0x24, 0x9c, 0xf9, 0x82, 0xd1, 0x91, 0x4b, 0xa6, 0x90, 0x03, 0x9c, 0x50, 0x49, 0x61, 0x10, 0x4f, 0xee, 0xe7, 0x1d, 0x7b}
|
||||||
#define BOOTLOADER_T1B1_FF {0xbd, 0xb2, 0xf7, 0x62, 0xfb, 0x10, 0xbb, 0x30, 0x1f, 0x95, 0xa3, 0x12, 0x6b, 0x41, 0x1f, 0x66, 0xfc, 0x57, 0x28, 0xce, 0x7f, 0x59, 0x42, 0x6c, 0x3e, 0xed, 0xf7, 0x69, 0xbb, 0x96, 0xbd, 0x4b}
|
#define BOOTLOADER_T1B1_FF {0xbd, 0xb2, 0xf7, 0x62, 0xfb, 0x10, 0xbb, 0x30, 0x1f, 0x95, 0xa3, 0x12, 0x6b, 0x41, 0x1f, 0x66, 0xfc, 0x57, 0x28, 0xce, 0x7f, 0x59, 0x42, 0x6c, 0x3e, 0xed, 0xf7, 0x69, 0xbb, 0x96, 0xbd, 0x4b}
|
||||||
// bootloader_T2B1.bin version 2.0.5.0
|
// bootloader_T2B1_qa.bin version 2.1.3.0
|
||||||
#define BOOTLOADER_T2B1_00 {0xf1, 0x3d, 0x46, 0x21, 0xec, 0xf9, 0x92, 0xfb, 0x5c, 0x50, 0xaf, 0xdb, 0x55, 0x13, 0x0e, 0x7f, 0xbe, 0x5b, 0x30, 0x37, 0xc9, 0x17, 0xff, 0xf5, 0xe7, 0xd7, 0xe9, 0x1d, 0x09, 0x5c, 0xf3, 0x2a}
|
#define BOOTLOADER_T2B1_QA_00 {0xcb, 0x07, 0x8a, 0x12, 0x1c, 0x42, 0xd9, 0x14, 0xba, 0xca, 0x0f, 0x0a, 0xf5, 0x85, 0xa6, 0xb4, 0xfb, 0x28, 0x52, 0x1d, 0xf7, 0x34, 0xbf, 0x9c, 0xd8, 0x52, 0xd7, 0xf2, 0x4b, 0xdc, 0x19, 0xca}
|
||||||
#define BOOTLOADER_T2B1_FF {0xa9, 0xf0, 0x63, 0xfd, 0x8a, 0xe7, 0x6c, 0x52, 0x92, 0xcb, 0x11, 0x69, 0x87, 0x79, 0x62, 0x11, 0x1e, 0x01, 0x1e, 0xf1, 0xb5, 0xd9, 0x20, 0x16, 0x4d, 0x2c, 0x16, 0x41, 0x0d, 0xa1, 0xe7, 0xc8}
|
#define BOOTLOADER_T2B1_QA_FF {0x21, 0x3b, 0x01, 0xd3, 0x51, 0x3e, 0xb4, 0x7f, 0xb4, 0x66, 0xb6, 0x2f, 0x3f, 0xca, 0x81, 0xbf, 0xb6, 0x8f, 0x0f, 0xbd, 0xab, 0x34, 0xff, 0xf5, 0x9d, 0x32, 0xf2, 0x6a, 0x4c, 0x99, 0x14, 0xde}
|
||||||
|
// bootloader_T2B1.bin version 2.1.3.0
|
||||||
|
#define BOOTLOADER_T2B1_00 {0x5d, 0x6a, 0x6f, 0x32, 0x7b, 0xdf, 0xed, 0x91, 0x0c, 0x7b, 0xec, 0xeb, 0x90, 0x8a, 0xd7, 0x47, 0x5a, 0x17, 0xf7, 0x1e, 0xd0, 0x74, 0x0b, 0x1b, 0x41, 0xdd, 0x26, 0x1b, 0x14, 0x69, 0x5b, 0xfa}
|
||||||
|
#define BOOTLOADER_T2B1_FF {0xa5, 0xe8, 0xbe, 0xab, 0xa9, 0xf1, 0x6f, 0x0d, 0xf6, 0x4d, 0xa1, 0xde, 0x8f, 0x4c, 0x9a, 0xa1, 0x9f, 0xa7, 0xd0, 0x23, 0xa7, 0x84, 0xdf, 0xcc, 0x11, 0xef, 0x0d, 0x04, 0xed, 0xd0, 0x46, 0x22}
|
||||||
// bootloader_1.bin version <unknown>
|
// bootloader_1.bin version <unknown>
|
||||||
#define BOOTLOADER_1_00 {0xa5, 0x5a, 0x8b, 0x88, 0x94, 0x8a, 0x33, 0x2b, 0xed, 0x0d, 0xd9, 0x5c, 0x79, 0xd5, 0xbe, 0x0c, 0x73, 0x52, 0xaa, 0xac, 0xb3, 0x4f, 0xea, 0xd0, 0xaa, 0x88, 0x33, 0x23, 0x64, 0xab, 0x77, 0x5a}
|
#define BOOTLOADER_1_00 {0xa5, 0x5a, 0x8b, 0x88, 0x94, 0x8a, 0x33, 0x2b, 0xed, 0x0d, 0xd9, 0x5c, 0x79, 0xd5, 0xbe, 0x0c, 0x73, 0x52, 0xaa, 0xac, 0xb3, 0x4f, 0xea, 0xd0, 0xaa, 0x88, 0x33, 0x23, 0x64, 0xab, 0x77, 0x5a}
|
||||||
#define BOOTLOADER_1_FF {0x50, 0x6c, 0x5f, 0xd3, 0x73, 0x7b, 0x9b, 0xb7, 0xb9, 0xbf, 0xf9, 0xfa, 0xc6, 0xb9, 0x43, 0x27, 0x8b, 0x06, 0xad, 0x3a, 0xec, 0xce, 0x35, 0xa3, 0x52, 0xc3, 0x6e, 0x9e, 0x9a, 0xb3, 0x50, 0x98}
|
#define BOOTLOADER_1_FF {0x50, 0x6c, 0x5f, 0xd3, 0x73, 0x7b, 0x9b, 0xb7, 0xb9, 0xbf, 0xf9, 0xfa, 0xc6, 0xb9, 0x43, 0x27, 0x8b, 0x06, 0xad, 0x3a, 0xec, 0xce, 0x35, 0xa3, 0x52, 0xc3, 0x6e, 0x9e, 0x9a, 0xb3, 0x50, 0x98}
|
||||||
|
Binary file not shown.
BIN
core/embed/firmware/bootloaders/bootloader_T2B1_qa.bin
Normal file
BIN
core/embed/firmware/bootloaders/bootloader_T2B1_qa.bin
Normal file
Binary file not shown.
@ -5,7 +5,6 @@
|
|||||||
#define MODEL_FULL_NAME "Trezor Model T"
|
#define MODEL_FULL_NAME "Trezor Model T"
|
||||||
#define MODEL_INTERNAL_NAME "D001"
|
#define MODEL_INTERNAL_NAME "D001"
|
||||||
#define MODEL_INTERNAL_NAME_TOKEN T
|
#define MODEL_INTERNAL_NAME_TOKEN T
|
||||||
#define MODEL_NAME_QSTR MP_QSTR_T
|
|
||||||
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_D001
|
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_D001
|
||||||
|
|
||||||
/*** Discovery uses DEV keys in any build variant ***/
|
/*** Discovery uses DEV keys in any build variant ***/
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
#define MODEL_FULL_NAME "Trezor Model One"
|
#define MODEL_FULL_NAME "Trezor Model One"
|
||||||
#define MODEL_INTERNAL_NAME "T1B1"
|
#define MODEL_INTERNAL_NAME "T1B1"
|
||||||
#define MODEL_INTERNAL_NAME_TOKEN T1B1
|
#define MODEL_INTERNAL_NAME_TOKEN T1B1
|
||||||
#define MODEL_NAME_QSTR MP_QSTR_1
|
|
||||||
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T1B1
|
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T1B1
|
||||||
|
|
||||||
#define BOOTLOADER_START 0x08000000
|
#define BOOTLOADER_START 0x08000000
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
#ifndef MODELS_MODEL_T2B1_H_
|
#ifndef MODELS_MODEL_T2B1_H_
|
||||||
#define MODELS_MODEL_T2B1_H_
|
#define MODELS_MODEL_T2B1_H_
|
||||||
|
|
||||||
#define MODEL_NAME "R"
|
#define MODEL_NAME "Safe 3"
|
||||||
#define MODEL_FULL_NAME "Trezor Model R"
|
#define MODEL_FULL_NAME "Trezor Safe 3"
|
||||||
#define MODEL_INTERNAL_NAME "T2B1"
|
#define MODEL_INTERNAL_NAME "T2B1"
|
||||||
#define MODEL_INTERNAL_NAME_TOKEN T2B1
|
#define MODEL_INTERNAL_NAME_TOKEN T2B1
|
||||||
#define MODEL_NAME_QSTR MP_QSTR_R
|
|
||||||
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T2B1
|
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T2B1
|
||||||
|
|
||||||
/*** PRODUCTION KEYS ***/
|
/*** PRODUCTION KEYS ***/
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
#define MODEL_FULL_NAME "Trezor Model T"
|
#define MODEL_FULL_NAME "Trezor Model T"
|
||||||
#define MODEL_INTERNAL_NAME "T2T1"
|
#define MODEL_INTERNAL_NAME "T2T1"
|
||||||
#define MODEL_INTERNAL_NAME_TOKEN T2T1
|
#define MODEL_INTERNAL_NAME_TOKEN T2T1
|
||||||
#define MODEL_NAME_QSTR MP_QSTR_T
|
|
||||||
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T2T1
|
#define MODEL_INTERNAL_NAME_QSTR MP_QSTR_T2T1
|
||||||
|
|
||||||
/*** PRODUCTION KEYS ***/
|
/*** PRODUCTION KEYS ***/
|
||||||
|
@ -58,6 +58,6 @@ impl Component for WelcomeScreen {
|
|||||||
impl crate::trace::Trace for WelcomeScreen {
|
impl crate::trace::Trace for WelcomeScreen {
|
||||||
fn trace(&self, t: &mut dyn crate::trace::Tracer) {
|
fn trace(&self, t: &mut dyn crate::trace::Tracer) {
|
||||||
t.component("WelcomeScreen");
|
t.component("WelcomeScreen");
|
||||||
t.string("model_name", "Trezor Model R");
|
t.string("model_name", "Trezor Safe 3");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
@ -9,7 +9,7 @@ PUBLIC_KEYS = (
|
|||||||
b"\xb8\xd2\xb2\x1d\xe2\x71\x24\xf0\x51\x1f\x90\x3a\xe7\xe6\x0e\x07\x96\x18\x10\xa0\xb8\xf2\x8e\xa7\x55\xfa\x50\x36\x7a\x8a\x2b\x8b",
|
b"\xb8\xd2\xb2\x1d\xe2\x71\x24\xf0\x51\x1f\x90\x3a\xe7\xe6\x0e\x07\x96\x18\x10\xa0\xb8\xf2\x8e\xa7\x55\xfa\x50\x36\x7a\x8a\x2b\x8b",
|
||||||
)
|
)
|
||||||
|
|
||||||
MIN_DATA_VERSION = 1680529464
|
MIN_DATA_VERSION = 1694002101
|
||||||
FORMAT_VERSION = b"trzd1"
|
FORMAT_VERSION = b"trzd1"
|
||||||
|
|
||||||
if __debug__:
|
if __debug__:
|
||||||
|
@ -53,7 +53,7 @@ TREZOR_T = TrezorModel(
|
|||||||
)
|
)
|
||||||
|
|
||||||
TREZOR_R = TrezorModel(
|
TREZOR_R = TrezorModel(
|
||||||
name="R",
|
name="Safe 3",
|
||||||
internal_name="T2B1",
|
internal_name="T2B1",
|
||||||
minimum_version=(2, 1, 0),
|
minimum_version=(2, 1, 0),
|
||||||
vendors=VENDORS,
|
vendors=VENDORS,
|
||||||
|
Loading…
Reference in New Issue
Block a user