mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
2c9474ab7f
* begin on the proto definitions * define remote signer service protos * basic implementation * remote keymanager docs * finalize remote client doc * amend response * fix proto defs * test new and begin test sign * test sign done * Merge branch 'master' into remote-keymanager-v2 * remote oneof * rename * Merge branch 'remote-keymanager-v2' of github.com:prysmaticlabs/prysm into remote-keymanager-v2 * fix build * Merge refs/heads/master into remote-keymanager-v2 * viz * Merge branch 'remote-keymanager-v2' of github.com:prysmaticlabs/prysm into remote-keymanager-v2 * Merge refs/heads/master into remote-keymanager-v2 * Merge refs/heads/master into remote-keymanager-v2 * Update validator/keymanager/v2/remote/remote_test.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * Update validator/accounts/v2/wallet.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * fmt
65 lines
1.9 KiB
Protocol Buffer
65 lines
1.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.validator.accounts.v2;
|
|
|
|
import "google/api/annotations.proto";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
// RemoteSigner service API.
|
|
//
|
|
// Defines a remote-signing keymanager which manages eth2
|
|
// validator accounts and can sign respective messages.
|
|
service RemoteSigner {
|
|
// ListPublicKeysResponse managed by a remote signer.
|
|
rpc ListValidatingPublicKeys(google.protobuf.Empty) returns (ListPublicKeysResponse) {
|
|
option (google.api.http) = {
|
|
get: "/accounts/v2/remote/accounts"
|
|
};
|
|
}
|
|
|
|
// Sign a remote request via gRPC.
|
|
rpc Sign(SignRequest) returns (SignResponse) {
|
|
option (google.api.http) = {
|
|
post: "/accounts/v2/remote/sign"
|
|
};
|
|
}
|
|
}
|
|
|
|
// ListPublicKeysResponse contains public keys
|
|
// for the validator secrets managed by the remote signer.
|
|
message ListPublicKeysResponse {
|
|
// List of 48 byte, BLS12-381 validating public keys.
|
|
repeated bytes validating_public_keys = 2;
|
|
}
|
|
|
|
// 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 signing root the client is requesting to sign. The client is
|
|
// expected to determine these raw bytes from the appropriate BLS
|
|
// signing domain as well as the signing root of the data structure
|
|
// the bytes represent.
|
|
bytes signing_root = 2;
|
|
}
|
|
|
|
// SignResponse returned by a RemoteSigner gRPC service.
|
|
message SignResponse {
|
|
enum Status {
|
|
UNKNOWN = 0;
|
|
SUCCEEDED = 1;
|
|
DENIED = 2;
|
|
FAILED = 3;
|
|
}
|
|
|
|
// BLS12-381 signature for the data specified in the request.
|
|
bytes signature = 1;
|
|
|
|
// Status of the signing response, standardized as an enum
|
|
// to ensure different remote signing servers follow the
|
|
// same conventions.
|
|
Status status = 2;
|
|
} |