mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-15 09:50:57 +00:00
protob: stellar get address
This commit is contained in:
parent
bd5d543399
commit
dcda93322a
@ -116,6 +116,8 @@ enum MessageType {
|
|||||||
MessageType_StellarPublicKey = 201 [(wire_out) = true];
|
MessageType_StellarPublicKey = 201 [(wire_out) = true];
|
||||||
MessageType_StellarSignTx = 202 [(wire_in) = true];
|
MessageType_StellarSignTx = 202 [(wire_in) = true];
|
||||||
MessageType_StellarTxOpRequest = 203 [(wire_out) = 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_StellarCreateAccountOp = 210 [(wire_in) = true];
|
||||||
MessageType_StellarPaymentOp = 211 [(wire_in) = true];
|
MessageType_StellarPaymentOp = 211 [(wire_in) = true];
|
||||||
MessageType_StellarPathPaymentOp = 212 [(wire_in) = true];
|
MessageType_StellarPathPaymentOp = 212 [(wire_in) = true];
|
||||||
@ -1021,6 +1023,22 @@ message StellarPublicKey {
|
|||||||
optional bytes public_key = 1; // Raw bytes of the public key (no version or checksum)
|
optional bytes public_key = 1; // Raw bytes of the public key (no version or checksum)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request: Address at the specified index
|
||||||
|
* @next StellarAddress
|
||||||
|
*/
|
||||||
|
message StellarGetAddress {
|
||||||
|
repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index'
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Response: Address for the given index
|
||||||
|
* @prev StellarGetAddress
|
||||||
|
*/
|
||||||
|
message StellarAddress {
|
||||||
|
optional string address = 1; // Address in Stellar format (base32 of a pubkey with checksum)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Request: ask device to sign Stellar transaction
|
* Request: ask device to sign Stellar transaction
|
||||||
* @next StellarTxOpRequest
|
* @next StellarTxOpRequest
|
||||||
|
Loading…
Reference in New Issue
Block a user