mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
45 lines
1.1 KiB
Protocol Buffer
45 lines
1.1 KiB
Protocol Buffer
syntax = "proto2";
|
|
package hw.trezor.messages.solana;
|
|
|
|
import "messages-common.proto";
|
|
|
|
/**
|
|
* Request: Ask device for public key corresponding to address_n path
|
|
* @start
|
|
* @next SolanaPublicKey
|
|
* @next Failure
|
|
*/
|
|
message SolanaGetPublicKey {
|
|
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
|
|
optional bool show_display = 2; // optionally show on display before sending the result
|
|
}
|
|
|
|
/**
|
|
* Response: Contains public key derived from device private seed
|
|
* @end
|
|
*/
|
|
message SolanaPublicKey {
|
|
required bytes public_key = 1;
|
|
}
|
|
|
|
/**
|
|
* Request: Ask device for Solana address
|
|
* @start
|
|
* @next SolanaAddress
|
|
* @next Failure
|
|
*/
|
|
message SolanaGetAddress {
|
|
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
|
|
optional bool show_display = 2; // optionally show on display before sending the result
|
|
optional bool chunkify = 3; // display the address in chunks of 4 characters
|
|
}
|
|
|
|
/**
|
|
* Response: Contains a Solana address derived from device private seed
|
|
* @end
|
|
*/
|
|
message SolanaAddress {
|
|
required string address = 1; // Solana address as Base58 encoded string
|
|
}
|
|
|