Skip to content

Commit

Permalink
docs: ADR for Customizable Slashing and Jailing (#2146)
Browse files Browse the repository at this point in the history
* turn off expensive tests

* Proof of Reputation Consumer Chains  ADR

* Update docs/docs/adrs/adr-0XX-conditional-clients.md

Co-authored-by: Philip Offtermatt <[email protected]>

* Update docs/docs/adrs/adr-0XX-conditional-clients.md

Co-authored-by: Philip Offtermatt <[email protected]>

* address reviewing suggestions

* Delete .github/dependabot.yml

* change name of ADR

* update filename

* revert changes to main

* update ADR -- wip

* rename file

* update ADR decision

* suggestions from coderabbitai

* Update docs/docs/adrs/adr-020-cutomizable_slashing_and_jailing.md

Co-authored-by: insumity <[email protected]>

* Update docs/docs/adrs/adr-020-cutomizable_slashing_and_jailing.md

Co-authored-by: insumity <[email protected]>

---------

Co-authored-by: MSalopek <[email protected]>
Co-authored-by: Bernd Mueller <[email protected]>
Co-authored-by: Philip Offtermatt <[email protected]>
Co-authored-by: insumity <[email protected]>
  • Loading branch information
5 people authored Oct 18, 2024
1 parent c2a1c76 commit da02ef3
Showing 1 changed file with 185 additions and 0 deletions.
185 changes: 185 additions & 0 deletions docs/docs/adrs/adr-020-cutomizable_slashing_and_jailing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
---
sidebar_position: 21
title: Customizable Slashing and Jailing
---
# ADR 020: Customizable Slashing and Jailing

## Changelog
* 2024-07-19: Initial draft of ADR
* 2024-08-23: Generalize ADR to make slashing and jailing customizable

## Status

Proposed

## Context

Interchain Security (ICS) is a cross-chain staking protocol -- it uses the stake on the provider chain as collateral for the Proof of Stake (PoS) on the consumer chains.
This means that the voting power of validators validating (aka producing blocks) on the consumer chains is a function of their stake on the provider.
Moreover, if these validators misbehave on the consumer chains, they get punished on the provider chain.
ICS is currently differentiating between two types of infractions -- equivocation and downtime.
Depending on the infraction type, the misbehaving validators might be jailed (i.e., removed from the provider validator set) and / or slashed (i.e., a portion of their stake on the provider is being burned).
For example, validators double signing on consumer chains get slashed and are permanently jailed,
while validators not validating sufficient blocks are temporarily jailed.

This means that ICS consumer chains get their economical security from the provider.
However, this might come at a high cost.

### The Cost of PoS

One of the cost of validating on the consumer chains is operational -- validators need to run and monitor full nodes of every consumer chain they opt in for.
Although this cost varies from validator team to validator team (depending on how efficiently they can run their infrastructure), it doesn't depend on the total stake (or voting power) of the validators, so we can think of it as constant.
The other cost of validating comes from the risk of getting slashed or jailed.

Most chains in Cosmos (including the Cosmos Hub) use delegated PoS -- users delegate their tokens to validators, which stake them in return for voting power.
Therefore, validators act as representatives chosen by their delegators to represent their interests.
However, delegators share the risk of their validators getting slashed or jailed:

* When validators get slashed, a portion of their stake is being burned, including a portion of the tokens delegated by users.
As validators don't need to have their own stake, it is possible that delegators take all the risk of validators misbehaving.
* When validators get jailed, they no longer receive block rewards (neither from the provider nor from the consumer chains).
This also applies to their delegators.
As a result, delegators might choose to restake their tokens with another validator.
The longer the validators are jailed, the more likely is that delegators will restake.
Thus, by getting jailed, validators risk damaging their reputation.

Misbehaviors don't need to be malicious, e.g., most cases of double signing infractions are due to misconfiguration.
This means that, by opting in on multiple consumer chains, validators and their delegators incur a higher risk.
As a result, validators and their delegators want to be compensated for this additional risk, which makes the current design of ICS expensive.

This ADR addresses the high cost of ICS by allowing consumer chains to customize the slashing and jailing conditions.
Basically, every consumer chain can decide the punishment for every type of infraction.
This enables consumer chains to tradeoff economical security against cost.

## Decision

To reduce the cost of ICS, consumer chains will be able to customize the slashing and jailing for every type of infraction.
As a result, consumer chains can decide on the amount of economic security they want and validators (and their delegators) can decide on the amount of additional risk they want to incur.

For every consumer chain, we introduce the following slashing and jailing parameters:
```proto
message InfractionParameters {
SlashJailParameters double_sign = 1;
SlashJailParameters downtime = 2;
}
message SlashJailParameters {
bytes slash_fraction = 1 [
(cosmos_proto.scalar) = "cosmos.Dec",
(gogoproto.customtype) = "cosmossdk.io/math.LegacyDec",
(gogoproto.nullable) = false,
(amino.dont_omitempty) = true
];
// use time.Unix(253402300799, 0) for permanent jailing
google.protobuf.Duration jail_duration = 2;
}
```
Currently, we consider only two infraction types -- double signing and downtime.

By default, every consumer chain will have the following slashing and jailing parameters:
```go
double_sign.slash_fraction: 0.05 // same as on the provider
double_sign.jail_duration: time.Unix(253402300799, 0) // permanent jailing, same as on the provider
downtime.slash_fraction: 0 // no slashing for downtime on the consumer
downtime.jail_duration: 600s // same as on the provider
```
These parameters can be updated by the consumer chain owner at any given time (via `MsgCreateConsumer` or `MsgUpdateConsumer`).
However, the changes will come into effect after a period equal to the staking module's unbonding period elapses.
This will allow validators that don't agree with the changes to opt out and not be affected by them.
Also, to avoid malicious chains attacking the provider validator set, these params will be bounded by the values on the provider chain:
```go
double_sign.slash_fraction <= 0.05 // 5%
downtime.slash_fraction <= 0.0001 // 0.1%
downtime.jail_duration <= 600s // 10 minutes
```

Although consumer chains can set any values to these parameters (within the allowed bounds), we recommend the following settings, depending on the type of consumer chain.

* **Proof-of-Stake (PoS) Consumer Chains.** These are chains that have the full economical security of the provider validators that opted in. This means that all slashing and jailing parameters are the same as on the provider.

```go
double_sign.slash_fraction: 0.05
double_sign.jail_duration: time.Unix(253402300799, 0)
downtime.slash_fraction: 0.0001
downtime.jail_duration: 600s
```

* **Proof-of-Reputation (PoR) Consumer Chains.**

```go
double_sign.slash_fraction: 0 // no slashing
double_sign.jail_duration: time.Unix(253402300799, 0)
downtime.slash_fraction: 0 // no slashing
downtime.jail_duration: 600s
```

This means that when validators that opt in misbehave on PoR consumer chains, their stake on the provider is not being slashed, instead they are just jailed on the provider.
As a result, delegators incur (almost) no risk if their validators opt in on multiple PoR consumer chains.
If their validators are jailed, then the delegators can redelegate to other validators.
Note though that delegators cannot redelegate multiple times, which means that if the new validators also get permanently jailed, the delegators need to wait for the unbonding period to elapse.
* **Testnet Consumer Chains.**

```go
double_sign.slash_fraction: 0 // no slashing
double_sign.jail_duration: 0 // no jailing
downtime.slash_fraction: 0 // no slashing
downtime.jail_duration: 0 // no jailing
```

This means that validators are not punished for infractions on consumer chains.
This setting is ideal for testing consumer chains before going in production, as neither validators nor their delegators incur any risk from the validators opting in on these consumer chains.

This means that both PoR and testnet consumer chains need only to cover the operational costs of the validators that opt in.
For example, if we take `$600` as the cost of running a validator node, a budget of `$3000` will be sufficient to cover the cost of four validators running such a consumer chain and have `$150` profit per validator as incentive.
In practice, this can be implemented via the per-consumer-chain commission rate that allows validators to have different commission rates on different consumer chains.

### Implementation

The implementation of this feature involves the following steps:

* Add the `InfractionParameters` to `MsgCreateConsumer`.
* On slashing events (for either downtime or double signing infractions), use the corresponding `slash_fraction` set by the consumer chain.
* On jailing events (for either downtime or double signing infractions), use the corresponding `jail_duration` set by the consumer chain.
* Cryptographic equivocation evidence received for PoR chains results in the misbehaving validators only being tombstoned and not slashed.
* (Optional) Add the `InfractionParameters` to `MsgUpdateConsumer`, i.e., allow consumer chains to update the slashing and jailing parameters, but the changes will come into effect after a period equal to the staking module's unbonding period elapses to allow for validators to opt out.
## Consequences
### Positive
* Reduce the cost of ICS by removing the risk of slashing delegators.
### Negative
* Reduce the economical security of consumer chains with weaker slashing conditions.
#### Economic Security Model without Slashing
The economic security model of most Cosmos chains relies on the following properties:
* validators are not anonymous, which means that they could be legally liable if they are malicious;
* the delegated PoS mechanism creates a reputation-based network of validators;
* most validators have most of their stake coming from delegations (i.e., nothing at stake, besides reputation);
* it is relatively difficult to enter the active validator set and even more so to climb the voting power ladder.
These properties enable us to make the following assumption:
* Being permanently removed from the provider validator set is strong enough of a deterrent to misbehaving on consumer chains.
The additional economical security a consumer gets from slashing is limited:
Since most of the stake is delegated, slashing punishes delegators more than validators.
One benefit of slashing is that it acts as a deterrent for someone buying a large amount of staking tokens in order to attack a consumer chain.
For example, an attacker could get `$15,000,000` worth of ATOM, which would give them around `1%` voting power on the Cosmos Hub (at the time of this writing).
On a consumer chain, this voting power could be amplified depending on the other validators that opt in.
However, by having the right [power shaping](https://cosmos.github.io/interchain-security/features/power-shaping) settings, the voting power of validators can be capped.
This means that even if the attacker manages to double sign without getting slashed, as long as they don't have 1/3+ of the voting power, they cannot benefit from the attack.
Moreover, the attacker might lose due to other factors, such as [token toxicity](https://forum.cosmos.network/t/enabling-opt-in-and-mesh-security-with-fraud-votes/10901).

### Neutral

NA

## References


0 comments on commit da02ef3

Please sign in to comment.