-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel
committed
Oct 28, 2022
1 parent
1cfe0d6
commit 14a0ec4
Showing
2 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
syntax = "proto3"; | ||
package interchain_security.ccv.provider.v1; | ||
|
||
// this line is used by starport scaffolding # proto/tx/import | ||
|
||
option go_package = "github.com/cosmos/interchain-security/x/ccv/provider/types"; | ||
|
||
import "google/api/annotations.proto"; | ||
import "gogoproto/gogo.proto"; | ||
import "interchain_security/ccv/provider/v1/keymap.proto"; | ||
|
||
// Msg defines the Msg service. | ||
service Msg { | ||
rpc DesignateConsensusKeyForConsumerChain( | ||
MsgDesignateConsensusKeyForConsumerChain) | ||
returns (MsgDesignateConsensusKeyForConsumerChainResponse); | ||
// this line is used by starport scaffolding # proto/tx/rpc | ||
} | ||
|
||
message MsgDesignateConsensusKeyForConsumerChain { string placeholder = 1; } | ||
|
||
message MsgDesignateConsensusKeyForConsumerChainResponse { | ||
string placeholder = 1; | ||
} | ||
|
||
// this line is used by starport scaffolding # proto/tx/message |