mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
14 lines
397 B
Protocol Buffer
14 lines
397 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ethereum.validator.accounts.v2;
|
||
|
|
||
|
// SignRequest is a message type used by a keymanager
|
||
|
// as part of Prysm's accounts v2 implementation.
|
||
|
message SignRequest {
|
||
|
// 48 byte public key corresponding to an associated private key
|
||
|
// being requested to sign data.
|
||
|
bytes public_key = 1;
|
||
|
|
||
|
// Raw bytes data the client is requesting to sign.
|
||
|
bytes data = 2;
|
||
|
}
|