Skip to main content

Rewards & Penalties

Overview

You are responsible for your node, including ensuring uptime, correct behavior, and monitoring. If your node is not responding properly, or is displaying dishonest behavior (like running keys on 2 nodes at the same time), you will be penalized.

Proof-of-Stake

  • Gnosis (and Ethereum) utilize a Proof-of-Stake cryptoeconomic incentive system to secure the network and disincentivize malicious behavior by nodes.
  • Nodes that play an active role in validating the network are required to stake 32 mGNO (i.e. 1 GNO) per validator. They receive periodic rewards for each epoch that they stay online and performing their duties.
  • However, if they engage in malicious or disruptive activity on the network, their stake gets "slashed", and they can also be permanently removed from the validator pool.
  • Nodes that go offline also attract a penalty for "inactivity leaks", although these are significantly less harsh if the node is offline only for a short period of time.

Rewards

Current Yield

Rewards Calculation:

  • Block Proposals: The reward for proposing a block consists of a base reward and an additional reward proportional to the validator's index. While the base reward remains constant, the additional reward decreases as the validator's index increases, ensuring equal block proposal opportunities for all validators.

Example: A validator with index 10 proposes a block. The base reward for proposing a block is 100, and the additional reward is 10 / 100 = 0.1. The total reward for the validator is 100 + 0.1 = 100.1.

  • Block Attestations: The reward for attesting to a block features a base reward that diminishes over time. Initially set at 100%, the base reward decreases by 1% for every 1000 slots, maintaining the attractiveness of block proposal rewards even as the number of validators grows.

Example: A validator with index 100 attests to a block. The base reward for attesting to a block is 100, and the additional reward is 99%. The total reward for the validator is 100 * 0.99 = 99.

Understanding Gas Consumption and Transaction Fees

  • The gas consumption for processing a transaction depends on its complexity. For instance, an ETH transfer between two accounts requires less gas than deploying a new smart contract.

  • Transaction fees are computed by multiplying the base fee with the gas price. The Ethereum network determines the base fee, which fluctuates according to block space demand. Users set the gas price, which can vary.

For example, if the base fee is 10 gwei and the gas price is 100 gwei, then the fee for a transaction that uses 100,000 gas would be 1,000,000 gwei.

Rewards Curve

info

Gnosis' rewards curve was proposed in Nov 2021 in a Gnosis Forum post.

  • The minimum initial stake to run a validator is 1 GNO .
  • The reward rate drops with more active validators
GNO staked% of GNO validatingreward for validatorsTotal GNO rewardsOverall inflation p.a.
40960.23%83.85%3434.4960.19%
500002.78%23.01%115050.64%
1000005.56%16.65%166500.93%
20000011.11%11.89%237801.32%
40000022.22%8.45%338001.88%
80000044.44%5.99%479202.66%
1800000100.00%4.00%720004.00%

Claiming Rewards

You can claim your Gnosis Chain rewards on the Deposit website or by manually calling the claimWithdrawal(address) or claimWithdrawals(addresses) method in the Deposit contract.

faucet

You can learn more about Deposit contracts in the Deposit contracts doc.

Penalties

Gnosis follows Ethereum's Proof-of-Stake penalties.

"Offline" Penalties

The most common "penalty" validators encounter is if they are offline, or are late in performing their duties of attesting or proposing blocks.

  • Generally speaking, the penalties for being offline (or late) are equal to the rewards that a validator would have received if they were online
  • If your validator is online more than 42.5% of the time, you will be earning a positive return
  • Missed, late or incorrect attestations are penalized.
  • There is no penalty for missing the head vote.
  • There is no penalty for failing to propose a block.
  • There is no penalty for missing a sync committee (except the lost rewards).

Inactivity Leak

Gnosis will move into a "inactivity leak" mode, if a large number (i.e. >1/3) of validators are offline at the same time causing the network to not finalize.

  • "Offline" validators receive increasingly large penalties based on their track records
  • This is designed to restore finality by reducing the stake of "offline" validators, who may get ejected from the network if their stake drops below the minimum required (i.e. 16 mGNO or 0.5 GNO)
  • While the initial stake is 1 GNO , a validator is allowed to continue validating even after being penalized so long as the stake is above 16 mGNO.

Slashings

Slashing is the most serious penalty and results in losing a potentially significant amount of stake, and possible ejection of a validator from the network. This is when validators break very specific protocol rules that prevent the network from functioning effectively.

In these cases, 1/32 of a validator's staked GNO is immediately burned, and the validator enters a removal process from the chain.

  • "Double signing" is the most common slashing offence, where a validator proposes and signs two different blocks at the same slot. This often happens when a validator is run in two machines at once (e.g. redundancy).
  • "Double voting" by attesting to two candidates for the same block
  • Attesting to a block that "surrounds" another one (i.e. changing history)

Resources

We recommend the following readings for a more in-depth understanding of validator penalties.