2017-12-23 18:34:23 +00:00
syntax = "proto2" ;
2018-07-29 14:17:00 +00:00
package hw . trezor.messages ;
2017-12-23 18:34:23 +00:00
2014-03-25 18:20:36 +00:00
/ * *
2019-06-17 18:27:55 +00:00
* Messages for Trezor communication
2014-03-25 18:20:36 +00:00
* /
2014-04-07 16:01:11 +00:00
// Sugar for easier handling in Java
2017-07-04 12:02:22 +00:00
option java_package = "com.satoshilabs.trezor.lib.protobuf" ;
2014-02-02 10:28:43 +00:00
option java_outer_classname = "TrezorMessage" ;
2021-09-27 22:42:28 +00:00
option ( include_in_bitcoin_only ) = true ;
2018-07-04 12:20:28 +00:00
import "google/protobuf/descriptor.proto" ;
2021-05-31 13:09:43 +00:00
/ * * * * * * * * * * * * * * * * * * * * * * * * * WARNING * * * * * * * * * * * * * * * * * * * * * * *
Due to the way extensions are accessed in pb2py , there needs to be a globally unique
name - ID mapping for extensions . That means that two different extensions , e.g. for
EnumValueOptions and FieldOptions , MUST NOT have the same ID.
Using the same ID indicates the same purpose ( protobuf does not allow multiple
extensions with the same name ) , such as EnumValueOptions.bitcoin_only and
2021-09-27 22:42:28 +00:00
FileOptions.include_in_bitcoin_only. pb2py can then find the extension under
2021-05-31 13:09:43 +00:00
either name.
The convention to achieve this is as follows :
- extensions specific to a type have the same prefix :
* 50 xxx for EnumValueOptions
* 51 xxx for EnumOptions
* 52 xxx for MessageOptions
* 53 xxx for FieldOptions
- extensions that might be used across types have the same "global" prefix 60 xxx
* /
2018-07-04 12:20:28 +00:00
/ * *
* Options for specifying message direction and type of wire ( normal / debug )
* /
extend google . protobuf.EnumValueOptions {
2019-06-17 18:27:55 +00:00
optional bool wire_in = 50002 ; // message can be transmitted via wire from PC to Trezor
optional bool wire_out = 50003 ; // message can be transmitted via wire from Trezor to PC
optional bool wire_debug_in = 50004 ; // message can be transmitted via debug wire from PC to Trezor
optional bool wire_debug_out = 50005 ; // message can be transmitted via debug wire from Trezor to PC
optional bool wire_tiny = 50006 ; // message is handled by Trezor when the USB stack is in tiny mode
optional bool wire_bootloader = 50007 ; // message is only handled by Trezor Bootloader
optional bool wire_no_fsm = 50008 ; // message is not handled by Trezor unless the USB stack is in tiny mode
2021-05-31 13:09:43 +00:00
optional bool bitcoin_only = 60000 ; // enum value is available on BITCOIN_ONLY build
// (messages not marked bitcoin_only will be EXCLUDED)
2018-07-04 12:20:28 +00:00
}
2021-05-31 13:09:43 +00:00
/** Options for tagging enum types */
extend google . protobuf.EnumOptions {
optional bool has_bitcoin_only_values = 51001 ; // indicate that some values should be excluded on BITCOIN_ONLY builds
}
2020-08-24 13:55:27 +00:00
/** Options for tagging message types */
extend google . protobuf.MessageOptions {
2022-11-02 11:05:42 +00:00
optional bool experimental_message = 52001 ; // indicate that a message is intended for development and beta testing only and its definition may change at any time
2021-05-31 13:09:43 +00:00
optional uint32 wire_type = 52002 ; // override wire type specified in the MessageType enum
}
2020-08-24 13:55:27 +00:00
2020-10-07 16:18:03 +00:00
/** Options for tagging field types */
extend google . protobuf.FieldOptions {
2022-11-02 11:05:42 +00:00
optional bool experimental_field = 53001 ; // indicate that a field is intended for development and beta testing only
2020-10-07 16:18:03 +00:00
}
2021-09-27 22:42:28 +00:00
/** Options for tagging files with protobuf definitions */
extend google . protobuf.FileOptions {
optional bool include_in_bitcoin_only = 60000 ; // definitions are available on BITCOIN_ONLY build
// intentionally identical to `bitcoin_only` from enum
}
2020-10-07 16:18:03 +00:00
2018-07-04 12:20:28 +00:00
/ * *
2019-06-17 18:27:55 +00:00
* Mapping between Trezor wire identifier ( uint ) and a protobuf message
2014-03-25 18:20:36 +00:00
* /
2013-11-22 16:27:47 +00:00
enum MessageType {
2021-05-31 13:09:43 +00:00
option ( has_bitcoin_only_values ) = true ;
2013-11-26 03:34:48 +00:00
2018-07-04 14:44:26 +00:00
// Management
2021-05-31 13:09:43 +00:00
MessageType_Initialize = 0 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_tiny ) = true ] ;
MessageType_Ping = 1 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2022-02-10 10:19:59 +00:00
MessageType_Success = 2 [ ( bitcoin_only ) = true , ( wire_out ) = true , ( wire_debug_out ) = true ] ;
MessageType_Failure = 3 [ ( bitcoin_only ) = true , ( wire_out ) = true , ( wire_debug_out ) = true ] ;
2021-05-31 13:09:43 +00:00
MessageType_ChangePin = 4 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_WipeDevice = 5 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_GetEntropy = 9 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_Entropy = 10 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_LoadDevice = 13 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_ResetDevice = 14 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2022-08-09 08:11:30 +00:00
MessageType_SetBusy = 16 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2021-05-31 13:09:43 +00:00
MessageType_Features = 17 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_PinMatrixRequest = 18 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_PinMatrixAck = 19 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_tiny ) = true , ( wire_no_fsm ) = true ] ;
MessageType_Cancel = 20 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_tiny ) = true ] ;
MessageType_LockDevice = 24 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_ApplySettings = 25 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_ButtonRequest = 26 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_ButtonAck = 27 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_tiny ) = true , ( wire_no_fsm ) = true ] ;
MessageType_ApplyFlags = 28 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2021-01-12 17:56:10 +00:00
MessageType_GetNonce = 31 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_Nonce = 33 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
2021-05-31 13:09:43 +00:00
MessageType_BackupDevice = 34 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_EntropyRequest = 35 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_EntropyAck = 36 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_PassphraseRequest = 41 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_PassphraseAck = 42 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_tiny ) = true , ( wire_no_fsm ) = true ] ;
MessageType_RecoveryDevice = 45 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_WordRequest = 46 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_WordAck = 47 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_GetFeatures = 55 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_SdProtect = 79 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_ChangeWipeCode = 82 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_EndSession = 83 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_DoPreauthorized = 84 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_PreauthorizedRequest = 85 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_CancelAuthorization = 86 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_RebootToBootloader = 87 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2022-04-22 22:16:35 +00:00
MessageType_GetFirmwareHash = 88 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_FirmwareHash = 89 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
2022-08-01 14:29:46 +00:00
reserved 90 to 92 ;
2022-06-03 09:38:22 +00:00
MessageType_UnlockPath = 93 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_UnlockedPathRequest = 94 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
2023-05-12 09:19:35 +00:00
MessageType_ShowDeviceTutorial = 95 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2023-07-20 11:20:50 +00:00
MessageType_UnlockBootloader = 96 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2023-08-23 07:59:52 +00:00
MessageType_AuthenticateDevice = 97 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_AuthenticityProof = 98 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2023-08-11 15:57:32 +00:00
MessageType_ChangeLanguage = 990 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_TranslationDataRequest = 991 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_TranslationDataAck = 992 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2024-01-08 22:40:25 +00:00
MessageType_SetBrightness = 993 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2021-05-31 13:09:43 +00:00
2018-07-04 14:44:26 +00:00
MessageType_SetU2FCounter = 63 [ ( wire_in ) = true ] ;
2019-11-11 14:58:09 +00:00
MessageType_GetNextU2FCounter = 80 [ ( wire_in ) = true ] ;
MessageType_NextU2FCounter = 81 [ ( wire_out ) = true ] ;
2018-07-04 14:44:26 +00:00
2020-02-10 11:33:36 +00:00
// Deprecated messages, kept for protobuf compatibility.
// Both are marked wire_out so that we don't need to implement incoming handler for legacy
2020-02-10 14:36:58 +00:00
MessageType_Deprecated_PassphraseStateRequest = 77 [ deprecated = true ] ;
MessageType_Deprecated_PassphraseStateAck = 78 [ deprecated = true ] ;
2020-02-10 11:33:36 +00:00
2018-07-04 14:44:26 +00:00
// Bootloader
2021-05-31 13:09:43 +00:00
MessageType_FirmwareErase = 6 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_bootloader ) = true ] ;
MessageType_FirmwareUpload = 7 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_bootloader ) = true ] ;
MessageType_FirmwareRequest = 8 [ ( bitcoin_only ) = true , ( wire_out ) = true , ( wire_bootloader ) = true ] ;
2024-02-20 11:03:59 +00:00
MessageType_ProdTestT1 = 32 [ ( bitcoin_only ) = true , ( wire_in ) = true , ( wire_bootloader ) = true ] ;
2018-07-04 14:44:26 +00:00
// Bitcoin
2021-05-31 13:09:43 +00:00
MessageType_GetPublicKey = 11 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_PublicKey = 12 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_SignTx = 15 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_TxRequest = 21 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_TxAck = 22 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_GetAddress = 29 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_Address = 30 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
2021-01-12 17:56:10 +00:00
MessageType_TxAckPaymentRequest = 37 [ ( wire_in ) = true ] ;
2021-05-31 13:09:43 +00:00
MessageType_SignMessage = 38 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_VerifyMessage = 39 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_MessageSignature = 40 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_GetOwnershipId = 43 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_OwnershipId = 44 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_GetOwnershipProof = 49 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_OwnershipProof = 50 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_AuthorizeCoinJoin = 51 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
2018-07-04 14:44:26 +00:00
// Crypto
2021-05-31 13:09:43 +00:00
MessageType_CipherKeyValue = 23 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_CipheredKeyValue = 48 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_SignIdentity = 53 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_SignedIdentity = 54 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
MessageType_GetECDHSessionKey = 61 [ ( bitcoin_only ) = true , ( wire_in ) = true ] ;
MessageType_ECDHSessionKey = 62 [ ( bitcoin_only ) = true , ( wire_out ) = true ] ;
2024-02-25 14:10:47 +00:00
// dropped: CosiCommit, CosiCommitment, CosiSign, CosiSignature
reserved 71 to 74 ;
2018-07-04 14:44:26 +00:00
// Debug
2021-05-31 13:09:43 +00:00
MessageType_DebugLinkDecision = 100 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true , ( wire_tiny ) = true , ( wire_no_fsm ) = true ] ;
MessageType_DebugLinkGetState = 101 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true , ( wire_tiny ) = true ] ;
MessageType_DebugLinkState = 102 [ ( bitcoin_only ) = true , ( wire_debug_out ) = true ] ;
MessageType_DebugLinkStop = 103 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkLog = 104 [ ( bitcoin_only ) = true , ( wire_debug_out ) = true ] ;
MessageType_DebugLinkMemoryRead = 110 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkMemory = 111 [ ( bitcoin_only ) = true , ( wire_debug_out ) = true ] ;
MessageType_DebugLinkMemoryWrite = 112 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkFlashErase = 113 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkLayout = 9001 [ ( bitcoin_only ) = true , ( wire_debug_out ) = true ] ;
MessageType_DebugLinkReseedRandom = 9002 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkRecordScreen = 9003 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkEraseSdCard = 9005 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
MessageType_DebugLinkWatchLayout = 9006 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
2023-05-04 12:25:43 +00:00
MessageType_DebugLinkResetDebugEvents = 9007 [ ( bitcoin_only ) = true , ( wire_debug_in ) = true ] ;
2018-07-04 14:44:26 +00:00
// Ethereum
2018-11-16 13:12:52 +00:00
MessageType_EthereumGetPublicKey = 450 [ ( wire_in ) = true ] ;
MessageType_EthereumPublicKey = 451 [ ( wire_out ) = true ] ;
2018-07-04 14:44:26 +00:00
MessageType_EthereumGetAddress = 56 [ ( wire_in ) = true ] ;
MessageType_EthereumAddress = 57 [ ( wire_out ) = true ] ;
MessageType_EthereumSignTx = 58 [ ( wire_in ) = true ] ;
2021-06-05 00:15:25 +00:00
MessageType_EthereumSignTxEIP1559 = 452 [ ( wire_in ) = true ] ;
2018-07-04 14:44:26 +00:00
MessageType_EthereumTxRequest = 59 [ ( wire_out ) = true ] ;
MessageType_EthereumTxAck = 60 [ ( wire_in ) = true ] ;
MessageType_EthereumSignMessage = 64 [ ( wire_in ) = true ] ;
MessageType_EthereumVerifyMessage = 65 [ ( wire_in ) = true ] ;
MessageType_EthereumMessageSignature = 66 [ ( wire_out ) = true ] ;
feat(core/ethereum): EIP-712
Based on original contribution by Max Kupriianov <xlab@hey.com>
Implemented EIP-712 typed data signatures in Ethereum app.
Add eth_abi into pyproject deps
device test for EIP 712
fixed hex decoding for address
fixup! fixed hex decoding for address
code quality, more pythonic code, removing unused imports
running black and isort on changed files
trezorctl file input for EIP 712 data signing
fixup! code quality, more pythonic code, removing unused imports
fixup! fixup! code quality, more pythonic code, removing unused imports
necessary changes after rebase to master
unit tests for sign_typed_data.py
new protobuf messages, working for nonarray types
simplified and verified solution for our simple data
support for simple arrays, without their confirmation
reverting protobuf value messages to bytes, appropriate changes
showing arrays in Trezor, code quality improvements
data validation on Trezor, minor improvements
using custom types for storing type data instead of dicts, addressing feedback from review
moving helper functions to its own file, tests for decode_data
additional overall tests
support for arrays of structs
adding support for metamask_v4_compat variable
using HashWriter object to collect the final hash continously
minor improvements in code quality
validate_field_type function
streaming values from client without saving them, missing UI
prototype of streamed UI using confirm_properties
accounting for bytes in data, more data types in integration tests
rebase on master, using f-strings
minor fixes and improvements from code review
StructHasher class for the whole hashing process
mypy and style changes
asking users whether to show structs and arrays
protobuf descriptions to fix make defs_check
unifying comments, mypy fix
unit tests for StructHasher class
UI fixtures, skipping device tests for T1
addressing majority of code review comments about code quality and structure
changing file structure - layouts, helpers, sign_typed_data
decode_data renaming and docstring, renaming unit test file
using tuples instead of lists in elifs
layout improvements
excluding core/src/apps/common/confirm.py file from the PR
True/False returning layout with Show more button
code review layout improvements
forgotten br_type argument to should_show_more
2021-04-12 20:38:07 +00:00
MessageType_EthereumSignTypedData = 464 [ ( wire_in ) = true ] ;
MessageType_EthereumTypedDataStructRequest = 465 [ ( wire_out ) = true ] ;
MessageType_EthereumTypedDataStructAck = 466 [ ( wire_in ) = true ] ;
MessageType_EthereumTypedDataValueRequest = 467 [ ( wire_out ) = true ] ;
MessageType_EthereumTypedDataValueAck = 468 [ ( wire_in ) = true ] ;
MessageType_EthereumTypedDataSignature = 469 [ ( wire_out ) = true ] ;
2021-11-29 23:37:23 +00:00
MessageType_EthereumSignTypedHash = 470 [ ( wire_in ) = true ] ;
2018-07-04 14:44:26 +00:00
// NEM
MessageType_NEMGetAddress = 67 [ ( wire_in ) = true ] ;
MessageType_NEMAddress = 68 [ ( wire_out ) = true ] ;
MessageType_NEMSignTx = 69 [ ( wire_in ) = true ] ;
MessageType_NEMSignedTx = 70 [ ( wire_out ) = true ] ;
MessageType_NEMDecryptMessage = 75 [ ( wire_in ) = true ] ;
MessageType_NEMDecryptedMessage = 76 [ ( wire_out ) = true ] ;
// Lisk
2021-08-18 10:06:48 +00:00
/ *
2018-07-04 14:44:26 +00:00
MessageType_LiskGetAddress = 114 [ ( wire_in ) = true ] ;
MessageType_LiskAddress = 115 [ ( wire_out ) = true ] ;
MessageType_LiskSignTx = 116 [ ( wire_in ) = true ] ;
MessageType_LiskSignedTx = 117 [ ( wire_out ) = true ] ;
MessageType_LiskSignMessage = 118 [ ( wire_in ) = true ] ;
MessageType_LiskMessageSignature = 119 [ ( wire_out ) = true ] ;
MessageType_LiskVerifyMessage = 120 [ ( wire_in ) = true ] ;
MessageType_LiskGetPublicKey = 121 [ ( wire_in ) = true ] ;
MessageType_LiskPublicKey = 122 [ ( wire_out ) = true ] ;
2021-08-18 10:06:48 +00:00
* /
reserved 114 to 122 ;
2018-07-04 14:44:26 +00:00
// Tezos
MessageType_TezosGetAddress = 150 [ ( wire_in ) = true ] ;
MessageType_TezosAddress = 151 [ ( wire_out ) = true ] ;
MessageType_TezosSignTx = 152 [ ( wire_in ) = true ] ;
MessageType_TezosSignedTx = 153 [ ( wire_out ) = true ] ;
MessageType_TezosGetPublicKey = 154 [ ( wire_in ) = true ] ;
MessageType_TezosPublicKey = 155 [ ( wire_out ) = true ] ;
// Stellar
MessageType_StellarSignTx = 202 [ ( wire_in ) = true ] ;
MessageType_StellarTxOpRequest = 203 [ ( wire_out ) = true ] ;
MessageType_StellarGetAddress = 207 [ ( wire_in ) = true ] ;
MessageType_StellarAddress = 208 [ ( wire_out ) = true ] ;
MessageType_StellarCreateAccountOp = 210 [ ( wire_in ) = true ] ;
MessageType_StellarPaymentOp = 211 [ ( wire_in ) = true ] ;
2021-10-07 01:58:52 +00:00
MessageType_StellarPathPaymentStrictReceiveOp = 212 [ ( wire_in ) = true ] ;
MessageType_StellarManageSellOfferOp = 213 [ ( wire_in ) = true ] ;
2021-10-07 23:33:09 +00:00
MessageType_StellarCreatePassiveSellOfferOp = 214 [ ( wire_in ) = true ] ;
2018-07-04 14:44:26 +00:00
MessageType_StellarSetOptionsOp = 215 [ ( wire_in ) = true ] ;
MessageType_StellarChangeTrustOp = 216 [ ( wire_in ) = true ] ;
MessageType_StellarAllowTrustOp = 217 [ ( wire_in ) = true ] ;
MessageType_StellarAccountMergeOp = 218 [ ( wire_in ) = true ] ;
2023-11-30 23:47:41 +00:00
reserved 219 ; // omitted: StellarInflationOp
2018-07-04 14:44:26 +00:00
MessageType_StellarManageDataOp = 220 [ ( wire_in ) = true ] ;
MessageType_StellarBumpSequenceOp = 221 [ ( wire_in ) = true ] ;
2021-10-07 03:48:45 +00:00
MessageType_StellarManageBuyOfferOp = 222 [ ( wire_in ) = true ] ;
2021-10-07 14:06:08 +00:00
MessageType_StellarPathPaymentStrictSendOp = 223 [ ( wire_in ) = true ] ;
2023-11-30 23:47:41 +00:00
reserved 224 ; // omitted: StellarCreateClaimableBalanceOp
MessageType_StellarClaimClaimableBalanceOp = 225 [ ( wire_in ) = true ] ;
2018-07-04 14:44:26 +00:00
MessageType_StellarSignedTx = 230 [ ( wire_out ) = true ] ;
// Cardano
2018-09-06 15:05:09 +00:00
// dropped Sign/VerifyMessage ids 300-302
2020-07-01 13:43:02 +00:00
// dropped TxRequest/TxAck ids 304 and 309 (shelley update)
2022-04-16 09:34:47 +00:00
// dropped SignTx/SignedTx/SignedTxChunk/SignedTxChunkAck ids 303, 310, 311 and 312
reserved 300 to 304 , 309 to 312 ;
2018-07-04 14:44:26 +00:00
MessageType_CardanoGetPublicKey = 305 [ ( wire_in ) = true ] ;
MessageType_CardanoPublicKey = 306 [ ( wire_out ) = true ] ;
MessageType_CardanoGetAddress = 307 [ ( wire_in ) = true ] ;
MessageType_CardanoAddress = 308 [ ( wire_out ) = true ] ;
2021-06-30 12:06:23 +00:00
MessageType_CardanoTxItemAck = 313 [ ( wire_out ) = true ] ;
MessageType_CardanoTxAuxiliaryDataSupplement = 314 [ ( wire_out ) = true ] ;
MessageType_CardanoTxWitnessRequest = 315 [ ( wire_in ) = true ] ;
MessageType_CardanoTxWitnessResponse = 316 [ ( wire_out ) = true ] ;
MessageType_CardanoTxHostAck = 317 [ ( wire_in ) = true ] ;
MessageType_CardanoTxBodyHash = 318 [ ( wire_out ) = true ] ;
MessageType_CardanoSignTxFinished = 319 [ ( wire_out ) = true ] ;
MessageType_CardanoSignTxInit = 320 [ ( wire_in ) = true ] ;
MessageType_CardanoTxInput = 321 [ ( wire_in ) = true ] ;
MessageType_CardanoTxOutput = 322 [ ( wire_in ) = true ] ;
MessageType_CardanoAssetGroup = 323 [ ( wire_in ) = true ] ;
MessageType_CardanoToken = 324 [ ( wire_in ) = true ] ;
MessageType_CardanoTxCertificate = 325 [ ( wire_in ) = true ] ;
MessageType_CardanoTxWithdrawal = 326 [ ( wire_in ) = true ] ;
MessageType_CardanoTxAuxiliaryData = 327 [ ( wire_in ) = true ] ;
MessageType_CardanoPoolOwner = 328 [ ( wire_in ) = true ] ;
MessageType_CardanoPoolRelayParameters = 329 [ ( wire_in ) = true ] ;
2021-07-23 09:42:38 +00:00
MessageType_CardanoGetNativeScriptHash = 330 [ ( wire_in ) = true ] ;
2021-07-23 12:54:32 +00:00
MessageType_CardanoNativeScriptHash = 331 [ ( wire_out ) = true ] ;
MessageType_CardanoTxMint = 332 [ ( wire_in ) = true ] ;
2021-10-21 17:43:10 +00:00
MessageType_CardanoTxCollateralInput = 333 [ ( wire_in ) = true ] ;
MessageType_CardanoTxRequiredSigner = 334 [ ( wire_in ) = true ] ;
2022-06-06 11:32:48 +00:00
MessageType_CardanoTxInlineDatumChunk = 335 [ ( wire_in ) = true ] ;
MessageType_CardanoTxReferenceScriptChunk = 336 [ ( wire_in ) = true ] ;
MessageType_CardanoTxReferenceInput = 337 [ ( wire_in ) = true ] ;
2018-07-10 15:35:31 +00:00
// Ripple
MessageType_RippleGetAddress = 400 [ ( wire_in ) = true ] ;
MessageType_RippleAddress = 401 [ ( wire_out ) = true ] ;
MessageType_RippleSignTx = 402 [ ( wire_in ) = true ] ;
MessageType_RippleSignedTx = 403 [ ( wire_in ) = true ] ;
2018-07-22 17:47:30 +00:00
// Monero
2018-09-18 09:25:23 +00:00
MessageType_MoneroTransactionInitRequest = 501 [ ( wire_out ) = true ] ;
2018-07-22 17:47:30 +00:00
MessageType_MoneroTransactionInitAck = 502 [ ( wire_out ) = true ] ;
2018-09-18 09:25:23 +00:00
MessageType_MoneroTransactionSetInputRequest = 503 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionSetInputAck = 504 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionInputViniRequest = 507 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionInputViniAck = 508 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionAllInputsSetRequest = 509 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionAllInputsSetAck = 510 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionSetOutputRequest = 511 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionSetOutputAck = 512 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionAllOutSetRequest = 513 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionAllOutSetAck = 514 [ ( wire_out ) = true ] ;
2018-10-17 20:42:49 +00:00
MessageType_MoneroTransactionSignInputRequest = 515 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionSignInputAck = 516 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionFinalRequest = 517 [ ( wire_out ) = true ] ;
MessageType_MoneroTransactionFinalAck = 518 [ ( wire_out ) = true ] ;
2018-09-18 09:25:23 +00:00
MessageType_MoneroKeyImageExportInitRequest = 530 [ ( wire_out ) = true ] ;
MessageType_MoneroKeyImageExportInitAck = 531 [ ( wire_out ) = true ] ;
MessageType_MoneroKeyImageSyncStepRequest = 532 [ ( wire_out ) = true ] ;
MessageType_MoneroKeyImageSyncStepAck = 533 [ ( wire_out ) = true ] ;
MessageType_MoneroKeyImageSyncFinalRequest = 534 [ ( wire_out ) = true ] ;
MessageType_MoneroKeyImageSyncFinalAck = 535 [ ( wire_out ) = true ] ;
MessageType_MoneroGetAddress = 540 [ ( wire_in ) = true ] ;
MessageType_MoneroAddress = 541 [ ( wire_out ) = true ] ;
MessageType_MoneroGetWatchKey = 542 [ ( wire_in ) = true ] ;
MessageType_MoneroWatchKey = 543 [ ( wire_out ) = true ] ;
MessageType_DebugMoneroDiagRequest = 546 [ ( wire_in ) = true ] ;
MessageType_DebugMoneroDiagAck = 547 [ ( wire_out ) = true ] ;
2018-12-18 22:10:57 +00:00
MessageType_MoneroGetTxKeyRequest = 550 [ ( wire_in ) = true ] ;
MessageType_MoneroGetTxKeyAck = 551 [ ( wire_out ) = true ] ;
MessageType_MoneroLiveRefreshStartRequest = 552 [ ( wire_in ) = true ] ;
MessageType_MoneroLiveRefreshStartAck = 553 [ ( wire_out ) = true ] ;
MessageType_MoneroLiveRefreshStepRequest = 554 [ ( wire_in ) = true ] ;
MessageType_MoneroLiveRefreshStepAck = 555 [ ( wire_out ) = true ] ;
MessageType_MoneroLiveRefreshFinalRequest = 556 [ ( wire_in ) = true ] ;
MessageType_MoneroLiveRefreshFinalAck = 557 [ ( wire_out ) = true ] ;
2019-01-28 17:49:56 +00:00
// EOS
MessageType_EosGetPublicKey = 600 [ ( wire_in ) = true ] ;
MessageType_EosPublicKey = 601 [ ( wire_out ) = true ] ;
MessageType_EosSignTx = 602 [ ( wire_in ) = true ] ;
MessageType_EosTxActionRequest = 603 [ ( wire_out ) = true ] ;
MessageType_EosTxActionAck = 604 [ ( wire_in ) = true ] ;
MessageType_EosSignedTx = 605 [ ( wire_out ) = true ] ;
2019-02-25 13:00:27 +00:00
// Binance
MessageType_BinanceGetAddress = 700 [ ( wire_in ) = true ] ;
MessageType_BinanceAddress = 701 [ ( wire_out ) = true ] ;
MessageType_BinanceGetPublicKey = 702 [ ( wire_in ) = true ] ;
MessageType_BinancePublicKey = 703 [ ( wire_out ) = true ] ;
MessageType_BinanceSignTx = 704 [ ( wire_in ) = true ] ;
MessageType_BinanceTxRequest = 705 [ ( wire_out ) = true ] ;
MessageType_BinanceTransferMsg = 706 [ ( wire_in ) = true ] ;
MessageType_BinanceOrderMsg = 707 [ ( wire_in ) = true ] ;
MessageType_BinanceCancelMsg = 708 [ ( wire_in ) = true ] ;
MessageType_BinanceSignedTx = 709 [ ( wire_out ) = true ] ;
2019-09-01 20:54:34 +00:00
// WebAuthn
MessageType_WebAuthnListResidentCredentials = 800 [ ( wire_in ) = true ] ;
MessageType_WebAuthnCredentials = 801 [ ( wire_out ) = true ] ;
MessageType_WebAuthnAddResidentCredential = 802 [ ( wire_in ) = true ] ;
MessageType_WebAuthnRemoveResidentCredential = 803 [ ( wire_in ) = true ] ;
2023-10-18 09:40:19 +00:00
// Solana
MessageType_SolanaGetPublicKey = 900 [ ( wire_in ) = true ] ;
MessageType_SolanaPublicKey = 901 [ ( wire_out ) = true ] ;
2023-10-18 09:43:41 +00:00
MessageType_SolanaGetAddress = 902 [ ( wire_in ) = true ] ;
MessageType_SolanaAddress = 903 [ ( wire_out ) = true ] ;
2023-10-18 09:48:32 +00:00
MessageType_SolanaSignTx = 904 [ ( wire_in ) = true ] ;
MessageType_SolanaTxSignature = 905 [ ( wire_out ) = true ] ;
2018-07-04 11:52:08 +00:00
}