+12



![dependabot[bot]](/avatar/e3695107d1ffb5325eb910809a229db8?size=40)
![dependabot[bot]](/avatar/48ea49be76d0c68403a7f3df87e3487d?size=40)
![mergify[bot]](/avatar/e3df20cd7a67969c41a65f03bea54961?size=40)


a991f69d05
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: yihuang <huang@crypto.com> Co-authored-by: mmsqe <mavis@crypto.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io> Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com> Co-authored-by: FT <140458077+zeevick10@users.noreply.github.com> Co-authored-by: VolodymyrBg <aqdrgg19@gmail.com> Co-authored-by: GarmashAlex <garmasholeksii@gmail.com> Co-authored-by: kilavvy <140459108+kilavvy@users.noreply.github.com> Co-authored-by: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Co-authored-by: fuder.eth <139509124+vtjl10@users.noreply.github.com> Co-authored-by: leopardracer <136604165+leopardracer@users.noreply.github.com> Co-authored-by: MozirDmitriy <dmitriymozir@gmail.com> Co-authored-by: Avory <avorycorelli@gmail.com> Co-authored-by: mmsqe <tqd0800210105@gmail.com> Co-authored-by: julienrbrt <julien@rbrt.fr> Co-authored-by: Aaron <aaronc@users.noreply.github.com> Co-authored-by: Vlad J <vladjdk@gmail.com> Co-authored-by: Thomas Nguy <thomas.nguy@crypto.com>
29 lines
898 B
Protocol Buffer
29 lines
898 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package testpbgogo;
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
import "cosmos/msg/v1/msg.proto";
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
service MsgGogoOnly {
|
|
// Send a request and returns the request as a response.
|
|
rpc Send(MsgRequestGogoOnly) returns (MsgResponseGoGoOnly) {
|
|
option (cosmos_proto.method_added_in) = "cosmos-sdk v0.50.0";
|
|
};
|
|
}
|
|
|
|
message MsgRequestGogoOnly {
|
|
option (cosmos.msg.v1.signer) = "an_address";
|
|
|
|
string str = 3;
|
|
cosmos.base.v1beta1.Coin a_coin = 18 [(gogoproto.nullable) = false];
|
|
string an_address = 19 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
string a_validator_address = 33 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
}
|
|
|
|
message MsgResponseGoGoOnly {
|
|
MsgRequestGogoOnly request = 1;
|
|
}
|