2022-01-08 01:59:34 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.slashing.v1beta1;
|
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types";
|
|
|
|
option (gogoproto.equal_all) = true;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2024-02-06 22:54:10 +00:00
|
|
|
import "cosmos/slashing/v1beta1/slashing.proto";
|
2023-04-04 00:08:45 +00:00
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
|
|
import "cosmos/msg/v1/msg.proto";
|
2024-02-06 22:54:10 +00:00
|
|
|
import "amino/amino.proto";
|
2022-01-08 01:59:34 +00:00
|
|
|
|
|
|
|
// Msg defines the slashing Msg service.
|
|
|
|
service Msg {
|
2024-02-06 22:54:10 +00:00
|
|
|
option (cosmos.msg.v1.service) = true;
|
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
// Unjail defines a method for unjailing a jailed validator, thus returning
|
|
|
|
// them into the bonded validator set, so they can begin receiving provisions
|
|
|
|
// and rewards again.
|
|
|
|
rpc Unjail(MsgUnjail) returns (MsgUnjailResponse);
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// UpdateParams defines a governance operation for updating the x/slashing module
|
|
|
|
// parameters. The authority defaults to the x/gov module account.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.47
|
|
|
|
rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse);
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgUnjail defines the Msg/Unjail request type
|
|
|
|
message MsgUnjail {
|
2023-04-04 00:08:45 +00:00
|
|
|
option (cosmos.msg.v1.signer) = "validator_addr";
|
2024-02-06 22:54:10 +00:00
|
|
|
option (amino.name) = "cosmos-sdk/MsgUnjail";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = true;
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
string validator_addr = 1 [
|
|
|
|
(cosmos_proto.scalar) = "cosmos.AddressString",
|
|
|
|
(gogoproto.jsontag) = "address",
|
|
|
|
(amino.field_name) = "address",
|
|
|
|
(amino.dont_omitempty) = true
|
|
|
|
];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgUnjailResponse defines the Msg/Unjail response type
|
2023-04-04 00:08:45 +00:00
|
|
|
message MsgUnjailResponse {}
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// MsgUpdateParams is the Msg/UpdateParams request type.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.47
|
|
|
|
message MsgUpdateParams {
|
|
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
|
|
option (amino.name) = "cosmos-sdk/x/slashing/MsgUpdateParams";
|
|
|
|
|
|
|
|
// authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
|
|
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
|
|
|
|
// params defines the x/slashing parameters to update.
|
|
|
|
//
|
|
|
|
// NOTE: All parameters must be supplied.
|
|
|
|
Params params = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgUpdateParamsResponse defines the response structure for executing a
|
|
|
|
// MsgUpdateParams message.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.47
|
|
|
|
message MsgUpdateParamsResponse {}
|