Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REP-16: Staking Rewards Taxation Adjustment #16

Merged
merged 3 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ REP stands for RSS3 Evolution Proposal, a detailed documentation proposed by the

This repository tracks all REPs proposed by the RSS3 Community.

| REP Number | Title | Proposer(s) | Type | Status |
| -------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------ |
| [REP-1](./REPs/REP-1.md) | Purpose and Guidelines | <[email protected]> | Process | Living |
| REP Number | Title | Proposer(s) | Type | Status |
| -------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | --------- |
| [REP-1](./REPs/REP-1.md) | Purpose and Guidelines | <[email protected]> | Process | Living |
| [REP-11](./REPs/REP-11.md) | Protocol Upgrade | [BruceXC](mailto:[email protected]), [HenryQW](mailto:[email protected]), [KallyDev](mailto:[email protected]), [Nya Candy](mailto:[email protected]), [polebug](mailto:[email protected]), [pseudoyu](mailto:[email protected]), [Thomas](mailto:[email protected]) | Protocol | Candidate |
| [REP-16](./REPs/REP-16.md) | Purpose and Guidelines | [Albert](mailto:[email protected]), [HenryQW](mailto:[email protected]) | Core | Draft |

## License

Expand Down
80 changes: 80 additions & 0 deletions REPs/REP-16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
```
REP: REP-16
Title: Staking Rewards Taxation Adjustment
Status: Draft
Type: Core
Created: 21 Mar 2024
Author(s): Albert <[email protected]>, HenryQW <[email protected]>
Description: This REP describes the adjustment of Staking Rewards taxation formula.
Discussions: <https://forum.rss3.io/t/rep-pending-adjusting-staking-rewards-taxation/128>
```

# REP-16: Staking Rewards Taxation Adjustment

## Table of Contents

- [Abstract](#abstract)
- [Motivation](#motivation)
- [Specification](#specification)
- [Rationale](#rationale)

## Abstract

This REP proposes to adjust the taxation of Staking Rewards.
The REP will update the Whitepaper first, and then the taxation will be adjusted on the VSL accordingly.

## Motivation

The proposed adjustment will simplify the taxation formula, making the computation more efficient and less error-prone.

## Specification

Current formula as [stated in the Whitepaper](https://github.com/RSS3-Network/Whitepaper/blob/d8a86712cad0c88846c659577e0848b422b90f14/current/sections/tokenomics/network_rewards.tex#L77-L83):

$$
T_{N,\epsilon} = \min(D_{N,\epsilon} * c_{\epsilon}, (R_{S|N,\epsilon} + R_{O|N,\epsilon}) * T_{N,\epsilon})
$$

Current [description of the formula](https://github.com/RSS3-Network/Whitepaper/blob/d8a86712cad0c88846c659577e0848b422b90f14/current/sections/tokenomics/network_rewards.tex#L75):

The amount of tax collectible is capped at a maximum of $c$
times the amount of the current deposit, where $c$ is set by the
Network.

Proposed new taxation formula:

$$
T_{N,\epsilon} = \min(P_{O|N,\epsilon} * c_{\epsilon}, (R_{S|N,\epsilon} + R_{O|N,\epsilon}) * T_{N,\epsilon})
$$

Proposed new description of the formula:

The amount of tax collectible is capped at a maximum of $c$
times the amount of the current $P_o$, where $c$ is set by the
Network.

Reflecting the changes in the Whitepaper, the VSL will be updated accordingly.
The tokenomics will then be adjusted to reflect the new formula:

Current tokenomics intepretation:

$$
D_{N} * 25 \geq T_{N,\epsilon} \quad \text{where} \quad D_{N} \geq 10,000
$$

Proposed new tokenomics intepretation:

$$
P_{o} * 25 \geq T_{N,\epsilon} \quad \text{where} \quad D_{N} \geq 10,000
$$

## Rationale

The Core Developers have derived fresh insights from the Mainnet Alpha, revealing that the existing formula is overly complex and inefficient for computation.
This complexity not only elevates the risk of implementation errors but also confuses Network participants.

The proposed adjustment will simplify the formula, without compromising the original design principles and the economic incentives of the Network.

The proposed adjustment also slightly lowers the entry barrier for new Node Operators and simplifies the management of the Node.

The proposed adjustment does not introduce any new development requirements, and the implementation is expected to be straightforward.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"tablePipeAlign": true
}
],
"remark-math",
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
Expand Down Expand Up @@ -50,6 +51,7 @@
"remark-lint-list-item-indent": "^3.1.2",
"remark-lint-no-consecutive-blank-lines": "^4.1.3",
"remark-lint-no-empty-url": "^3.1.2",
"remark-math": "^6.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"remark-toc": "^9.0.0",
Expand Down
63 changes: 63 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading