github.com/badrootd/nibiru-cometbft@v0.37.5-0.20240307173500-2a75559eee9b/proto/tendermint/crypto/keys.proto (about) 1 syntax = "proto3"; 2 package tendermint.crypto; 3 4 option go_package = "github.com/cometbft/cometbft/proto/tendermint/crypto"; 5 6 import "gogoproto/gogo.proto"; 7 8 // PublicKey defines the keys available for use with Validators 9 message PublicKey { 10 option (gogoproto.compare) = true; 11 option (gogoproto.equal) = true; 12 13 oneof sum { 14 bytes ed25519 = 1; 15 bytes secp256k1 = 2; 16 } 17 }