node.proto 488 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. package node.v1;
  3. option go_package = "proto/node/v1;nodev1";
  4. import "google/api/annotations.proto";
  5. service Node {
  6. }
  7. message GuardianKey {
  8. // description is an optional, free-form description text set by the operator.
  9. string description = 1;
  10. // data is the binary representation of the secp256k1 private key.
  11. bytes data = 2;
  12. // pubkey is a human-readable representation of the key, included for operator convenience.
  13. string pubkey = 3;
  14. }