3752485b27
* add protolint yaml * Update .protolint.yml with Evmos settings * Add super-linter.yml for GH action * Copy .markdownlint.yml settings from Evmos * Sort proto imports * address protolint error in all Protobuf files * update Makefile to mirror Proto commands for Evmos * remove unnecessary go get command in protocgen.sh when using cosmos docker image * copy .clang-format from Evmos repo * apply make proto-format * Execute make proto-all after changes to config are complete * address last linter comment
24 lines
641 B
Protocol Buffer
24 lines
641 B
Protocol Buffer
syntax = "proto3";
|
|
package ethermint.crypto.v1.ethsecp256k1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/evmos/ethermint/crypto/ethsecp256k1";
|
|
|
|
// PubKey defines a type alias for an ecdsa.PublicKey that implements
|
|
// Tendermint's PubKey interface. It represents the 33-byte compressed public
|
|
// key format.
|
|
message PubKey {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
// key is the public key in byte form
|
|
bytes key = 1;
|
|
}
|
|
|
|
// PrivKey defines a type alias for an ecdsa.PrivateKey that implements
|
|
// Tendermint's PrivateKey interface.
|
|
message PrivKey {
|
|
// key is the private key in byte form
|
|
bytes key = 1;
|
|
}
|