github.com/Finschia/finschia-sdk@v0.48.1/proto/cosmos/crisis/v1beta1/tx.proto (about)

     1  syntax = "proto3";
     2  package cosmos.crisis.v1beta1;
     3  
     4  option go_package = "github.com/Finschia/finschia-sdk/x/crisis/types";
     5  
     6  import "gogoproto/gogo.proto";
     7  
     8  // Msg defines the bank Msg service.
     9  service Msg {
    10    // VerifyInvariant defines a method to verify a particular invariance.
    11    rpc VerifyInvariant(MsgVerifyInvariant) returns (MsgVerifyInvariantResponse);
    12  }
    13  
    14  // MsgVerifyInvariant represents a message to verify a particular invariance.
    15  message MsgVerifyInvariant {
    16    option (gogoproto.equal)           = false;
    17    option (gogoproto.goproto_getters) = false;
    18  
    19    string sender                = 1;
    20    string invariant_module_name = 2 [(gogoproto.moretags) = "yaml:\"invariant_module_name\""];
    21    string invariant_route       = 3 [(gogoproto.moretags) = "yaml:\"invariant_route\""];
    22  }
    23  
    24  // MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type.
    25  message MsgVerifyInvariantResponse {}