github.com/supragya/TendermintConnector@v0.0.0-20210619045051-113e32b84fb1/chains/cosmos/proto/tendermint/crypto/keys.proto (about) 1 syntax = "proto3"; 2 package tendermint.crypto; 3 4 option go_package = "github.com/supragya/TendermintConnector/chains/cosmos/proto/tendermint/crypto"; 5 6 import "gogoproto/gogo.proto"; 7 8 // PublicKey defines the keys available for use with Tendermint 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 }