You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
400 B

  1. syntax = "proto3";
  2. package tendermint.crypto;
  3. option go_package = "github.com/tendermint/tendermint/proto/tendermint/crypto";
  4. import "gogoproto/gogo.proto";
  5. // PublicKey defines the keys available for use with Tendermint Validators
  6. message PublicKey {
  7. option (gogoproto.compare) = true;
  8. option (gogoproto.equal) = true;
  9. oneof sum {
  10. bytes ed25519 = 1;
  11. bytes secp256k1 = 2;
  12. }
  13. }