2012-12-03 15:36:03 +00:00
|
|
|
/*
|
|
|
|
This file describes Protocol buffers messages for bitcoin hardware wallet devices.
|
|
|
|
|
|
|
|
Author: slush <info@bitcoin.cz>
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Specifies which script will be used for given transaction output.
|
2012-11-15 10:35:48 +00:00
|
|
|
enum ScriptType {
|
|
|
|
PAYTOADDRESS = 0;
|
|
|
|
PAYTOSCRIPTHASH = 1;
|
|
|
|
}
|
|
|
|
|
2013-01-24 20:19:54 +00:00
|
|
|
// Specifies which kind of information is required by transaction signing process
|
|
|
|
enum RequestType {
|
|
|
|
TXINPUT = 0;
|
|
|
|
TXOUTPUT = 1;
|
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Reset device's internal state
|
|
|
|
//
|
|
|
|
// Response: Features
|
2012-11-15 10:35:48 +00:00
|
|
|
message Initialize {
|
|
|
|
}
|
|
|
|
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response object for Initialize.
|
2012-11-15 10:35:48 +00:00
|
|
|
message Features {
|
2013-08-31 21:46:28 +00:00
|
|
|
optional string vendor = 2; // Name of the manufacturer, e.g. "trezor"
|
2012-12-03 15:36:03 +00:00
|
|
|
optional uint32 major_version = 3; // Major version of the device, e.g. 1
|
|
|
|
optional uint32 minor_version = 4; // Minor version of the device, e.g. 0
|
2013-04-05 15:12:43 +00:00
|
|
|
optional uint64 maxfee_kb = 10; // Maximum accepted fee per kilobyte of signed transaction
|
2012-12-03 15:36:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test if device is live, device will send back the message on success
|
|
|
|
//
|
2012-11-15 10:35:48 +00:00
|
|
|
// Response: None or Success
|
|
|
|
message Ping {
|
2012-12-03 15:36:03 +00:00
|
|
|
optional string message = 1; // Message will be sent back in Success message
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Virtually "press" the button on the device.
|
|
|
|
// Message is available only on debugging connection and device must support "debug_link" feature.
|
|
|
|
//
|
|
|
|
// Response: Success
|
|
|
|
message DebugLinkDecision {
|
|
|
|
required bool yes_no = 1; // True for "confirm", False for "cancel"
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// When sent over debug link connection, computer asks for some internal information of the device.
|
|
|
|
//
|
|
|
|
// Response: DebugLinkState
|
|
|
|
message DebugLinkGetState {
|
|
|
|
optional bool layout = 1; // Request raw buffer of display
|
2013-08-31 21:46:28 +00:00
|
|
|
optional bool matrix = 3; // Request current matrix
|
2012-12-03 15:36:03 +00:00
|
|
|
optional bool seed = 4; // Request current seed
|
|
|
|
// optional bool state = 5;
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Response object reflecting device's current state. It can be received only over debug link connection.
|
|
|
|
message DebugLinkState {
|
|
|
|
optional bytes layout = 1; // Raw buffer of display
|
2013-08-31 21:46:28 +00:00
|
|
|
optional PinMatrixAck pin = 3; // Current PIN matrix, blank if PIN is not set/enabled
|
|
|
|
optional bytes seed = 4; // Current seed (in mnemonic format)
|
|
|
|
// optional bytes state = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask device to shutdown/restart
|
|
|
|
message DebugLinkStop {
|
2012-12-03 15:36:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Response object defining success of the previous request
|
|
|
|
message Success {
|
2013-08-31 21:46:28 +00:00
|
|
|
optional bytes message = 1; // May contain human readable description of the action or request-specific payload
|
2012-12-03 15:36:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Response object defining failure of the previous request
|
|
|
|
message Failure {
|
|
|
|
optional int32 code = 1; // May contain computer-readable definition of the error state
|
2013-08-31 21:46:28 +00:00
|
|
|
optional bytes message = 2; // May contain human-readable message of the error state
|
2012-11-15 20:08:52 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Ask device for unique identifier.
|
|
|
|
//
|
|
|
|
// Response: UUID
|
2012-11-15 10:35:48 +00:00
|
|
|
message GetUUID {
|
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Identifier of the device. This identifier must be composed from CPU serial number
|
|
|
|
// or other persistent source and must be the same for consecutive requests.
|
2012-11-15 10:35:48 +00:00
|
|
|
message UUID {
|
|
|
|
required bytes UUID = 1;
|
|
|
|
}
|
|
|
|
|
2012-12-13 18:47:37 +00:00
|
|
|
// Message can be sent by the *device* as a resopnse to any request.
|
|
|
|
// Device is waiting for HW button press. No action is required from computer
|
|
|
|
// Computer should respond with ButtonAck message or ButtonCancel to cancel
|
|
|
|
// the original request.
|
|
|
|
message ButtonRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Computer agrees to wait for HW button press.
|
|
|
|
message ButtonAck {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Computer want to cancel current action (don't wait to HW button press)
|
|
|
|
message ButtonCancel {
|
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Message can be sent by the *device* as a response to any request.
|
2013-08-31 21:46:28 +00:00
|
|
|
// Message asks computer to send back PinMatrixAck with the password encoded in pin matrix scheme.
|
2012-12-03 15:36:03 +00:00
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: PinMatrixAck, PinMatrixCancel
|
|
|
|
message PinMatrixRequest {
|
|
|
|
optional bytes message = 1; // Human readable message
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 21:46:28 +00:00
|
|
|
// Message is sent by the computer as a response to PinMatrixRequest previously sent by the device.
|
|
|
|
message PinMatrixAck {
|
|
|
|
required bytes pin = 1; // User must write down the password for accessing the device.
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 21:46:28 +00:00
|
|
|
// Message is sent as a response to PinMatrixRequest by the computer, asking the device to cancel
|
2012-12-03 15:36:03 +00:00
|
|
|
// pending action and reset to the default state.
|
2013-08-31 21:46:28 +00:00
|
|
|
message PinMatrixCancel {
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Request a sample of random data generated by hardware RNG. May be used
|
|
|
|
// for tests of internal RNG.
|
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: PinMatrixRequest, Entropy, Failure
|
2012-11-15 10:35:48 +00:00
|
|
|
message GetEntropy {
|
2012-12-03 15:36:03 +00:00
|
|
|
required uint32 size = 1; // Size of randomly generated buffer
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Response to GetEntropy request contains random data generated by internal HRNG.
|
2012-11-15 10:35:48 +00:00
|
|
|
message Entropy {
|
2012-12-03 15:36:03 +00:00
|
|
|
required bytes entropy = 1; // Stream of generated bytes
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Set maximum allowed fee per kB of transaction. This is used by internal sanity checking
|
|
|
|
// in SignTx method. Transaction won't be signed if requested transaction fees are above
|
|
|
|
// current value.
|
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: Success, PinMatrixRequest, Failure
|
2012-11-15 10:35:48 +00:00
|
|
|
message SetMaxFeeKb {
|
2013-08-31 21:46:28 +00:00
|
|
|
required uint64 maxfee_kb = 1; // Maximum allowed transaction fee in satoshis per kB
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Ask device for it's current master public key. This may be used for generating
|
|
|
|
// public keys on the computer independently to the device. API doesn't provide
|
|
|
|
// any other way how to get bitcoin addresses from the device.
|
|
|
|
//
|
2012-11-15 10:35:48 +00:00
|
|
|
// Response: MasterPublicKey, Failure
|
|
|
|
message GetMasterPublicKey {
|
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Contains master public key derived from device's seed.
|
2012-11-15 10:35:48 +00:00
|
|
|
message MasterPublicKey {
|
2012-12-03 15:36:03 +00:00
|
|
|
required bytes key = 1; // master public key of requested algorithm in binary format
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 14:40:53 +00:00
|
|
|
message GetAddress {
|
2013-04-05 15:12:43 +00:00
|
|
|
repeated uint32 address_n = 1; // Parameter for address generation algorithm to derive the address from the master public key
|
2013-01-05 14:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Address {
|
2013-04-05 15:12:43 +00:00
|
|
|
required string address = 1; // Bitcoin address in base58 encoding corresponding to GetAddress(n) call
|
2013-01-05 14:40:53 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Load seed and related internal settings from computer to the device. Existing seed is overwritten.
|
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: Success, PinMatrixRequest, Failure
|
2012-11-15 10:35:48 +00:00
|
|
|
message LoadDevice {
|
2013-08-31 21:46:28 +00:00
|
|
|
required string seed = 1; // Seed encoded as a mnemonic (12 english words)
|
|
|
|
optional bytes pin = 2; // Set PIN protection for important actions
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Request device to do full-reset, to generate new seed
|
2013-08-31 21:46:28 +00:00
|
|
|
// and ask user for new settings (PIN).
|
2012-12-03 15:36:03 +00:00
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: Success, PinMatrixRequest, Failure
|
2012-11-15 10:35:48 +00:00
|
|
|
message ResetDevice {
|
2012-12-03 15:36:03 +00:00
|
|
|
optional bytes random = 7; // Provide additional entropy for seed generation function.
|
|
|
|
// Recommended to provide 256 bytes of random data.
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 15:36:03 +00:00
|
|
|
// Request the device to sign the transaction
|
|
|
|
//
|
2013-08-31 21:46:28 +00:00
|
|
|
// Response: TxRequest, PinMatrixRequest, Failure
|
2012-11-15 10:35:48 +00:00
|
|
|
message SignTx {
|
2013-01-14 18:20:55 +00:00
|
|
|
required uint32 outputs_count = 3; // Count of outputs of the transaction
|
|
|
|
required uint32 inputs_count = 5; // Count of inputs of the transaction
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 20:19:54 +00:00
|
|
|
// Sent by the device as a response for SignTx. Device asks for information for signing transaction.
|
|
|
|
// If request_index is set, device asks for TxInput/TxOutput message (depends on request_type)
|
|
|
|
// with details of index's input.
|
2012-12-03 15:36:03 +00:00
|
|
|
// If signed_index is set, 'signature' contains signed input of signed_index's input.
|
2013-01-24 20:19:54 +00:00
|
|
|
message TxRequest {
|
|
|
|
optional int32 request_index = 1; // If >=0, device expects TxInput/TxOutput message from the computer
|
|
|
|
optional RequestType request_type = 2; // Ask for TxInput or TxOutput?
|
2013-04-05 15:12:43 +00:00
|
|
|
optional int32 signed_index = 3; // If >=0, 'signature' contains signed input of this input
|
2013-01-24 20:19:54 +00:00
|
|
|
optional bytes signature = 4; // If signed_index>=0, represent signature of the signed_index input
|
|
|
|
optional bytes serialized_tx = 5; // Part of serialized and signed transaction
|
2012-12-03 15:36:03 +00:00
|
|
|
}
|
2012-11-15 10:35:48 +00:00
|
|
|
|
2013-01-24 20:19:54 +00:00
|
|
|
// Transaction onput for SignTx workflow. It is response to TxRequest message sent by device.
|
2012-12-03 15:36:03 +00:00
|
|
|
//
|
2013-01-24 20:19:54 +00:00
|
|
|
// Response: TxRequest, Failure
|
2012-12-03 15:36:03 +00:00
|
|
|
message TxInput {
|
|
|
|
required uint32 index = 1; // Position of input in proposed transaction
|
|
|
|
repeated uint32 address_n = 2; // Parameter for address generation algorithm to derive the address from the master public key
|
|
|
|
required uint64 amount = 3; // Amount to spend in satoshis. The rest will be used for transaction fees
|
2013-01-14 18:20:55 +00:00
|
|
|
required bytes prev_hash = 4; // Hash of previous transaction output to spend by this input
|
|
|
|
required uint32 prev_index = 5; // Index of previous output to spend
|
2012-12-03 15:36:03 +00:00
|
|
|
optional bytes script_sig = 6; // Script signature
|
2012-11-15 10:35:48 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 20:19:54 +00:00
|
|
|
// Transaction output for SignTx workflow. It is response to TxRequest message sent by the device.
|
2012-12-03 15:36:03 +00:00
|
|
|
message TxOutput {
|
|
|
|
required uint32 index = 1; // Position of output in proposed transaction
|
|
|
|
required string address = 2; // Target bitcoin address in base58 encoding
|
|
|
|
repeated uint32 address_n = 3; // Has higher priority than "address". If the output is to myself, specify parameter for address generation algorithm.
|
|
|
|
required uint64 amount = 4; // Amount to send in satoshis
|
|
|
|
required ScriptType script_type = 5;// Select output script type
|
|
|
|
repeated bytes script_args = 6; // Provide additional parameters for the script (its script-depended)
|
2013-08-31 21:46:28 +00:00
|
|
|
}
|