Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
204 lines
9.3 KiB
Protocol Buffer
204 lines
9.3 KiB
Protocol Buffer
syntax = "proto3";
|
|
package cosmos.staking.v1beta1;
|
|
|
|
import "google/protobuf/any.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
import "cosmos/staking/v1beta1/staking.proto";
|
|
import "cosmos/msg/v1/msg.proto";
|
|
import "amino/amino.proto";
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types";
|
|
|
|
// Msg defines the staking Msg service.
|
|
service Msg {
|
|
option (cosmos.msg.v1.service) = true;
|
|
|
|
// CreateValidator defines a method for creating a new validator.
|
|
rpc CreateValidator(MsgCreateValidator) returns (MsgCreateValidatorResponse);
|
|
|
|
// EditValidator defines a method for editing an existing validator.
|
|
rpc EditValidator(MsgEditValidator) returns (MsgEditValidatorResponse);
|
|
|
|
// Delegate defines a method for performing a delegation of coins
|
|
// from a delegator to a validator.
|
|
rpc Delegate(MsgDelegate) returns (MsgDelegateResponse);
|
|
|
|
// BeginRedelegate defines a method for performing a redelegation
|
|
// of coins from a delegator and source validator to a destination validator.
|
|
rpc BeginRedelegate(MsgBeginRedelegate) returns (MsgBeginRedelegateResponse);
|
|
|
|
// Undelegate defines a method for performing an undelegation from a
|
|
// delegate and a validator.
|
|
rpc Undelegate(MsgUndelegate) returns (MsgUndelegateResponse);
|
|
|
|
// CancelUnbondingDelegation defines a method for performing canceling the unbonding delegation
|
|
// and delegate back to previous validator.
|
|
rpc CancelUnbondingDelegation(MsgCancelUnbondingDelegation) returns (MsgCancelUnbondingDelegationResponse) {
|
|
option (cosmos_proto.method_added_in) = "cosmos-sdk 0.46";
|
|
};
|
|
|
|
// UpdateParams defines an operation for updating the x/staking module
|
|
// parameters.
|
|
rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse) {
|
|
option (cosmos_proto.method_added_in) = "cosmos-sdk 0.47";
|
|
};
|
|
}
|
|
|
|
// MsgCreateValidator defines a SDK message for creating a new validator.
|
|
message MsgCreateValidator {
|
|
option (cosmos.msg.v1.signer) = "validator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgCreateValidator";
|
|
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
Description description = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
CommissionRates commission = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
string min_self_delegation = 3 [
|
|
(cosmos_proto.scalar) = "cosmos.Int",
|
|
(gogoproto.customtype) = "cosmossdk.io/math.Int",
|
|
(gogoproto.nullable) = false,
|
|
(amino.dont_omitempty) = true
|
|
];
|
|
// Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
|
|
// The validator address bytes and delegator address bytes refer to the same account while creating validator (defer
|
|
// only in bech32 notation).
|
|
string delegator_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", deprecated = true];
|
|
string validator_address = 5 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
google.protobuf.Any pubkey = 6 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey"];
|
|
cosmos.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
}
|
|
|
|
// MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
|
|
message MsgCreateValidatorResponse {}
|
|
|
|
// MsgEditValidator defines a SDK message for editing an existing validator.
|
|
message MsgEditValidator {
|
|
option (cosmos.msg.v1.signer) = "validator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgEditValidator";
|
|
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
Description description = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
|
|
// We pass a reference to the new commission rate and min self delegation as
|
|
// it's not mandatory to update. If not updated, the deserialized rate will be
|
|
// zero with no way to distinguish if an update was intended.
|
|
// REF: #2373
|
|
string commission_rate = 3
|
|
[(cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec"];
|
|
string min_self_delegation = 4
|
|
[(cosmos_proto.scalar) = "cosmos.Int", (gogoproto.customtype) = "cosmossdk.io/math.Int"];
|
|
}
|
|
|
|
// MsgEditValidatorResponse defines the Msg/EditValidator response type.
|
|
message MsgEditValidatorResponse {}
|
|
|
|
// MsgDelegate defines a SDK message for performing a delegation of coins
|
|
// from a delegator to a validator.
|
|
message MsgDelegate {
|
|
option (cosmos.msg.v1.signer) = "delegator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgDelegate";
|
|
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
}
|
|
|
|
// MsgDelegateResponse defines the Msg/Delegate response type.
|
|
message MsgDelegateResponse {}
|
|
|
|
// MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
// of coins from a delegator and source validator to a destination validator.
|
|
message MsgBeginRedelegate {
|
|
option (cosmos.msg.v1.signer) = "delegator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgBeginRedelegate";
|
|
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
string validator_src_address = 2 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
string validator_dst_address = 3 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
cosmos.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
}
|
|
|
|
// MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type.
|
|
message MsgBeginRedelegateResponse {
|
|
google.protobuf.Timestamp completion_time = 1
|
|
[(gogoproto.nullable) = false, (amino.dont_omitempty) = true, (gogoproto.stdtime) = true];
|
|
}
|
|
|
|
// MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
// delegate and a validator.
|
|
message MsgUndelegate {
|
|
option (cosmos.msg.v1.signer) = "delegator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgUndelegate";
|
|
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
}
|
|
|
|
// MsgUndelegateResponse defines the Msg/Undelegate response type.
|
|
message MsgUndelegateResponse {
|
|
google.protobuf.Timestamp completion_time = 1
|
|
[(gogoproto.nullable) = false, (amino.dont_omitempty) = true, (gogoproto.stdtime) = true];
|
|
|
|
// amount returns the amount of undelegated coins
|
|
cosmos.base.v1beta1.Coin amount = 2
|
|
[(gogoproto.nullable) = false, (amino.dont_omitempty) = true, (cosmos_proto.field_added_in) = "cosmos-sdk 0.50"];
|
|
}
|
|
|
|
// MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
message MsgCancelUnbondingDelegation {
|
|
option (cosmos_proto.message_added_in) = "cosmos-sdk 0.46";
|
|
option (cosmos.msg.v1.signer) = "delegator_address";
|
|
option (amino.name) = "cosmos-sdk/MsgCancelUnbondingDelegation";
|
|
option (gogoproto.equal) = false;
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
string delegator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
string validator_address = 2 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"];
|
|
// amount is always less than or equal to unbonding delegation entry balance
|
|
cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
|
// creation_height is the height which the unbonding took place.
|
|
int64 creation_height = 4;
|
|
}
|
|
|
|
// MsgCancelUnbondingDelegationResponse
|
|
message MsgCancelUnbondingDelegationResponse {
|
|
option (cosmos_proto.message_added_in) = "cosmos-sdk 0.46";
|
|
}
|
|
|
|
// MsgUpdateParams is the Msg/UpdateParams request type.
|
|
message MsgUpdateParams {
|
|
option (cosmos_proto.message_added_in) = "cosmos-sdk 0.47";
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
option (amino.name) = "cosmos-sdk/x/staking/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/staking 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.
|
|
message MsgUpdateParamsResponse {
|
|
option (cosmos_proto.message_added_in) = "cosmos-sdk 0.47";
|
|
};
|