1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 13:38:12 +00:00

fixup! feat(common): add first Solana protobuf messages

This commit is contained in:
gabrielkerekes 2023-08-16 10:50:36 +02:00
parent b8ef10e1b1
commit c12a661ff2
3 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,7 @@ message Features {
Capability_Shamir = 15 [(bitcoin_only) = true];
Capability_ShamirGroups = 16 [(bitcoin_only) = true];
Capability_PassphraseEntry = 17 [(bitcoin_only) = true]; // the device is capable of passphrase entry directly on the device
Capability_Solana = 18;
}
optional BackupType backup_type = 31; // type of device backup (BIP-39 / SLIP-39 basic / SLIP-39 advanced)
optional bool sd_card_present = 32; // is SD card present

View File

@ -21,3 +21,4 @@ if not utils.BITCOIN_ONLY:
Stellar = 12
Tezos = 13
U2F = 14
Solana = 18

View File

@ -440,6 +440,7 @@ if TYPE_CHECKING:
Shamir = 15
ShamirGroups = 16
PassphraseEntry = 17
Solana = 18
class SdProtectOperationType(IntEnum):
DISABLE = 0