mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-24 17:58:45 +00:00
protobuf/eth: MessageSignature and VerifyMessage have also address as a string
This commit is contained in:
parent
6a39049cc1
commit
534d15f208
@ -106,8 +106,8 @@ message EthereumSignMessage {
|
|||||||
* @end
|
* @end
|
||||||
*/
|
*/
|
||||||
message EthereumMessageSignature {
|
message EthereumMessageSignature {
|
||||||
optional bytes address = 1; // address used to sign the message
|
|
||||||
optional bytes signature = 2; // signature of the message
|
optional bytes signature = 2; // signature of the message
|
||||||
|
optional string address = 3; // address used to sign the message
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -117,7 +117,7 @@ message EthereumMessageSignature {
|
|||||||
* @next Failure
|
* @next Failure
|
||||||
*/
|
*/
|
||||||
message EthereumVerifyMessage {
|
message EthereumVerifyMessage {
|
||||||
optional bytes address = 1; // address to verify
|
|
||||||
optional bytes signature = 2; // signature to verify
|
optional bytes signature = 2; // signature to verify
|
||||||
optional bytes message = 3; // message to verify
|
optional bytes message = 3; // message to verify
|
||||||
|
optional string address = 4; // address to verify
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user