github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/proto/tendermint/privval/service.proto (about)

     1  syntax = "proto3";
     2  package seitendermint.privval;
     3  option  go_package = "github.com/ari-anchor/sei-tendermint/proto/tendermint/privval";
     4  
     5  import "tendermint/privval/types.proto";
     6  
     7  //----------------------------------------
     8  // Service Definition
     9  
    10  service PrivValidatorAPI {
    11    rpc GetPubKey(PubKeyRequest) returns (PubKeyResponse);
    12    rpc SignVote(SignVoteRequest) returns (SignedVoteResponse);
    13    rpc SignProposal(SignProposalRequest) returns (SignedProposalResponse);
    14  }